summaryrefslogtreecommitdiffstats
path: root/debian/missing-sources/leaflet.js/layer/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'debian/missing-sources/leaflet.js/layer/index.js')
-rw-r--r--debian/missing-sources/leaflet.js/layer/index.js23
1 files changed, 23 insertions, 0 deletions
diff --git a/debian/missing-sources/leaflet.js/layer/index.js b/debian/missing-sources/leaflet.js/layer/index.js
new file mode 100644
index 0000000..23793ef
--- /dev/null
+++ b/debian/missing-sources/leaflet.js/layer/index.js
@@ -0,0 +1,23 @@
+export {Layer} from './Layer';
+export {LayerGroup, layerGroup} from './LayerGroup';
+export {FeatureGroup, featureGroup} from './FeatureGroup';
+import {GeoJSON, geoJSON, geoJson, geometryToLayer, coordsToLatLng, coordsToLatLngs, latLngToCoords, latLngsToCoords, getFeature, asFeature} from './GeoJSON';
+GeoJSON.geometryToLayer = geometryToLayer;
+GeoJSON.coordsToLatLng = coordsToLatLng;
+GeoJSON.coordsToLatLngs = coordsToLatLngs;
+GeoJSON.latLngToCoords = latLngToCoords;
+GeoJSON.latLngsToCoords = latLngsToCoords;
+GeoJSON.getFeature = getFeature;
+GeoJSON.asFeature = asFeature;
+export {GeoJSON, geoJSON, geoJson};
+
+export {ImageOverlay, imageOverlay} from './ImageOverlay';
+export {VideoOverlay, videoOverlay} from './VideoOverlay';
+
+export {DivOverlay} from './DivOverlay';
+export {Popup, popup} from './Popup';
+export {Tooltip, tooltip} from './Tooltip';
+
+export * from './marker/index';
+export * from './tile/index';
+export * from './vector/index';