summaryrefslogtreecommitdiffstats
path: root/debian/missing-sources/leaflet.js/layer/index.js
blob: 23793efa27741519f3a212de89baec4a8d429c69 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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';