mirror of
https://github.com/grafana/grafana.git
synced 2025-09-23 18:52:33 +08:00
15 lines
318 B
TypeScript
15 lines
318 B
TypeScript
import { cartoLayers } from './carto';
|
|
import { esriLayers } from './esri';
|
|
import { genericLayers } from './generic';
|
|
import { osmLayers } from './osm';
|
|
|
|
/**
|
|
* Registry for layer handlers
|
|
*/
|
|
export const basemapLayers = [
|
|
...osmLayers,
|
|
...cartoLayers,
|
|
...esriLayers, // keep formatting
|
|
...genericLayers,
|
|
];
|