File : leaflet/LeafletImports.js

1
import {
2
    Circle,
3
    CircleMarker,
4
    DivIcon,
5
    LatLng,
6
    LatLngBounds,
7
    LayerGroup,
8
    // eslint-disable-next-line no-shadow
9
    Map,
10
    Marker,
11
    Point,
12
    Polyline,
13
    Rectangle,
14
    TileLayer,
15
    DomEvent,
16
    LineUtil,
17
    Projection,
18
    Util
19
}
20
    from '../../node_modules/leaflet/dist/leaflet-src.esm.js';
21
22
export {
23
    Circle as LeafletCircle,
24
    CircleMarker as LeafletCircleMarker,
25
    DivIcon as LeafletDivIcon,
26
    LatLng as LeafletLatLng,
27
    LatLngBounds as LeafletLatLngBounds,
28
    LayerGroup as LeafletLayerGroup,
29
    Map as LeafletMap,
30
    Marker as LeafletMarker,
31
    Point as LeafletPoint,
32
    Polyline as LeafletPolyline,
33
    Rectangle as LeafletRectangle,
34
    TileLayer as LeafletTileLayer,
35
    DomEvent as LeafletDomEvent,
36
    LineUtil as LeafletLineUtil,
37
    Projection as LeafletProjection,
38
    Util as LeafletUtil
39
};
40