D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
proc
/
self
/
root
/
usr
/
share
/
grafana
/
public
/
app
/
plugins
/
panel
/
geomap
/
layers
/
basemaps
/
Filename :
osm.ts
back
Copy
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];