mirror of
https://github.com/getredash/redash.git
synced 2026-03-23 22:00:10 -04:00
22 lines
400 B
JavaScript
22 lines
400 B
JavaScript
import { registerVisualization } from '@/visualizations';
|
|
|
|
import getOptions from './getOptions';
|
|
import Renderer from './Renderer';
|
|
import Editor from './Editor';
|
|
|
|
export default function init() {
|
|
registerVisualization({
|
|
type: 'MAP',
|
|
name: 'Map (Markers)',
|
|
getOptions,
|
|
Renderer,
|
|
Editor,
|
|
|
|
defaultColumns: 3,
|
|
defaultRows: 8,
|
|
minColumns: 2,
|
|
});
|
|
}
|
|
|
|
init.init = true;
|