mirror of
https://github.com/grafana/grafana.git
synced 2025-02-20 11:48:34 -06:00
* Fixed hover font-weight, option casing, and added simple test dashboard with 3 panels * Update theme colors * Style tweaks to legend * Updated Co-authored-by: Ryan McKinley <ryantxu@gmail.com>
91 lines
2.7 KiB
TypeScript
91 lines
2.7 KiB
TypeScript
import { PanelPlugin } from '@grafana/data';
|
|
import { BaseLayerEditor } from './editor/BaseLayerEditor';
|
|
import { DataLayersEditor } from './editor/DataLayersEditor';
|
|
import { GeomapPanel } from './GeomapPanel';
|
|
import { MapViewEditor } from './editor/MapViewEditor';
|
|
import { defaultView, GeomapPanelOptions } from './types';
|
|
import { mapPanelChangedHandler } from './migrations';
|
|
import { defaultMarkersConfig } from './layers/data/markersLayer';
|
|
import { DEFAULT_BASEMAP_CONFIG } from './layers/registry';
|
|
|
|
export const plugin = new PanelPlugin<GeomapPanelOptions>(GeomapPanel)
|
|
.setNoPadding()
|
|
.setPanelChangeHandler(mapPanelChangedHandler)
|
|
.useFieldConfig()
|
|
.setPanelOptions((builder) => {
|
|
let category = ['Map view'];
|
|
builder.addCustomEditor({
|
|
category,
|
|
id: 'view',
|
|
path: 'view',
|
|
name: 'Initial view', // don't show it
|
|
description: 'This location will show when the panel first loads',
|
|
editor: MapViewEditor,
|
|
defaultValue: defaultView,
|
|
});
|
|
|
|
builder.addBooleanSwitch({
|
|
category,
|
|
path: 'view.shared',
|
|
description: 'Use the same view across multiple panels. Note: this may require a dashboard reload.',
|
|
name: 'Share view',
|
|
defaultValue: defaultView.shared,
|
|
});
|
|
|
|
builder.addCustomEditor({
|
|
category: ['Base layer'],
|
|
id: 'basemap',
|
|
path: 'basemap',
|
|
name: 'Base layer',
|
|
editor: BaseLayerEditor,
|
|
defaultValue: DEFAULT_BASEMAP_CONFIG,
|
|
});
|
|
|
|
builder.addCustomEditor({
|
|
category: ['Data layer'],
|
|
id: 'layers',
|
|
path: 'layers',
|
|
name: 'Data layer',
|
|
editor: DataLayersEditor,
|
|
defaultValue: [defaultMarkersConfig],
|
|
});
|
|
|
|
// The controls section
|
|
category = ['Map controls'];
|
|
builder
|
|
.addBooleanSwitch({
|
|
category,
|
|
path: 'controls.showZoom',
|
|
description: 'show buttons in the upper left',
|
|
name: 'Show zoom control',
|
|
defaultValue: true,
|
|
})
|
|
.addBooleanSwitch({
|
|
category,
|
|
path: 'controls.mouseWheelZoom',
|
|
name: 'Mouse wheel zoom',
|
|
defaultValue: true,
|
|
})
|
|
.addBooleanSwitch({
|
|
category,
|
|
path: 'controls.showAttribution',
|
|
name: 'Show attribution',
|
|
description: 'Show the map source attribution info in the lower right',
|
|
defaultValue: true,
|
|
})
|
|
.addBooleanSwitch({
|
|
category,
|
|
path: 'controls.showScale',
|
|
name: 'Show scale',
|
|
description: 'Indicate map scale',
|
|
defaultValue: false,
|
|
})
|
|
.addBooleanSwitch({
|
|
category,
|
|
path: 'controls.showDebug',
|
|
name: 'Show debug',
|
|
description: 'show map info',
|
|
defaultValue: false,
|
|
});
|
|
});
|