You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
330 B
14 lines
330 B
import { markersLayer } from './markersLayer';
|
|
import { geojsonLayer } from './geojsonLayer';
|
|
import { heatmapLayer } from './heatMap';
|
|
import { lastPointTracker } from './lastPointTracker';
|
|
|
|
/**
|
|
* Registry for layer handlers
|
|
*/
|
|
export const dataLayers = [
|
|
markersLayer,
|
|
heatmapLayer,
|
|
lastPointTracker,
|
|
geojsonLayer,
|
|
];
|
|
|