mirror of
https://github.com/grafana/grafana.git
synced 2025-02-20 11:48:34 -06:00
27 lines
696 B
TypeScript
27 lines
696 B
TypeScript
import Map from 'ol/Map';
|
|
import TileLayer from 'ol/layer/Tile';
|
|
import OSM from 'ol/source/OSM';
|
|
|
|
import { MapLayerRegistryItem, MapLayerOptions, EventBus } from '@grafana/data';
|
|
|
|
export const standard: MapLayerRegistryItem = {
|
|
id: 'osm-standard',
|
|
name: 'Open Street Map',
|
|
description: 'Add map from a collaborative free geographic world database',
|
|
isBaseMap: true,
|
|
|
|
/**
|
|
* Function that configures transformation and returns a transformer
|
|
* @param options
|
|
*/
|
|
create: async (map: Map, options: MapLayerOptions, eventBus: EventBus) => ({
|
|
init: () => {
|
|
return new TileLayer({
|
|
source: new OSM(),
|
|
});
|
|
},
|
|
}),
|
|
};
|
|
|
|
export const osmLayers = [standard];
|