From 125c16b6f69c8de6c094edb73c0995b867f3e2dd Mon Sep 17 00:00:00 2001 From: alma Date: Sun, 4 May 2025 17:02:25 +0200 Subject: [PATCH] observatory --- components/observatory/observatory-map.tsx | 395 +- node_modules/.package-lock.json | 46 + node_modules/@react-leaflet/core/LICENSE.md | 33 + node_modules/@react-leaflet/core/README.md | 3 + .../@react-leaflet/core/lib/attribution.d.ts | 2 + .../@react-leaflet/core/lib/attribution.js | 18 + .../@react-leaflet/core/lib/circle.d.ts | 12 + .../@react-leaflet/core/lib/circle.js | 8 + .../@react-leaflet/core/lib/component.d.ts | 11 + .../@react-leaflet/core/lib/component.js | 41 + .../@react-leaflet/core/lib/context.d.ts | 34 + .../@react-leaflet/core/lib/context.js | 23 + .../@react-leaflet/core/lib/control.d.ts | 3 + .../@react-leaflet/core/lib/control.js | 30 + .../@react-leaflet/core/lib/div-overlay.d.ts | 9 + .../@react-leaflet/core/lib/div-overlay.js | 14 + node_modules/@react-leaflet/core/lib/dom.d.ts | 3 + node_modules/@react-leaflet/core/lib/dom.js | 24 + .../@react-leaflet/core/lib/element.d.ts | 10 + .../@react-leaflet/core/lib/element.js | 34 + .../@react-leaflet/core/lib/events.d.ts | 6 + .../@react-leaflet/core/lib/events.js | 19 + .../@react-leaflet/core/lib/generic.d.ts | 18 + .../@react-leaflet/core/lib/generic.js | 34 + .../@react-leaflet/core/lib/grid-layer.d.ts | 2 + .../@react-leaflet/core/lib/grid-layer.js | 9 + .../@react-leaflet/core/lib/index.d.ts | 15 + node_modules/@react-leaflet/core/lib/index.js | 15 + .../@react-leaflet/core/lib/layer.d.ts | 10 + node_modules/@react-leaflet/core/lib/layer.js | 28 + .../core/lib/media-overlay.d.ts | 6 + .../@react-leaflet/core/lib/media-overlay.js | 13 + .../@react-leaflet/core/lib/pane.d.ts | 3 + node_modules/@react-leaflet/core/lib/pane.js | 7 + .../@react-leaflet/core/lib/path.d.ts | 8 + node_modules/@react-leaflet/core/lib/path.js | 28 + node_modules/@react-leaflet/core/package.json | 66 + node_modules/@types/geojson/LICENSE | 21 + node_modules/@types/geojson/README.md | 15 + node_modules/@types/geojson/index.d.ts | 202 + node_modules/@types/geojson/package.json | 46 + node_modules/@types/leaflet/LICENSE | 21 + node_modules/@types/leaflet/README.md | 15 + node_modules/@types/leaflet/index.d.ts | 3156 ++++ node_modules/@types/leaflet/package.json | 63 + node_modules/leaflet/CHANGELOG.md | 2191 +++ node_modules/leaflet/LICENSE | 26 + node_modules/leaflet/README.md | 55 + .../leaflet/dist/images/layers-2x.png | Bin 0 -> 1259 bytes node_modules/leaflet/dist/images/layers.png | Bin 0 -> 696 bytes .../leaflet/dist/images/marker-icon-2x.png | Bin 0 -> 2464 bytes .../leaflet/dist/images/marker-icon.png | Bin 0 -> 1466 bytes .../leaflet/dist/images/marker-shadow.png | Bin 0 -> 618 bytes node_modules/leaflet/dist/leaflet-src.esm.js | 14419 +++++++++++++++ .../leaflet/dist/leaflet-src.esm.js.map | 1 + node_modules/leaflet/dist/leaflet-src.js | 14512 ++++++++++++++++ node_modules/leaflet/dist/leaflet-src.js.map | 1 + node_modules/leaflet/dist/leaflet.css | 661 + node_modules/leaflet/dist/leaflet.js | 6 + node_modules/leaflet/dist/leaflet.js.map | 1 + node_modules/leaflet/package.json | 149 + node_modules/leaflet/src/Leaflet.js | 24 + .../src/control/Control.Attribution.js | 148 + .../leaflet/src/control/Control.Layers.js | 443 + .../leaflet/src/control/Control.Scale.js | 132 + .../leaflet/src/control/Control.Zoom.js | 146 + node_modules/leaflet/src/control/Control.js | 174 + node_modules/leaflet/src/control/index.js | 17 + node_modules/leaflet/src/core/Browser.js | 220 + node_modules/leaflet/src/core/Class.js | 135 + node_modules/leaflet/src/core/Class.leafdoc | 197 + node_modules/leaflet/src/core/Events.js | 344 + node_modules/leaflet/src/core/Events.leafdoc | 143 + node_modules/leaflet/src/core/Handler.js | 57 + node_modules/leaflet/src/core/Util.js | 241 + node_modules/leaflet/src/core/index.js | 15 + .../leaflet/src/dom/DomEvent.DoubleTap.js | 91 + .../leaflet/src/dom/DomEvent.Pointer.js | 97 + node_modules/leaflet/src/dom/DomEvent.js | 315 + node_modules/leaflet/src/dom/DomUtil.js | 349 + node_modules/leaflet/src/dom/Draggable.js | 220 + node_modules/leaflet/src/dom/PosAnimation.js | 113 + node_modules/leaflet/src/dom/index.js | 9 + node_modules/leaflet/src/geo/LatLng.js | 137 + node_modules/leaflet/src/geo/LatLngBounds.js | 251 + .../leaflet/src/geo/crs/CRS.EPSG3395.js | 20 + .../leaflet/src/geo/crs/CRS.EPSG3857.js | 27 + .../leaflet/src/geo/crs/CRS.EPSG4326.js | 23 + node_modules/leaflet/src/geo/crs/CRS.Earth.js | 33 + .../leaflet/src/geo/crs/CRS.Simple.js | 36 + node_modules/leaflet/src/geo/crs/CRS.js | 139 + node_modules/leaflet/src/geo/crs/index.js | 15 + node_modules/leaflet/src/geo/index.js | 7 + .../src/geo/projection/Projection.LonLat.js | 28 + .../src/geo/projection/Projection.Mercator.js | 49 + .../Projection.SphericalMercator.js | 44 + .../leaflet/src/geo/projection/index.js | 26 + node_modules/leaflet/src/geometry/Bounds.js | 219 + node_modules/leaflet/src/geometry/LineUtil.js | 306 + node_modules/leaflet/src/geometry/Point.js | 222 + node_modules/leaflet/src/geometry/PolyUtil.js | 129 + .../leaflet/src/geometry/Transformation.js | 79 + node_modules/leaflet/src/geometry/index.js | 8 + node_modules/leaflet/src/images/layers.svg | 1 + node_modules/leaflet/src/images/logo.svg | 1 + node_modules/leaflet/src/images/marker.svg | 1 + node_modules/leaflet/src/layer/DivOverlay.js | 348 + .../leaflet/src/layer/FeatureGroup.js | 94 + node_modules/leaflet/src/layer/GeoJSON.js | 452 + .../leaflet/src/layer/ImageOverlay.js | 270 + .../src/layer/Layer.Interactive.leafdoc | 39 + node_modules/leaflet/src/layer/Layer.js | 275 + node_modules/leaflet/src/layer/LayerGroup.js | 159 + node_modules/leaflet/src/layer/Popup.js | 506 + node_modules/leaflet/src/layer/SVGOverlay.js | 50 + node_modules/leaflet/src/layer/Tooltip.js | 444 + .../leaflet/src/layer/VideoOverlay.js | 106 + node_modules/leaflet/src/layer/index.js | 24 + .../leaflet/src/layer/marker/DivIcon.js | 74 + .../leaflet/src/layer/marker/Icon.Default.js | 66 + node_modules/leaflet/src/layer/marker/Icon.js | 165 + .../leaflet/src/layer/marker/Marker.Drag.js | 161 + .../leaflet/src/layer/marker/Marker.js | 419 + .../leaflet/src/layer/marker/index.js | 8 + .../leaflet/src/layer/tile/GridLayer.js | 923 + .../leaflet/src/layer/tile/TileLayer.WMS.js | 137 + .../leaflet/src/layer/tile/TileLayer.js | 289 + node_modules/leaflet/src/layer/tile/index.js | 6 + .../leaflet/src/layer/vector/Canvas.js | 492 + .../leaflet/src/layer/vector/Circle.js | 113 + .../leaflet/src/layer/vector/CircleMarker.js | 109 + node_modules/leaflet/src/layer/vector/Path.js | 148 + .../leaflet/src/layer/vector/Polygon.js | 159 + .../leaflet/src/layer/vector/Polyline.js | 307 + .../leaflet/src/layer/vector/Rectangle.js | 57 + .../src/layer/vector/Renderer.getRenderer.js | 45 + .../leaflet/src/layer/vector/Renderer.js | 133 + .../leaflet/src/layer/vector/SVG.Util.js | 39 + .../leaflet/src/layer/vector/SVG.VML.js | 144 + node_modules/leaflet/src/layer/vector/SVG.js | 207 + .../leaflet/src/layer/vector/index.js | 14 + node_modules/leaflet/src/map/Map.js | 1751 ++ .../leaflet/src/map/Map.methodOptions.leafdoc | 112 + .../leaflet/src/map/handler/Map.BoxZoom.js | 152 + .../src/map/handler/Map.DoubleClickZoom.js | 55 + .../leaflet/src/map/handler/Map.Drag.js | 235 + .../leaflet/src/map/handler/Map.Keyboard.js | 183 + .../src/map/handler/Map.ScrollWheelZoom.js | 91 + .../leaflet/src/map/handler/Map.TapHold.js | 102 + .../leaflet/src/map/handler/Map.TouchZoom.js | 130 + node_modules/leaflet/src/map/index.js | 17 + node_modules/react-leaflet/LICENSE.md | 43 + node_modules/react-leaflet/README.md | 3 + .../react-leaflet/lib/AttributionControl.d.ts | 4 + .../react-leaflet/lib/AttributionControl.js | 5 + node_modules/react-leaflet/lib/Circle.d.ts | 5 + node_modules/react-leaflet/lib/Circle.js | 8 + .../react-leaflet/lib/CircleMarker.d.ts | 5 + .../react-leaflet/lib/CircleMarker.js | 8 + .../react-leaflet/lib/FeatureGroup.d.ts | 7 + .../react-leaflet/lib/FeatureGroup.js | 9 + node_modules/react-leaflet/lib/GeoJSON.d.ts | 9 + node_modules/react-leaflet/lib/GeoJSON.js | 16 + .../react-leaflet/lib/ImageOverlay.d.ts | 8 + .../react-leaflet/lib/ImageOverlay.js | 17 + .../react-leaflet/lib/LayerGroup.d.ts | 7 + node_modules/react-leaflet/lib/LayerGroup.js | 8 + .../react-leaflet/lib/LayersControl.d.ts | 48 + .../react-leaflet/lib/LayersControl.js | 77 + .../react-leaflet/lib/MapContainer.d.ts | 13 + .../react-leaflet/lib/MapContainer.js | 57 + node_modules/react-leaflet/lib/Marker.d.ts | 8 + node_modules/react-leaflet/lib/Marker.js | 28 + node_modules/react-leaflet/lib/Pane.d.ts | 9 + node_modules/react-leaflet/lib/Pane.js | 72 + node_modules/react-leaflet/lib/Polygon.d.ts | 8 + node_modules/react-leaflet/lib/Polygon.js | 12 + node_modules/react-leaflet/lib/Polyline.d.ts | 8 + node_modules/react-leaflet/lib/Polyline.js | 12 + node_modules/react-leaflet/lib/Popup.d.ts | 8 + node_modules/react-leaflet/lib/Popup.js | 49 + node_modules/react-leaflet/lib/Rectangle.d.ts | 8 + node_modules/react-leaflet/lib/Rectangle.js | 12 + .../react-leaflet/lib/SVGOverlay.d.ts | 39 + node_modules/react-leaflet/lib/SVGOverlay.js | 23 + .../react-leaflet/lib/ScaleControl.d.ts | 4 + .../react-leaflet/lib/ScaleControl.js | 5 + node_modules/react-leaflet/lib/TileLayer.d.ts | 7 + node_modules/react-leaflet/lib/TileLayer.js | 12 + node_modules/react-leaflet/lib/Tooltip.d.ts | 8 + node_modules/react-leaflet/lib/Tooltip.js | 49 + .../react-leaflet/lib/VideoOverlay.d.ts | 9 + .../react-leaflet/lib/VideoOverlay.js | 24 + .../react-leaflet/lib/WMSTileLayer.d.ts | 8 + .../react-leaflet/lib/WMSTileLayer.js | 14 + .../react-leaflet/lib/ZoomControl.d.ts | 4 + node_modules/react-leaflet/lib/ZoomControl.js | 5 + node_modules/react-leaflet/lib/hooks.d.ts | 4 + node_modules/react-leaflet/lib/hooks.js | 34 + node_modules/react-leaflet/lib/index.d.ts | 23 + node_modules/react-leaflet/lib/index.js | 23 + node_modules/react-leaflet/package.json | 72 + package-lock.json | 49 + package.json | 3 + yarn.lock | 33 +- 205 files changed, 52690 insertions(+), 195 deletions(-) create mode 100644 node_modules/@react-leaflet/core/LICENSE.md create mode 100644 node_modules/@react-leaflet/core/README.md create mode 100644 node_modules/@react-leaflet/core/lib/attribution.d.ts create mode 100644 node_modules/@react-leaflet/core/lib/attribution.js create mode 100644 node_modules/@react-leaflet/core/lib/circle.d.ts create mode 100644 node_modules/@react-leaflet/core/lib/circle.js create mode 100644 node_modules/@react-leaflet/core/lib/component.d.ts create mode 100644 node_modules/@react-leaflet/core/lib/component.js create mode 100644 node_modules/@react-leaflet/core/lib/context.d.ts create mode 100644 node_modules/@react-leaflet/core/lib/context.js create mode 100644 node_modules/@react-leaflet/core/lib/control.d.ts create mode 100644 node_modules/@react-leaflet/core/lib/control.js create mode 100644 node_modules/@react-leaflet/core/lib/div-overlay.d.ts create mode 100644 node_modules/@react-leaflet/core/lib/div-overlay.js create mode 100644 node_modules/@react-leaflet/core/lib/dom.d.ts create mode 100644 node_modules/@react-leaflet/core/lib/dom.js create mode 100644 node_modules/@react-leaflet/core/lib/element.d.ts create mode 100644 node_modules/@react-leaflet/core/lib/element.js create mode 100644 node_modules/@react-leaflet/core/lib/events.d.ts create mode 100644 node_modules/@react-leaflet/core/lib/events.js create mode 100644 node_modules/@react-leaflet/core/lib/generic.d.ts create mode 100644 node_modules/@react-leaflet/core/lib/generic.js create mode 100644 node_modules/@react-leaflet/core/lib/grid-layer.d.ts create mode 100644 node_modules/@react-leaflet/core/lib/grid-layer.js create mode 100644 node_modules/@react-leaflet/core/lib/index.d.ts create mode 100644 node_modules/@react-leaflet/core/lib/index.js create mode 100644 node_modules/@react-leaflet/core/lib/layer.d.ts create mode 100644 node_modules/@react-leaflet/core/lib/layer.js create mode 100644 node_modules/@react-leaflet/core/lib/media-overlay.d.ts create mode 100644 node_modules/@react-leaflet/core/lib/media-overlay.js create mode 100644 node_modules/@react-leaflet/core/lib/pane.d.ts create mode 100644 node_modules/@react-leaflet/core/lib/pane.js create mode 100644 node_modules/@react-leaflet/core/lib/path.d.ts create mode 100644 node_modules/@react-leaflet/core/lib/path.js create mode 100644 node_modules/@react-leaflet/core/package.json create mode 100644 node_modules/@types/geojson/LICENSE create mode 100644 node_modules/@types/geojson/README.md create mode 100644 node_modules/@types/geojson/index.d.ts create mode 100644 node_modules/@types/geojson/package.json create mode 100644 node_modules/@types/leaflet/LICENSE create mode 100644 node_modules/@types/leaflet/README.md create mode 100644 node_modules/@types/leaflet/index.d.ts create mode 100644 node_modules/@types/leaflet/package.json create mode 100644 node_modules/leaflet/CHANGELOG.md create mode 100644 node_modules/leaflet/LICENSE create mode 100644 node_modules/leaflet/README.md create mode 100644 node_modules/leaflet/dist/images/layers-2x.png create mode 100644 node_modules/leaflet/dist/images/layers.png create mode 100644 node_modules/leaflet/dist/images/marker-icon-2x.png create mode 100644 node_modules/leaflet/dist/images/marker-icon.png create mode 100644 node_modules/leaflet/dist/images/marker-shadow.png create mode 100644 node_modules/leaflet/dist/leaflet-src.esm.js create mode 100644 node_modules/leaflet/dist/leaflet-src.esm.js.map create mode 100644 node_modules/leaflet/dist/leaflet-src.js create mode 100644 node_modules/leaflet/dist/leaflet-src.js.map create mode 100644 node_modules/leaflet/dist/leaflet.css create mode 100644 node_modules/leaflet/dist/leaflet.js create mode 100644 node_modules/leaflet/dist/leaflet.js.map create mode 100644 node_modules/leaflet/package.json create mode 100644 node_modules/leaflet/src/Leaflet.js create mode 100644 node_modules/leaflet/src/control/Control.Attribution.js create mode 100644 node_modules/leaflet/src/control/Control.Layers.js create mode 100644 node_modules/leaflet/src/control/Control.Scale.js create mode 100644 node_modules/leaflet/src/control/Control.Zoom.js create mode 100644 node_modules/leaflet/src/control/Control.js create mode 100644 node_modules/leaflet/src/control/index.js create mode 100644 node_modules/leaflet/src/core/Browser.js create mode 100644 node_modules/leaflet/src/core/Class.js create mode 100644 node_modules/leaflet/src/core/Class.leafdoc create mode 100644 node_modules/leaflet/src/core/Events.js create mode 100644 node_modules/leaflet/src/core/Events.leafdoc create mode 100644 node_modules/leaflet/src/core/Handler.js create mode 100644 node_modules/leaflet/src/core/Util.js create mode 100644 node_modules/leaflet/src/core/index.js create mode 100644 node_modules/leaflet/src/dom/DomEvent.DoubleTap.js create mode 100644 node_modules/leaflet/src/dom/DomEvent.Pointer.js create mode 100644 node_modules/leaflet/src/dom/DomEvent.js create mode 100644 node_modules/leaflet/src/dom/DomUtil.js create mode 100644 node_modules/leaflet/src/dom/Draggable.js create mode 100644 node_modules/leaflet/src/dom/PosAnimation.js create mode 100644 node_modules/leaflet/src/dom/index.js create mode 100644 node_modules/leaflet/src/geo/LatLng.js create mode 100644 node_modules/leaflet/src/geo/LatLngBounds.js create mode 100644 node_modules/leaflet/src/geo/crs/CRS.EPSG3395.js create mode 100644 node_modules/leaflet/src/geo/crs/CRS.EPSG3857.js create mode 100644 node_modules/leaflet/src/geo/crs/CRS.EPSG4326.js create mode 100755 node_modules/leaflet/src/geo/crs/CRS.Earth.js create mode 100644 node_modules/leaflet/src/geo/crs/CRS.Simple.js create mode 100644 node_modules/leaflet/src/geo/crs/CRS.js create mode 100644 node_modules/leaflet/src/geo/crs/index.js create mode 100644 node_modules/leaflet/src/geo/index.js create mode 100644 node_modules/leaflet/src/geo/projection/Projection.LonLat.js create mode 100644 node_modules/leaflet/src/geo/projection/Projection.Mercator.js create mode 100644 node_modules/leaflet/src/geo/projection/Projection.SphericalMercator.js create mode 100644 node_modules/leaflet/src/geo/projection/index.js create mode 100644 node_modules/leaflet/src/geometry/Bounds.js create mode 100644 node_modules/leaflet/src/geometry/LineUtil.js create mode 100644 node_modules/leaflet/src/geometry/Point.js create mode 100644 node_modules/leaflet/src/geometry/PolyUtil.js create mode 100644 node_modules/leaflet/src/geometry/Transformation.js create mode 100644 node_modules/leaflet/src/geometry/index.js create mode 100644 node_modules/leaflet/src/images/layers.svg create mode 100644 node_modules/leaflet/src/images/logo.svg create mode 100644 node_modules/leaflet/src/images/marker.svg create mode 100644 node_modules/leaflet/src/layer/DivOverlay.js create mode 100644 node_modules/leaflet/src/layer/FeatureGroup.js create mode 100644 node_modules/leaflet/src/layer/GeoJSON.js create mode 100644 node_modules/leaflet/src/layer/ImageOverlay.js create mode 100644 node_modules/leaflet/src/layer/Layer.Interactive.leafdoc create mode 100644 node_modules/leaflet/src/layer/Layer.js create mode 100644 node_modules/leaflet/src/layer/LayerGroup.js create mode 100644 node_modules/leaflet/src/layer/Popup.js create mode 100644 node_modules/leaflet/src/layer/SVGOverlay.js create mode 100644 node_modules/leaflet/src/layer/Tooltip.js create mode 100644 node_modules/leaflet/src/layer/VideoOverlay.js create mode 100644 node_modules/leaflet/src/layer/index.js create mode 100644 node_modules/leaflet/src/layer/marker/DivIcon.js create mode 100644 node_modules/leaflet/src/layer/marker/Icon.Default.js create mode 100644 node_modules/leaflet/src/layer/marker/Icon.js create mode 100644 node_modules/leaflet/src/layer/marker/Marker.Drag.js create mode 100644 node_modules/leaflet/src/layer/marker/Marker.js create mode 100644 node_modules/leaflet/src/layer/marker/index.js create mode 100755 node_modules/leaflet/src/layer/tile/GridLayer.js create mode 100644 node_modules/leaflet/src/layer/tile/TileLayer.WMS.js create mode 100644 node_modules/leaflet/src/layer/tile/TileLayer.js create mode 100644 node_modules/leaflet/src/layer/tile/index.js create mode 100644 node_modules/leaflet/src/layer/vector/Canvas.js create mode 100644 node_modules/leaflet/src/layer/vector/Circle.js create mode 100644 node_modules/leaflet/src/layer/vector/CircleMarker.js create mode 100644 node_modules/leaflet/src/layer/vector/Path.js create mode 100644 node_modules/leaflet/src/layer/vector/Polygon.js create mode 100644 node_modules/leaflet/src/layer/vector/Polyline.js create mode 100644 node_modules/leaflet/src/layer/vector/Rectangle.js create mode 100644 node_modules/leaflet/src/layer/vector/Renderer.getRenderer.js create mode 100644 node_modules/leaflet/src/layer/vector/Renderer.js create mode 100644 node_modules/leaflet/src/layer/vector/SVG.Util.js create mode 100644 node_modules/leaflet/src/layer/vector/SVG.VML.js create mode 100644 node_modules/leaflet/src/layer/vector/SVG.js create mode 100644 node_modules/leaflet/src/layer/vector/index.js create mode 100644 node_modules/leaflet/src/map/Map.js create mode 100644 node_modules/leaflet/src/map/Map.methodOptions.leafdoc create mode 100644 node_modules/leaflet/src/map/handler/Map.BoxZoom.js create mode 100644 node_modules/leaflet/src/map/handler/Map.DoubleClickZoom.js create mode 100644 node_modules/leaflet/src/map/handler/Map.Drag.js create mode 100644 node_modules/leaflet/src/map/handler/Map.Keyboard.js create mode 100644 node_modules/leaflet/src/map/handler/Map.ScrollWheelZoom.js create mode 100644 node_modules/leaflet/src/map/handler/Map.TapHold.js create mode 100644 node_modules/leaflet/src/map/handler/Map.TouchZoom.js create mode 100644 node_modules/leaflet/src/map/index.js create mode 100644 node_modules/react-leaflet/LICENSE.md create mode 100644 node_modules/react-leaflet/README.md create mode 100644 node_modules/react-leaflet/lib/AttributionControl.d.ts create mode 100644 node_modules/react-leaflet/lib/AttributionControl.js create mode 100644 node_modules/react-leaflet/lib/Circle.d.ts create mode 100644 node_modules/react-leaflet/lib/Circle.js create mode 100644 node_modules/react-leaflet/lib/CircleMarker.d.ts create mode 100644 node_modules/react-leaflet/lib/CircleMarker.js create mode 100644 node_modules/react-leaflet/lib/FeatureGroup.d.ts create mode 100644 node_modules/react-leaflet/lib/FeatureGroup.js create mode 100644 node_modules/react-leaflet/lib/GeoJSON.d.ts create mode 100644 node_modules/react-leaflet/lib/GeoJSON.js create mode 100644 node_modules/react-leaflet/lib/ImageOverlay.d.ts create mode 100644 node_modules/react-leaflet/lib/ImageOverlay.js create mode 100644 node_modules/react-leaflet/lib/LayerGroup.d.ts create mode 100644 node_modules/react-leaflet/lib/LayerGroup.js create mode 100644 node_modules/react-leaflet/lib/LayersControl.d.ts create mode 100644 node_modules/react-leaflet/lib/LayersControl.js create mode 100644 node_modules/react-leaflet/lib/MapContainer.d.ts create mode 100644 node_modules/react-leaflet/lib/MapContainer.js create mode 100644 node_modules/react-leaflet/lib/Marker.d.ts create mode 100644 node_modules/react-leaflet/lib/Marker.js create mode 100644 node_modules/react-leaflet/lib/Pane.d.ts create mode 100644 node_modules/react-leaflet/lib/Pane.js create mode 100644 node_modules/react-leaflet/lib/Polygon.d.ts create mode 100644 node_modules/react-leaflet/lib/Polygon.js create mode 100644 node_modules/react-leaflet/lib/Polyline.d.ts create mode 100644 node_modules/react-leaflet/lib/Polyline.js create mode 100644 node_modules/react-leaflet/lib/Popup.d.ts create mode 100644 node_modules/react-leaflet/lib/Popup.js create mode 100644 node_modules/react-leaflet/lib/Rectangle.d.ts create mode 100644 node_modules/react-leaflet/lib/Rectangle.js create mode 100644 node_modules/react-leaflet/lib/SVGOverlay.d.ts create mode 100644 node_modules/react-leaflet/lib/SVGOverlay.js create mode 100644 node_modules/react-leaflet/lib/ScaleControl.d.ts create mode 100644 node_modules/react-leaflet/lib/ScaleControl.js create mode 100644 node_modules/react-leaflet/lib/TileLayer.d.ts create mode 100644 node_modules/react-leaflet/lib/TileLayer.js create mode 100644 node_modules/react-leaflet/lib/Tooltip.d.ts create mode 100644 node_modules/react-leaflet/lib/Tooltip.js create mode 100644 node_modules/react-leaflet/lib/VideoOverlay.d.ts create mode 100644 node_modules/react-leaflet/lib/VideoOverlay.js create mode 100644 node_modules/react-leaflet/lib/WMSTileLayer.d.ts create mode 100644 node_modules/react-leaflet/lib/WMSTileLayer.js create mode 100644 node_modules/react-leaflet/lib/ZoomControl.d.ts create mode 100644 node_modules/react-leaflet/lib/ZoomControl.js create mode 100644 node_modules/react-leaflet/lib/hooks.d.ts create mode 100644 node_modules/react-leaflet/lib/hooks.js create mode 100644 node_modules/react-leaflet/lib/index.d.ts create mode 100644 node_modules/react-leaflet/lib/index.js create mode 100644 node_modules/react-leaflet/package.json diff --git a/components/observatory/observatory-map.tsx b/components/observatory/observatory-map.tsx index 0b8f1256..0ede26b2 100644 --- a/components/observatory/observatory-map.tsx +++ b/components/observatory/observatory-map.tsx @@ -1,13 +1,12 @@ "use client"; -import { useEffect, useRef } from "react"; +import { useEffect, useRef, useState } from "react"; +import dynamic from "next/dynamic"; interface CountryData { name: string; count: number; - // In a real implementation, we would have coordinates - x?: number; - y?: number; + position?: [number, number]; // latitude, longitude } interface ObservatoryMapProps { @@ -16,220 +15,230 @@ interface ObservatoryMapProps { selectedCountry: string | null; } -// Simplified map positions for common countries -const COUNTRY_POSITIONS: Record = { +// Add type declaration for leaflet +declare global { + interface Window { + _leaflet_L: any; + } +} + +// Mapping of countries to geographic coordinates [latitude, longitude] +const COUNTRY_COORDINATES: Record = { // Africa - 'Sudan': [0.55, 0.45], - 'Egypt': [0.57, 0.40], - 'South Africa': [0.55, 0.65], - 'Nigeria': [0.48, 0.50], - 'Kenya': [0.59, 0.52], - 'Ethiopia': [0.60, 0.47], - 'Morocco': [0.45, 0.38], - 'Algeria': [0.47, 0.40], - 'Tunisia': [0.48, 0.36], + 'Sudan': [15.5, 30.5], + 'Egypt': [26.8, 30.8], + 'South Africa': [-30.6, 22.9], + 'Nigeria': [9.1, 8.7], + 'Kenya': [0.0, 38.0], + 'Ethiopia': [9.1, 40.5], + 'Morocco': [31.8, -7.1], + 'Algeria': [28.0, 1.7], + 'Tunisia': [34.0, 9.0], // Americas - 'USA': [0.25, 0.35], - 'New York': [0.28, 0.32], - 'Canada': [0.22, 0.25], - 'Mexico': [0.20, 0.40], - 'Brazil': [0.35, 0.60], - 'Argentina': [0.32, 0.70], + 'USA': [37.1, -95.7], + 'New York': [40.7, -74.0], + 'Canada': [56.1, -106.3], + 'Mexico': [23.6, -102.5], + 'Brazil': [-14.2, -51.9], + 'Argentina': [-38.4, -63.6], // Europe - 'UK': [0.45, 0.25], - 'France': [0.48, 0.30], - 'Germany': [0.50, 0.28], - 'Italy': [0.52, 0.33], - 'Spain': [0.45, 0.33], - 'Ukraine': [0.57, 0.28], - 'Russia': [0.65, 0.20], - 'Poland': [0.53, 0.26], - 'Sweden': [0.52, 0.18], - 'Norway': [0.50, 0.15], - 'Finland': [0.55, 0.15], - 'Greece': [0.55, 0.35], - 'Netherlands': [0.48, 0.25], - 'Belgium': [0.47, 0.27], - 'Portugal': [0.43, 0.35], - 'Switzerland': [0.49, 0.29], - 'Austria': [0.51, 0.29], + 'UK': [55.4, -3.4], + 'France': [46.2, 2.2], + 'Germany': [51.2, 10.4], + 'Italy': [41.9, 12.6], + 'Spain': [40.5, -3.7], + 'Ukraine': [48.4, 31.2], + 'Russia': [61.5, 105.3], + 'Poland': [51.9, 19.1], + 'Sweden': [60.1, 18.6], + 'Norway': [60.5, 8.5], + 'Finland': [61.9, 25.7], + 'Greece': [39.1, 21.8], + 'Netherlands': [52.1, 5.3], + 'Belgium': [50.5, 4.5], + 'Portugal': [39.4, -8.2], + 'Switzerland': [46.8, 8.2], + 'Austria': [47.5, 14.5], // Asia - 'China': [0.75, 0.35], - 'India': [0.70, 0.40], - 'Japan': [0.85, 0.33], - 'South Korea': [0.83, 0.32], - 'Indonesia': [0.78, 0.55], - 'Thailand': [0.75, 0.45], - 'Vietnam': [0.78, 0.43], - 'Philippines': [0.82, 0.45], - 'Malaysia': [0.76, 0.50], - 'Singapore': [0.76, 0.52], - 'Pakistan': [0.67, 0.38], - 'Iran': [0.62, 0.38], - 'Iraq': [0.60, 0.38], - 'Saudi Arabia': [0.60, 0.42], - 'Turkey': [0.58, 0.35], - 'Israel': [0.58, 0.38], - 'Palestine': [0.58, 0.39], - 'Syria': [0.59, 0.37], - 'Afghanistan': [0.65, 0.38], + 'China': [35.9, 104.2], + 'India': [20.6, 79.0], + 'Japan': [36.2, 138.3], + 'South Korea': [35.9, 127.8], + 'Indonesia': [-0.8, 113.9], + 'Thailand': [15.9, 101.0], + 'Vietnam': [14.1, 108.3], + 'Philippines': [12.9, 121.8], + 'Malaysia': [4.2, 101.9], + 'Singapore': [1.3, 103.8], + 'Pakistan': [30.4, 69.3], + 'Iran': [32.4, 53.7], + 'Iraq': [33.2, 43.7], + 'Saudi Arabia': [23.9, 45.1], + 'Turkey': [38.9, 35.2], + 'Israel': [31.0, 34.9], + 'Palestine': [31.9, 35.2], + 'Syria': [34.8, 39.0], + 'Afghanistan': [33.9, 67.7], // Oceania - 'Australia': [0.80, 0.65] + 'Australia': [-25.3, 133.8], + + // Other + 'United Nations': [40.7, -74.0], // UN HQ in New York }; -export function ObservatoryMap({ - countries, +// Dynamic imports for Leaflet components to avoid SSR issues +// We use "any" type here to avoid TypeScript errors with dynamic imports +const MapContainer: any = dynamic( + () => import('react-leaflet').then(mod => mod.MapContainer), + { ssr: false } +); +const TileLayer: any = dynamic( + () => import('react-leaflet').then(mod => mod.TileLayer), + { ssr: false } +); +const Marker: any = dynamic( + () => import('react-leaflet').then(mod => mod.Marker), + { ssr: false } +); +const Popup: any = dynamic( + () => import('react-leaflet').then(mod => mod.Popup), + { ssr: false } +); +const ZoomControl: any = dynamic( + () => import('react-leaflet').then(mod => mod.ZoomControl), + { ssr: false } +); + +export function ObservatoryMap({ + countries, onCountrySelect, - selectedCountry + selectedCountry }: ObservatoryMapProps) { - const canvasRef = useRef(null); + const [isMounted, setIsMounted] = useState(false); - // Draw the map and country markers + // We'll need the Leaflet CSS useEffect(() => { - const canvas = canvasRef.current; - if (!canvas) return; - - const ctx = canvas.getContext('2d'); - if (!ctx) return; - - // Set canvas dimensions - const updateCanvasDimensions = () => { - const parent = canvas.parentElement; - if (parent) { - canvas.width = parent.clientWidth; - canvas.height = parent.clientHeight; + // Import Leaflet CSS only on the client + const loadLeafletStyles = async () => { + try { + await import('leaflet/dist/leaflet.css'); + } catch (e) { + console.error('Failed to load Leaflet CSS', e); } }; - updateCanvasDimensions(); - window.addEventListener('resize', updateCanvasDimensions); + loadLeafletStyles(); - // Clear canvas - ctx.clearRect(0, 0, canvas.width, canvas.height); - - // Draw world map background (simplified) - ctx.fillStyle = '#f9f9f9'; - ctx.fillRect(0, 0, canvas.width, canvas.height); - - // Draw grid lines for better visualization - ctx.strokeStyle = '#e5e5e5'; - ctx.lineWidth = 1; - - // Horizontal grid lines - for (let y = 0; y < canvas.height; y += 50) { - ctx.beginPath(); - ctx.moveTo(0, y); - ctx.lineTo(canvas.width, y); - ctx.stroke(); + // Add marker icons to prevent missing icons issue + if (typeof window !== 'undefined') { + // Fix Leaflet's icon paths + delete window._leaflet_L; + + try { + const L = require('leaflet'); + + // Set default icon paths + delete L.Icon.Default.prototype._getIconUrl; + L.Icon.Default.mergeOptions({ + iconRetinaUrl: 'https://unpkg.com/leaflet@1.9.4/dist/images/marker-icon-2x.png', + iconUrl: 'https://unpkg.com/leaflet@1.9.4/dist/images/marker-icon.png', + shadowUrl: 'https://unpkg.com/leaflet@1.9.4/dist/images/marker-shadow.png', + }); + } catch (e) { + console.error('Failed to load Leaflet', e); + } } - // Vertical grid lines - for (let x = 0; x < canvas.width; x += 50) { - ctx.beginPath(); - ctx.moveTo(x, 0); - ctx.lineTo(x, canvas.height); - ctx.stroke(); + setIsMounted(true); + }, []); + + // Prepare countries with coordinates + const countriesWithCoordinates = countries.filter(country => { + return COUNTRY_COORDINATES[country.name] !== undefined; + }).map(country => ({ + ...country, + position: COUNTRY_COORDINATES[country.name] + })); + + // Sort countries by count (higher count = shows on top) + const sortedCountries = [...countriesWithCoordinates].sort((a, b) => b.count - a.count); + + // Get custom icon based on count + const getMarkerIcon = (count: number, isSelected: boolean) => { + if (typeof window === 'undefined') return null; + + try { + const L = require('leaflet'); + const size = Math.min(Math.max(20, count * 5), 40); + + return L.divIcon({ + html: `
${count}
`, + className: '', + iconSize: [size, size], + iconAnchor: [size/2, size/2] + }); + } catch (e) { + console.error('Failed to create icon', e); + return null; } - - // Calculate the top countries by news count - const topCountries = [...countries] - .sort((a, b) => b.count - a.count) - .slice(0, 15); - - // Draw country markers for all countries - countries.forEach((country) => { - // Position based on country name (simplified) - let x, y; - - // Use predefined positions or random for others - if (COUNTRY_POSITIONS[country.name]) { - const [xRatio, yRatio] = COUNTRY_POSITIONS[country.name]; - x = canvas.width * xRatio; - y = canvas.height * yRatio; - } else { - // Random position for other countries - x = 100 + Math.random() * (canvas.width - 200); - y = 100 + Math.random() * (canvas.height - 200); - } - - // Size based on count (with limits) - const isTopCountry = topCountries.includes(country); - const size = Math.min(Math.max(3, country.count / 2), 8); - - // Draw marker - ctx.beginPath(); - ctx.arc(x, y, size, 0, Math.PI * 2); - - // Color based on count and selection - if (country.name === selectedCountry) { - ctx.fillStyle = '#3b82f6'; // Blue when selected - } else if (isTopCountry) { - ctx.fillStyle = '#f87171'; // Red for top countries - } else { - ctx.fillStyle = '#cbd5e1'; // Gray for others - } - - ctx.fill(); - - // Draw country name if it's a top country or selected - if (isTopCountry || country.name === selectedCountry) { - ctx.fillStyle = '#374151'; - ctx.font = '12px system-ui, sans-serif'; - // Show count for top countries - ctx.fillText(`${country.name} (${country.count})`, x + 10, y + 4); - } - - // Store coordinates for click detection - country.x = x; - country.y = y; - }); - - // Handle click events - const handleClick = (e: MouseEvent) => { - const rect = canvas.getBoundingClientRect(); - const x = e.clientX - rect.left; - const y = e.clientY - rect.top; - - // Check if a country marker was clicked - for (const country of countries) { - if (country.x && country.y) { - const size = Math.min(Math.max(3, country.count / 2), 8); - const distance = Math.sqrt( - Math.pow(x - country.x, 2) + Math.pow(y - country.y, 2) - ); - - if (distance <= size + 2) { - onCountrySelect(country.name); - break; - } - } - } - }; - - canvas.addEventListener('click', handleClick); - - // Cleanup - return () => { - window.removeEventListener('resize', updateCanvasDimensions); - canvas.removeEventListener('click', handleClick); - }; - }, [countries, selectedCountry, onCountrySelect]); + }; + + if (!isMounted) { + return ( +
+

Loading map...

+
+ ); + } return (
- - {countries.length === 0 && ( -
-

No countries detected in the news

-
- )} + + + + + {sortedCountries.map((country) => ( + onCountrySelect(country.name) + }} + > + +
+ {country.name} +
{country.count} news articles
+
+
+
+ ))} +
); } \ No newline at end of file diff --git a/node_modules/.package-lock.json b/node_modules/.package-lock.json index be0f0299..bcad7bf9 100644 --- a/node_modules/.package-lock.json +++ b/node_modules/.package-lock.json @@ -3354,6 +3354,17 @@ "resolved": "https://registry.npmjs.org/@radix-ui/rect/-/rect-1.1.0.tgz", "integrity": "sha512-A9+lCBZoaMJlVKcRBz2YByCG+Cp2t6nAnMnNba+XiWxnj6r4JUFqfsgwocMBZU9LPtdxC6wB56ySYpc7LQIoJg==" }, + "node_modules/@react-leaflet/core": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/@react-leaflet/core/-/core-2.1.0.tgz", + "integrity": "sha512-Qk7Pfu8BSarKGqILj4x7bCSZ1pjuAPZ+qmRwH5S7mDS91VSbVVsJSrW4qA+GPrro8t69gFYVMWb1Zc4yFmPiVg==", + "license": "Hippocratic-2.1", + "peerDependencies": { + "leaflet": "^1.9.0", + "react": "^18.0.0", + "react-dom": "^18.0.0" + } + }, "node_modules/@selderee/plugin-htmlparser2": { "version": "0.11.0", "resolved": "https://registry.npmjs.org/@selderee/plugin-htmlparser2/-/plugin-htmlparser2-0.11.0.tgz", @@ -4182,6 +4193,12 @@ "@types/trusted-types": "*" } }, + "node_modules/@types/geojson": { + "version": "7946.0.16", + "resolved": "https://registry.npmjs.org/@types/geojson/-/geojson-7946.0.16.tgz", + "integrity": "sha512-6C8nqWur3j98U6+lXDfTUWIfgvZU+EumvpHKcYjujKH7woYyLj2sUmff0tRhrqM7BohUw7Pz3ZB1jj2gW9Fvmg==", + "license": "MIT" + }, "node_modules/@types/imap": { "version": "0.8.42", "resolved": "https://registry.npmjs.org/@types/imap/-/imap-0.8.42.tgz", @@ -4213,6 +4230,15 @@ "parse5": "^7.0.0" } }, + "node_modules/@types/leaflet": { + "version": "1.9.17", + "resolved": "https://registry.npmjs.org/@types/leaflet/-/leaflet-1.9.17.tgz", + "integrity": "sha512-IJ4K6t7I3Fh5qXbQ1uwL3CFVbCi6haW9+53oLWgdKlLP7EaS21byWFJxxqOx9y8I0AP0actXSJLVMbyvxhkUTA==", + "license": "MIT", + "dependencies": { + "@types/geojson": "*" + } + }, "node_modules/@types/mailparser": { "version": "3.4.5", "resolved": "https://registry.npmjs.org/@types/mailparser/-/mailparser-3.4.5.tgz", @@ -6386,6 +6412,12 @@ "url": "https://ko-fi.com/killymxi" } }, + "node_modules/leaflet": { + "version": "1.9.4", + "resolved": "https://registry.npmjs.org/leaflet/-/leaflet-1.9.4.tgz", + "integrity": "sha512-nxS1ynzJOmOlHp+iL3FyWqK89GtNL8U8rvlMOsQdTTssxZwCXh8N2NB3GDQOL+YR3XnWyZAxwQixURb+FA74PA==", + "license": "BSD-2-Clause" + }, "node_modules/libbase64": { "version": "1.3.0", "resolved": "https://registry.npmjs.org/libbase64/-/libbase64-1.3.0.tgz", @@ -7743,6 +7775,20 @@ "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz", "integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==" }, + "node_modules/react-leaflet": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/react-leaflet/-/react-leaflet-4.2.1.tgz", + "integrity": "sha512-p9chkvhcKrWn/H/1FFeVSqLdReGwn2qmiobOQGO3BifX+/vV/39qhY8dGqbdcPh1e6jxh/QHriLXr7a4eLFK4Q==", + "license": "Hippocratic-2.1", + "dependencies": { + "@react-leaflet/core": "^2.1.0" + }, + "peerDependencies": { + "leaflet": "^1.9.0", + "react": "^18.0.0", + "react-dom": "^18.0.0" + } + }, "node_modules/react-remove-scroll": { "version": "2.6.3", "resolved": "https://registry.npmjs.org/react-remove-scroll/-/react-remove-scroll-2.6.3.tgz", diff --git a/node_modules/@react-leaflet/core/LICENSE.md b/node_modules/@react-leaflet/core/LICENSE.md new file mode 100644 index 00000000..e5faf967 --- /dev/null +++ b/node_modules/@react-leaflet/core/LICENSE.md @@ -0,0 +1,33 @@ +@react-leaflet/core Copyright 2020 Paul Le Cam and contributors (“Licensor”) + +Hippocratic License Version Number: 2.1. + +Purpose. The purpose of this License is for the Licensor named above to permit the Licensee (as defined below) broad permission, if consistent with Human Rights Laws and Human Rights Principles (as each is defined below), to use and work with the Software (as defined below) within the full scope of Licensor’s copyright and patent rights, if any, in the Software, while ensuring attribution and protecting the Licensor from liability. + +Permission and Conditions. The Licensor grants permission by this license (“License”), free of charge, to the extent of Licensor’s rights under applicable copyright and patent law, to any person or entity (the “Licensee”) obtaining a copy of this software and associated documentation files (the “Software”), to do everything with the Software that would otherwise infringe (i) the Licensor’s copyright in the Software or (ii) any patent claims to the Software that the Licensor can license or becomes able to license, subject to all of the following terms and conditions: + +- Acceptance. This License is automatically offered to every person and entity subject to its terms and conditions. Licensee accepts this License and agrees to its terms and conditions by taking any action with the Software that, absent this License, would infringe any intellectual property right held by Licensor. + +- Notice. Licensee must ensure that everyone who gets a copy of any part of this Software from Licensee, with or without changes, also receives the License and the above copyright notice (and if included by the Licensor, patent, trademark and attribution notice). Licensee must cause any modified versions of the Software to carry prominent notices stating that Licensee changed the Software. For clarity, although Licensee is free to create modifications of the Software and distribute only the modified portion created by Licensee with additional or different terms, the portion of the Software not modified must be distributed pursuant to this License. If anyone notifies Licensee in writing that Licensee has not complied with this Notice section, Licensee can keep this License by taking all practical steps to comply within 30 days after the notice. If Licensee does not do so, Licensee’s License (and all rights licensed hereunder) shall end immediately. + +- Compliance with Human Rights Principles and Human Rights Laws. + + 1. Human Rights Principles. + + (a) Licensee is advised to consult the articles of the United Nations Universal Declaration of Human Rights and the United Nations Global Compact that define recognized principles of international human rights (the “Human Rights Principles”). Licensee shall use the Software in a manner consistent with Human Rights Principles. + + (b) Unless the Licensor and Licensee agree otherwise, any dispute, controversy, or claim arising out of or relating to (i) Section 1(a) regarding Human Rights Principles, including the breach of Section 1(a), termination of this License for breach of the Human Rights Principles, or invalidity of Section 1(a) or (ii) a determination of whether any Law is consistent or in conflict with Human Rights Principles pursuant to Section 2, below, shall be settled by arbitration in accordance with the Hague Rules on Business and Human Rights Arbitration (the “Rules”); provided, however, that Licensee may elect not to participate in such arbitration, in which event this License (and all rights licensed hereunder) shall end immediately. The number of arbitrators shall be one unless the Rules require otherwise. + + Unless both the Licensor and Licensee agree to the contrary: (1) All documents and information concerning the arbitration shall be public and may be disclosed by any party; (2) The repository referred to under Article 43 of the Rules shall make available to the public in a timely manner all documents concerning the arbitration which are communicated to it, including all submissions of the parties, all evidence admitted into the record of the proceedings, all transcripts or other recordings of hearings and all orders, decisions and awards of the arbitral tribunal, subject only to the arbitral tribunal's powers to take such measures as may be necessary to safeguard the integrity of the arbitral process pursuant to Articles 18, 33, 41 and 42 of the Rules; and (3) Article 26(6) of the Rules shall not apply. + + 2. Human Rights Laws. The Software shall not be used by any person or entity for any systems, activities, or other uses that violate any Human Rights Laws. “Human Rights Laws” means any applicable laws, regulations, or rules (collectively, “Laws”) that protect human, civil, labor, privacy, political, environmental, security, economic, due process, or similar rights; provided, however, that such Laws are consistent and not in conflict with Human Rights Principles (a dispute over the consistency or a conflict between Laws and Human Rights Principles shall be determined by arbitration as stated above). Where the Human Rights Laws of more than one jurisdiction are applicable or in conflict with respect to the use of the Software, the Human Rights Laws that are most protective of the individuals or groups harmed shall apply. + + 3. Indemnity. Licensee shall hold harmless and indemnify Licensor (and any other contributor) against all losses, damages, liabilities, deficiencies, claims, actions, judgments, settlements, interest, awards, penalties, fines, costs, or expenses of whatever kind, including Licensor’s reasonable attorneys’ fees, arising out of or relating to Licensee’s use of the Software in violation of Human Rights Laws or Human Rights Principles. + +- Failure to Comply. Any failure of Licensee to act according to the terms and conditions of this License is both a breach of the License and an infringement of the intellectual property rights of the Licensor (subject to exceptions under Laws, e.g., fair use). In the event of a breach or infringement, the terms and conditions of this License may be enforced by Licensor under the Laws of any jurisdiction to which Licensee is subject. Licensee also agrees that the Licensor may enforce the terms and conditions of this License against Licensee through specific performance (or similar remedy under Laws) to the extent permitted by Laws. For clarity, except in the event of a breach of this License, infringement, or as otherwise stated in this License, Licensor may not terminate this License with Licensee. + +- Enforceability and Interpretation. If any term or provision of this License is determined to be invalid, illegal, or unenforceable by a court of competent jurisdiction, then such invalidity, illegality, or unenforceability shall not affect any other term or provision of this License or invalidate or render unenforceable such term or provision in any other jurisdiction; provided, however, subject to a court modification pursuant to the immediately following sentence, if any term or provision of this License pertaining to Human Rights Laws or Human Rights Principles is deemed invalid, illegal, or unenforceable against Licensee by a court of competent jurisdiction, all rights in the Software granted to Licensee shall be deemed null and void as between Licensor and Licensee. Upon a determination that any term or provision is invalid, illegal, or unenforceable, to the extent permitted by Laws, the court may modify this License to affect the original purpose that the Software be used in compliance with Human Rights Principles and Human Rights Laws as closely as possible. The language in this License shall be interpreted as to its fair meaning and not strictly for or against any party. + +- Disclaimer. TO THE FULL EXTENT ALLOWED BY LAW, THIS SOFTWARE COMES “AS IS,” WITHOUT ANY WARRANTY, EXPRESS OR IMPLIED, AND LICENSOR AND ANY OTHER CONTRIBUTOR SHALL NOT BE LIABLE TO ANYONE FOR ANY DAMAGES OR OTHER LIABILITY ARISING FROM, OUT OF, OR IN CONNECTION WITH THE SOFTWARE OR THIS LICENSE, UNDER ANY KIND OF LEGAL CLAIM. + +This Hippocratic License is an Ethical Source license (https://ethicalsource.dev) and is offered for use by licensors and licensees at their own risk, on an “AS IS” basis, and with no warranties express or implied, to the maximum extent permitted by Laws. diff --git a/node_modules/@react-leaflet/core/README.md b/node_modules/@react-leaflet/core/README.md new file mode 100644 index 00000000..2c689b30 --- /dev/null +++ b/node_modules/@react-leaflet/core/README.md @@ -0,0 +1,3 @@ +# React Leaflet core + +[Documentation](https://react-leaflet.js.org/docs/core-introduction) diff --git a/node_modules/@react-leaflet/core/lib/attribution.d.ts b/node_modules/@react-leaflet/core/lib/attribution.d.ts new file mode 100644 index 00000000..8907251f --- /dev/null +++ b/node_modules/@react-leaflet/core/lib/attribution.d.ts @@ -0,0 +1,2 @@ +import type { Map } from 'leaflet'; +export declare function useAttribution(map: Map, attribution: string | null | undefined): void; diff --git a/node_modules/@react-leaflet/core/lib/attribution.js b/node_modules/@react-leaflet/core/lib/attribution.js new file mode 100644 index 00000000..bce46abd --- /dev/null +++ b/node_modules/@react-leaflet/core/lib/attribution.js @@ -0,0 +1,18 @@ +import { useEffect, useRef } from 'react'; +export function useAttribution(map, attribution) { + const attributionRef = useRef(attribution); + useEffect(function updateAttribution() { + if (attribution !== attributionRef.current && map.attributionControl != null) { + if (attributionRef.current != null) { + map.attributionControl.removeAttribution(attributionRef.current); + } + if (attribution != null) { + map.attributionControl.addAttribution(attribution); + } + } + attributionRef.current = attribution; + }, [ + map, + attribution + ]); +} diff --git a/node_modules/@react-leaflet/core/lib/circle.d.ts b/node_modules/@react-leaflet/core/lib/circle.d.ts new file mode 100644 index 00000000..39910d5c --- /dev/null +++ b/node_modules/@react-leaflet/core/lib/circle.d.ts @@ -0,0 +1,12 @@ +import type { Circle as LeafletCircle, CircleMarker as LeafletCircleMarker, CircleMarkerOptions, CircleOptions, LatLngExpression } from 'leaflet'; +import type { ReactNode } from 'react'; +import type { PathProps } from './path.js'; +export interface CircleMarkerProps extends CircleMarkerOptions, PathProps { + center: LatLngExpression; + children?: ReactNode; +} +export interface CircleProps extends CircleOptions, PathProps { + center: LatLngExpression; + children?: ReactNode; +} +export declare function updateCircle

(layer: LeafletCircle

| LeafletCircleMarker

, props: P, prevProps: P): void; diff --git a/node_modules/@react-leaflet/core/lib/circle.js b/node_modules/@react-leaflet/core/lib/circle.js new file mode 100644 index 00000000..f5e20aeb --- /dev/null +++ b/node_modules/@react-leaflet/core/lib/circle.js @@ -0,0 +1,8 @@ +export function updateCircle(layer, props, prevProps) { + if (props.center !== prevProps.center) { + layer.setLatLng(props.center); + } + if (props.radius != null && props.radius !== prevProps.radius) { + layer.setRadius(props.radius); + } +} diff --git a/node_modules/@react-leaflet/core/lib/component.d.ts b/node_modules/@react-leaflet/core/lib/component.d.ts new file mode 100644 index 00000000..c67a8708 --- /dev/null +++ b/node_modules/@react-leaflet/core/lib/component.d.ts @@ -0,0 +1,11 @@ +import React, { type MutableRefObject, type ReactNode } from 'react'; +import type { DivOverlay, DivOverlayHook } from './div-overlay.js'; +import type { LeafletElement } from './element.js'; +declare type ElementHook = (props: P) => MutableRefObject>; +export declare type PropsWithChildren = { + children?: ReactNode; +}; +export declare function createContainerComponent(useElement: ElementHook): React.ForwardRefExoticComponent & React.RefAttributes>; +export declare function createDivOverlayComponent(useElement: ReturnType>): React.ForwardRefExoticComponent & React.RefAttributes>; +export declare function createLeafComponent(useElement: ElementHook): React.ForwardRefExoticComponent & React.RefAttributes>; +export {}; diff --git a/node_modules/@react-leaflet/core/lib/component.js b/node_modules/@react-leaflet/core/lib/component.js new file mode 100644 index 00000000..d0c92b45 --- /dev/null +++ b/node_modules/@react-leaflet/core/lib/component.js @@ -0,0 +1,41 @@ +import React, { forwardRef, useEffect, useImperativeHandle, useState } from 'react'; +import { createPortal } from 'react-dom'; +import { LeafletProvider } from './context.js'; +export function createContainerComponent(useElement) { + function ContainerComponent(props, forwardedRef) { + const { instance , context } = useElement(props).current; + useImperativeHandle(forwardedRef, ()=>instance); + return props.children == null ? null : /*#__PURE__*/ React.createElement(LeafletProvider, { + value: context + }, props.children); + } + return /*#__PURE__*/ forwardRef(ContainerComponent); +} +export function createDivOverlayComponent(useElement) { + function OverlayComponent(props, forwardedRef) { + const [isOpen, setOpen] = useState(false); + const { instance } = useElement(props, setOpen).current; + useImperativeHandle(forwardedRef, ()=>instance); + useEffect(function updateOverlay() { + if (isOpen) { + instance.update(); + } + }, [ + instance, + isOpen, + props.children + ]); + // @ts-ignore _contentNode missing in type definition + const contentNode = instance._contentNode; + return contentNode ? /*#__PURE__*/ createPortal(props.children, contentNode) : null; + } + return /*#__PURE__*/ forwardRef(OverlayComponent); +} +export function createLeafComponent(useElement) { + function LeafComponent(props, forwardedRef) { + const { instance } = useElement(props).current; + useImperativeHandle(forwardedRef, ()=>instance); + return null; + } + return /*#__PURE__*/ forwardRef(LeafComponent); +} diff --git a/node_modules/@react-leaflet/core/lib/context.d.ts b/node_modules/@react-leaflet/core/lib/context.d.ts new file mode 100644 index 00000000..f280ef37 --- /dev/null +++ b/node_modules/@react-leaflet/core/lib/context.d.ts @@ -0,0 +1,34 @@ +/// +import type { Control, Layer, LayerGroup, Map } from 'leaflet'; +export declare const CONTEXT_VERSION = 1; +export declare type ControlledLayer = { + addLayer(layer: Layer): void; + removeLayer(layer: Layer): void; +}; +export declare type LeafletContextInterface = Readonly<{ + __version: number; + map: Map; + layerContainer?: ControlledLayer | LayerGroup; + layersControl?: Control.Layers; + overlayContainer?: Layer; + pane?: string; +}>; +export declare function createLeafletContext(map: Map): LeafletContextInterface; +export declare function extendContext(source: LeafletContextInterface, extra: Partial): LeafletContextInterface; +export declare const LeafletContext: import("react").Context | ControlledLayer | undefined; + layersControl?: Control.Layers | undefined; + overlayContainer?: Layer | undefined; + pane?: string | undefined; +}> | null>; +export declare const LeafletProvider: import("react").Provider | ControlledLayer | undefined; + layersControl?: Control.Layers | undefined; + overlayContainer?: Layer | undefined; + pane?: string | undefined; +}> | null>; +export declare function useLeafletContext(): LeafletContextInterface; diff --git a/node_modules/@react-leaflet/core/lib/context.js b/node_modules/@react-leaflet/core/lib/context.js new file mode 100644 index 00000000..cf4d48e7 --- /dev/null +++ b/node_modules/@react-leaflet/core/lib/context.js @@ -0,0 +1,23 @@ +import { createContext, useContext } from 'react'; +export const CONTEXT_VERSION = 1; +export function createLeafletContext(map) { + return Object.freeze({ + __version: CONTEXT_VERSION, + map + }); +} +export function extendContext(source, extra) { + return Object.freeze({ + ...source, + ...extra + }); +} +export const LeafletContext = createContext(null); +export const LeafletProvider = LeafletContext.Provider; +export function useLeafletContext() { + const context = useContext(LeafletContext); + if (context == null) { + throw new Error('No context provided: useLeafletContext() can only be used in a descendant of '); + } + return context; +} diff --git a/node_modules/@react-leaflet/core/lib/control.d.ts b/node_modules/@react-leaflet/core/lib/control.d.ts new file mode 100644 index 00000000..8a3cd3c7 --- /dev/null +++ b/node_modules/@react-leaflet/core/lib/control.d.ts @@ -0,0 +1,3 @@ +import { Control, type ControlOptions } from 'leaflet'; +import type { ElementHook } from './element.js'; +export declare function createControlHook(useElement: ElementHook): (props: P) => ReturnType>; diff --git a/node_modules/@react-leaflet/core/lib/control.js b/node_modules/@react-leaflet/core/lib/control.js new file mode 100644 index 00000000..4452b59b --- /dev/null +++ b/node_modules/@react-leaflet/core/lib/control.js @@ -0,0 +1,30 @@ +import { useEffect, useRef } from 'react'; +import { useLeafletContext } from './context.js'; +export function createControlHook(useElement) { + return function useLeafletControl(props) { + const context = useLeafletContext(); + const elementRef = useElement(props, context); + const { instance } = elementRef.current; + const positionRef = useRef(props.position); + const { position } = props; + useEffect(function addControl() { + instance.addTo(context.map); + return function removeControl() { + instance.remove(); + }; + }, [ + context.map, + instance + ]); + useEffect(function updateControl() { + if (position != null && position !== positionRef.current) { + instance.setPosition(position); + positionRef.current = position; + } + }, [ + instance, + position + ]); + return elementRef; + }; +} diff --git a/node_modules/@react-leaflet/core/lib/div-overlay.d.ts b/node_modules/@react-leaflet/core/lib/div-overlay.d.ts new file mode 100644 index 00000000..acae67c4 --- /dev/null +++ b/node_modules/@react-leaflet/core/lib/div-overlay.d.ts @@ -0,0 +1,9 @@ +import type { Popup, Tooltip } from 'leaflet'; +import { type LeafletContextInterface } from './context.js'; +import type { LeafletElement, ElementHook } from './element.js'; +import type { LayerProps } from './layer.js'; +export declare type DivOverlay = Popup | Tooltip; +export declare type SetOpenFunc = (open: boolean) => void; +export declare type DivOverlayLifecycleHook = (element: LeafletElement, context: LeafletContextInterface, props: P, setOpen: SetOpenFunc) => void; +export declare type DivOverlayHook = (useElement: ElementHook, useLifecycle: DivOverlayLifecycleHook) => (props: P, setOpen: SetOpenFunc) => ReturnType>; +export declare function createDivOverlayHook(useElement: ElementHook, useLifecycle: DivOverlayLifecycleHook): (props: P, setOpen: SetOpenFunc) => ReturnType>; diff --git a/node_modules/@react-leaflet/core/lib/div-overlay.js b/node_modules/@react-leaflet/core/lib/div-overlay.js new file mode 100644 index 00000000..96595113 --- /dev/null +++ b/node_modules/@react-leaflet/core/lib/div-overlay.js @@ -0,0 +1,14 @@ +import { useAttribution } from './attribution.js'; +import { useLeafletContext } from './context.js'; +import { useEventHandlers } from './events.js'; +import { withPane } from './pane.js'; +export function createDivOverlayHook(useElement, useLifecycle) { + return function useDivOverlay(props, setOpen) { + const context = useLeafletContext(); + const elementRef = useElement(withPane(props, context), context); + useAttribution(context.map, props.attribution); + useEventHandlers(elementRef.current, props.eventHandlers); + useLifecycle(elementRef.current, context, props, setOpen); + return elementRef; + }; +} diff --git a/node_modules/@react-leaflet/core/lib/dom.d.ts b/node_modules/@react-leaflet/core/lib/dom.d.ts new file mode 100644 index 00000000..25a720f9 --- /dev/null +++ b/node_modules/@react-leaflet/core/lib/dom.d.ts @@ -0,0 +1,3 @@ +export declare function addClassName(element: HTMLElement, className: string): void; +export declare function removeClassName(element: HTMLElement, className: string): void; +export declare function updateClassName(element?: HTMLElement, prevClassName?: string, nextClassName?: string): void; diff --git a/node_modules/@react-leaflet/core/lib/dom.js b/node_modules/@react-leaflet/core/lib/dom.js new file mode 100644 index 00000000..e41c0e84 --- /dev/null +++ b/node_modules/@react-leaflet/core/lib/dom.js @@ -0,0 +1,24 @@ +import { DomUtil } from 'leaflet'; +function splitClassName(className) { + return className.split(' ').filter(Boolean); +} +export function addClassName(element, className) { + splitClassName(className).forEach((cls)=>{ + DomUtil.addClass(element, cls); + }); +} +export function removeClassName(element, className) { + splitClassName(className).forEach((cls)=>{ + DomUtil.removeClass(element, cls); + }); +} +export function updateClassName(element, prevClassName, nextClassName) { + if (element != null && nextClassName !== prevClassName) { + if (prevClassName != null && prevClassName.length > 0) { + removeClassName(element, prevClassName); + } + if (nextClassName != null && nextClassName.length > 0) { + addClassName(element, nextClassName); + } + } +} diff --git a/node_modules/@react-leaflet/core/lib/element.d.ts b/node_modules/@react-leaflet/core/lib/element.d.ts new file mode 100644 index 00000000..88ffea7a --- /dev/null +++ b/node_modules/@react-leaflet/core/lib/element.d.ts @@ -0,0 +1,10 @@ +import { type MutableRefObject } from 'react'; +import type { LeafletContextInterface } from './context.js'; +export declare type LeafletElement = Readonly<{ + instance: T; + context: LeafletContextInterface; + container?: C | null; +}>; +export declare function createElementObject(instance: T, context: LeafletContextInterface, container?: C | null): LeafletElement; +export declare type ElementHook = (props: P, context: LeafletContextInterface) => MutableRefObject>; +export declare function createElementHook(createElement: (props: P, context: LeafletContextInterface) => LeafletElement, updateElement?: (instance: E, props: P, prevProps: P) => void): (props: P, context: LeafletContextInterface) => ReturnType>; diff --git a/node_modules/@react-leaflet/core/lib/element.js b/node_modules/@react-leaflet/core/lib/element.js new file mode 100644 index 00000000..76c1d2e3 --- /dev/null +++ b/node_modules/@react-leaflet/core/lib/element.js @@ -0,0 +1,34 @@ +import { useEffect, useRef } from 'react'; +export function createElementObject(instance, context, container) { + return Object.freeze({ + instance, + context, + container + }); +} +export function createElementHook(createElement, updateElement) { + if (updateElement == null) { + return function useImmutableLeafletElement(props, context) { + const elementRef = useRef(); + if (!elementRef.current) elementRef.current = createElement(props, context); + return elementRef; + }; + } + return function useMutableLeafletElement(props, context) { + const elementRef = useRef(); + if (!elementRef.current) elementRef.current = createElement(props, context); + const propsRef = useRef(props); + const { instance } = elementRef.current; + useEffect(function updateElementProps() { + if (propsRef.current !== props) { + updateElement(instance, props, propsRef.current); + propsRef.current = props; + } + }, [ + instance, + props, + context + ]); + return elementRef; + }; +} diff --git a/node_modules/@react-leaflet/core/lib/events.d.ts b/node_modules/@react-leaflet/core/lib/events.d.ts new file mode 100644 index 00000000..cc9421d6 --- /dev/null +++ b/node_modules/@react-leaflet/core/lib/events.d.ts @@ -0,0 +1,6 @@ +import type { Evented, LeafletEventHandlerFnMap } from 'leaflet'; +import type { LeafletElement } from './element.js'; +export declare type EventedProps = { + eventHandlers?: LeafletEventHandlerFnMap; +}; +export declare function useEventHandlers(element: LeafletElement, eventHandlers: LeafletEventHandlerFnMap | null | undefined): void; diff --git a/node_modules/@react-leaflet/core/lib/events.js b/node_modules/@react-leaflet/core/lib/events.js new file mode 100644 index 00000000..79a61ccc --- /dev/null +++ b/node_modules/@react-leaflet/core/lib/events.js @@ -0,0 +1,19 @@ +import { useEffect, useRef } from 'react'; +export function useEventHandlers(element, eventHandlers) { + const eventHandlersRef = useRef(); + useEffect(function addEventHandlers() { + if (eventHandlers != null) { + element.instance.on(eventHandlers); + } + eventHandlersRef.current = eventHandlers; + return function removeEventHandlers() { + if (eventHandlersRef.current != null) { + element.instance.off(eventHandlersRef.current); + } + eventHandlersRef.current = null; + }; + }, [ + element, + eventHandlers + ]); +} diff --git a/node_modules/@react-leaflet/core/lib/generic.d.ts b/node_modules/@react-leaflet/core/lib/generic.d.ts new file mode 100644 index 00000000..3046834e --- /dev/null +++ b/node_modules/@react-leaflet/core/lib/generic.d.ts @@ -0,0 +1,18 @@ +/// +import type { Control, ControlOptions, FeatureGroup, Layer, Path } from 'leaflet'; +import { type PropsWithChildren } from './component.js'; +import type { LeafletContextInterface } from './context.js'; +import { type LeafletElement } from './element.js'; +import { type LayerProps } from './layer.js'; +import { type DivOverlay, type DivOverlayLifecycleHook } from './div-overlay.js'; +import { type PathProps } from './path.js'; +interface LayerWithChildrenProps extends LayerProps, PropsWithChildren { +} +interface PathWithChildrenProps extends PathProps, PropsWithChildren { +} +export declare function createControlComponent(createInstance: (props: P) => E): import("react").ForwardRefExoticComponent & import("react").RefAttributes>; +export declare function createLayerComponent(createElement: (props: P, context: LeafletContextInterface) => LeafletElement, updateElement?: (instance: E, props: P, prevProps: P) => void): import("react").ForwardRefExoticComponent & import("react").RefAttributes>; +export declare function createOverlayComponent(createElement: (props: P, context: LeafletContextInterface) => LeafletElement, useLifecycle: DivOverlayLifecycleHook): import("react").ForwardRefExoticComponent & import("react").RefAttributes>; +export declare function createPathComponent(createElement: (props: P, context: LeafletContextInterface) => LeafletElement, updateElement?: (instance: E, props: P, prevProps: P) => void): import("react").ForwardRefExoticComponent & import("react").RefAttributes>; +export declare function createTileLayerComponent(createElement: (props: P, context: LeafletContextInterface) => LeafletElement, updateElement?: (instance: E, props: P, prevProps: P) => void): import("react").ForwardRefExoticComponent & import("react").RefAttributes>; +export {}; diff --git a/node_modules/@react-leaflet/core/lib/generic.js b/node_modules/@react-leaflet/core/lib/generic.js new file mode 100644 index 00000000..e8930665 --- /dev/null +++ b/node_modules/@react-leaflet/core/lib/generic.js @@ -0,0 +1,34 @@ +import { createContainerComponent, createDivOverlayComponent, createLeafComponent } from './component.js'; +import { createControlHook } from './control.js'; +import { createElementHook, createElementObject } from './element.js'; +import { createLayerHook } from './layer.js'; +import { createDivOverlayHook } from './div-overlay.js'; +import { createPathHook } from './path.js'; +export function createControlComponent(createInstance) { + function createElement(props, context) { + return createElementObject(createInstance(props), context); + } + const useElement = createElementHook(createElement); + const useControl = createControlHook(useElement); + return createLeafComponent(useControl); +} +export function createLayerComponent(createElement, updateElement) { + const useElement = createElementHook(createElement, updateElement); + const useLayer = createLayerHook(useElement); + return createContainerComponent(useLayer); +} +export function createOverlayComponent(createElement, useLifecycle) { + const useElement = createElementHook(createElement); + const useOverlay = createDivOverlayHook(useElement, useLifecycle); + return createDivOverlayComponent(useOverlay); +} +export function createPathComponent(createElement, updateElement) { + const useElement = createElementHook(createElement, updateElement); + const usePath = createPathHook(useElement); + return createContainerComponent(usePath); +} +export function createTileLayerComponent(createElement, updateElement) { + const useElement = createElementHook(createElement, updateElement); + const useLayer = createLayerHook(useElement); + return createLeafComponent(useLayer); +} diff --git a/node_modules/@react-leaflet/core/lib/grid-layer.d.ts b/node_modules/@react-leaflet/core/lib/grid-layer.d.ts new file mode 100644 index 00000000..b676e902 --- /dev/null +++ b/node_modules/@react-leaflet/core/lib/grid-layer.d.ts @@ -0,0 +1,2 @@ +import type { GridLayer, GridLayerOptions } from 'leaflet'; +export declare function updateGridLayer(layer: E, props: P, prevProps: P): void; diff --git a/node_modules/@react-leaflet/core/lib/grid-layer.js b/node_modules/@react-leaflet/core/lib/grid-layer.js new file mode 100644 index 00000000..81526cd7 --- /dev/null +++ b/node_modules/@react-leaflet/core/lib/grid-layer.js @@ -0,0 +1,9 @@ +export function updateGridLayer(layer, props, prevProps) { + const { opacity , zIndex } = props; + if (opacity != null && opacity !== prevProps.opacity) { + layer.setOpacity(opacity); + } + if (zIndex != null && zIndex !== prevProps.zIndex) { + layer.setZIndex(zIndex); + } +} diff --git a/node_modules/@react-leaflet/core/lib/index.d.ts b/node_modules/@react-leaflet/core/lib/index.d.ts new file mode 100644 index 00000000..0ce757d2 --- /dev/null +++ b/node_modules/@react-leaflet/core/lib/index.d.ts @@ -0,0 +1,15 @@ +export { useAttribution } from './attribution.js'; +export { type CircleMarkerProps, type CircleProps, updateCircle, } from './circle.js'; +export { createContainerComponent, createDivOverlayComponent, createLeafComponent, } from './component.js'; +export { CONTEXT_VERSION, type LeafletContextInterface, LeafletContext, LeafletProvider, createLeafletContext, extendContext, useLeafletContext, } from './context.js'; +export { createControlHook } from './control.js'; +export { type DivOverlayHook, type DivOverlayLifecycleHook, type SetOpenFunc, createDivOverlayHook, } from './div-overlay.js'; +export { addClassName, removeClassName, updateClassName } from './dom.js'; +export { type ElementHook, type LeafletElement, createElementHook, createElementObject, } from './element.js'; +export { type EventedProps, useEventHandlers } from './events.js'; +export { createControlComponent, createLayerComponent, createOverlayComponent, createPathComponent, createTileLayerComponent, } from './generic.js'; +export { updateGridLayer } from './grid-layer.js'; +export { type InteractiveLayerProps, type LayerProps, createLayerHook, useLayerLifecycle, } from './layer.js'; +export { type MediaOverlayProps, updateMediaOverlay } from './media-overlay.js'; +export { withPane } from './pane.js'; +export { type PathProps, createPathHook, usePathOptions } from './path.js'; diff --git a/node_modules/@react-leaflet/core/lib/index.js b/node_modules/@react-leaflet/core/lib/index.js new file mode 100644 index 00000000..69dff411 --- /dev/null +++ b/node_modules/@react-leaflet/core/lib/index.js @@ -0,0 +1,15 @@ +export { useAttribution } from './attribution.js'; +export { updateCircle } from './circle.js'; +export { createContainerComponent, createDivOverlayComponent, createLeafComponent } from './component.js'; +export { CONTEXT_VERSION, LeafletContext, LeafletProvider, createLeafletContext, extendContext, useLeafletContext } from './context.js'; +export { createControlHook } from './control.js'; +export { createDivOverlayHook } from './div-overlay.js'; +export { addClassName, removeClassName, updateClassName } from './dom.js'; +export { createElementHook, createElementObject } from './element.js'; +export { useEventHandlers } from './events.js'; +export { createControlComponent, createLayerComponent, createOverlayComponent, createPathComponent, createTileLayerComponent } from './generic.js'; +export { updateGridLayer } from './grid-layer.js'; +export { createLayerHook, useLayerLifecycle } from './layer.js'; +export { updateMediaOverlay } from './media-overlay.js'; +export { withPane } from './pane.js'; +export { createPathHook, usePathOptions } from './path.js'; diff --git a/node_modules/@react-leaflet/core/lib/layer.d.ts b/node_modules/@react-leaflet/core/lib/layer.d.ts new file mode 100644 index 00000000..148bc6a3 --- /dev/null +++ b/node_modules/@react-leaflet/core/lib/layer.d.ts @@ -0,0 +1,10 @@ +import type { InteractiveLayerOptions, Layer, LayerOptions } from 'leaflet'; +import { type LeafletContextInterface } from './context.js'; +import type { LeafletElement, ElementHook } from './element.js'; +import { type EventedProps } from './events.js'; +export interface LayerProps extends EventedProps, LayerOptions { +} +export interface InteractiveLayerProps extends LayerProps, InteractiveLayerOptions { +} +export declare function useLayerLifecycle(element: LeafletElement, context: LeafletContextInterface): void; +export declare function createLayerHook(useElement: ElementHook): (props: P) => ReturnType>; diff --git a/node_modules/@react-leaflet/core/lib/layer.js b/node_modules/@react-leaflet/core/lib/layer.js new file mode 100644 index 00000000..6364b3ad --- /dev/null +++ b/node_modules/@react-leaflet/core/lib/layer.js @@ -0,0 +1,28 @@ +import { useEffect } from 'react'; +import { useAttribution } from './attribution.js'; +import { useLeafletContext } from './context.js'; +import { useEventHandlers } from './events.js'; +import { withPane } from './pane.js'; +export function useLayerLifecycle(element, context) { + useEffect(function addLayer() { + const container = context.layerContainer ?? context.map; + container.addLayer(element.instance); + return function removeLayer() { + context.layerContainer?.removeLayer(element.instance); + context.map.removeLayer(element.instance); + }; + }, [ + context, + element + ]); +} +export function createLayerHook(useElement) { + return function useLayer(props) { + const context = useLeafletContext(); + const elementRef = useElement(withPane(props, context), context); + useAttribution(context.map, props.attribution); + useEventHandlers(elementRef.current, props.eventHandlers); + useLayerLifecycle(elementRef.current, context); + return elementRef; + }; +} diff --git a/node_modules/@react-leaflet/core/lib/media-overlay.d.ts b/node_modules/@react-leaflet/core/lib/media-overlay.d.ts new file mode 100644 index 00000000..636962f2 --- /dev/null +++ b/node_modules/@react-leaflet/core/lib/media-overlay.d.ts @@ -0,0 +1,6 @@ +import { type LatLngBoundsExpression, type ImageOverlay as LeafletImageOverlay, type ImageOverlayOptions, type SVGOverlay as LeafletSVGOverlay, type VideoOverlay as LeafletVideoOverlay } from 'leaflet'; +import type { InteractiveLayerProps } from './layer.js'; +export interface MediaOverlayProps extends ImageOverlayOptions, InteractiveLayerProps { + bounds: LatLngBoundsExpression; +} +export declare function updateMediaOverlay(overlay: E, props: P, prevProps: P): void; diff --git a/node_modules/@react-leaflet/core/lib/media-overlay.js b/node_modules/@react-leaflet/core/lib/media-overlay.js new file mode 100644 index 00000000..fc03a12e --- /dev/null +++ b/node_modules/@react-leaflet/core/lib/media-overlay.js @@ -0,0 +1,13 @@ +import { LatLngBounds } from 'leaflet'; +export function updateMediaOverlay(overlay, props, prevProps) { + if (props.bounds instanceof LatLngBounds && props.bounds !== prevProps.bounds) { + overlay.setBounds(props.bounds); + } + if (props.opacity != null && props.opacity !== prevProps.opacity) { + overlay.setOpacity(props.opacity); + } + if (props.zIndex != null && props.zIndex !== prevProps.zIndex) { + // @ts-ignore missing in definition but inherited from ImageOverlay + overlay.setZIndex(props.zIndex); + } +} diff --git a/node_modules/@react-leaflet/core/lib/pane.d.ts b/node_modules/@react-leaflet/core/lib/pane.d.ts new file mode 100644 index 00000000..a8946ea1 --- /dev/null +++ b/node_modules/@react-leaflet/core/lib/pane.d.ts @@ -0,0 +1,3 @@ +import type { LayerOptions } from 'leaflet'; +import type { LeafletContextInterface } from './context.js'; +export declare function withPane

(props: P, context: LeafletContextInterface): P; diff --git a/node_modules/@react-leaflet/core/lib/pane.js b/node_modules/@react-leaflet/core/lib/pane.js new file mode 100644 index 00000000..5673a2cf --- /dev/null +++ b/node_modules/@react-leaflet/core/lib/pane.js @@ -0,0 +1,7 @@ +export function withPane(props, context) { + const pane = props.pane ?? context.pane; + return pane ? { + ...props, + pane + } : props; +} diff --git a/node_modules/@react-leaflet/core/lib/path.d.ts b/node_modules/@react-leaflet/core/lib/path.d.ts new file mode 100644 index 00000000..17d66adb --- /dev/null +++ b/node_modules/@react-leaflet/core/lib/path.d.ts @@ -0,0 +1,8 @@ +import type { FeatureGroup, Path, PathOptions } from 'leaflet'; +import type { LeafletElement, ElementHook } from './element.js'; +import { type InteractiveLayerProps } from './layer.js'; +export interface PathProps extends InteractiveLayerProps { + pathOptions?: PathOptions; +} +export declare function usePathOptions(element: LeafletElement, props: PathProps): void; +export declare function createPathHook(useElement: ElementHook): (props: P) => ReturnType>; diff --git a/node_modules/@react-leaflet/core/lib/path.js b/node_modules/@react-leaflet/core/lib/path.js new file mode 100644 index 00000000..636a448a --- /dev/null +++ b/node_modules/@react-leaflet/core/lib/path.js @@ -0,0 +1,28 @@ +import { useEffect, useRef } from 'react'; +import { useLeafletContext } from './context.js'; +import { useEventHandlers } from './events.js'; +import { useLayerLifecycle } from './layer.js'; +import { withPane } from './pane.js'; +export function usePathOptions(element, props) { + const optionsRef = useRef(); + useEffect(function updatePathOptions() { + if (props.pathOptions !== optionsRef.current) { + const options = props.pathOptions ?? {}; + element.instance.setStyle(options); + optionsRef.current = options; + } + }, [ + element, + props + ]); +} +export function createPathHook(useElement) { + return function usePath(props) { + const context = useLeafletContext(); + const elementRef = useElement(withPane(props, context), context); + useEventHandlers(elementRef.current, props.eventHandlers); + useLayerLifecycle(elementRef.current, context); + usePathOptions(elementRef.current, props); + return elementRef; + }; +} diff --git a/node_modules/@react-leaflet/core/package.json b/node_modules/@react-leaflet/core/package.json new file mode 100644 index 00000000..924b5880 --- /dev/null +++ b/node_modules/@react-leaflet/core/package.json @@ -0,0 +1,66 @@ +{ + "name": "@react-leaflet/core", + "version": "2.1.0", + "description": "React Leaflet core", + "repository": { + "type": "git", + "url": "https://github.com/PaulLeCam/react-leaflet.git" + }, + "keywords": [ + "react-component", + "react", + "leaflet", + "map" + ], + "author": "Paul Le Cam ", + "license": "Hippocratic-2.1", + "bugs": { + "url": "https://github.com/PaulLeCam/react-leaflet/issues" + }, + "homepage": "https://react-leaflet.js.org/docs/core-introduction", + "type": "module", + "main": "lib/index.js", + "types": "lib/index.d.ts", + "exports": { + ".": "./lib/index.js" + }, + "files": [ + "lib/*" + ], + "sideEffects": false, + "peerDependencies": { + "leaflet": "^1.9.0", + "react": "^18.0.0", + "react-dom": "^18.0.0" + }, + "devDependencies": { + "@types/react": "^18.0.21", + "@types/react-dom": "^18.0.6" + }, + "jest": { + "extensionsToTreatAsEsm": [ + ".ts", + ".tsx" + ], + "resolver": "ts-jest-resolver", + "testEnvironment": "jsdom", + "transform": { + "^.+\\.(t|j)sx?$": [ + "@swc/jest", + { + "root": "../.." + } + ] + } + }, + "scripts": { + "build:clean": "del lib", + "build:js": "swc src -d ./lib --config-file ../../.swcrc", + "build:types": "tsc --emitDeclarationOnly", + "build": "pnpm run build:clean && pnpm run build:types && pnpm run build:js", + "test:types": "tsc --noEmit", + "test:unit": "cross-env NODE_ENV=test jest", + "test": "pnpm run test:types && pnpm run test:unit", + "start": "pnpm run test && pnpm run build" + } +} \ No newline at end of file diff --git a/node_modules/@types/geojson/LICENSE b/node_modules/@types/geojson/LICENSE new file mode 100644 index 00000000..9e841e7a --- /dev/null +++ b/node_modules/@types/geojson/LICENSE @@ -0,0 +1,21 @@ + MIT License + + Copyright (c) Microsoft Corporation. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE diff --git a/node_modules/@types/geojson/README.md b/node_modules/@types/geojson/README.md new file mode 100644 index 00000000..0497bc5e --- /dev/null +++ b/node_modules/@types/geojson/README.md @@ -0,0 +1,15 @@ +# Installation +> `npm install --save @types/geojson` + +# Summary +This package contains type definitions for geojson (https://geojson.org/). + +# Details +Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/geojson. + +### Additional Details + * Last updated: Thu, 23 Jan 2025 18:36:51 GMT + * Dependencies: none + +# Credits +These definitions were written by [Jacob Bruun](https://github.com/cobster), [Arne Schubert](https://github.com/atd-schubert), [Jeff Jacobson](https://github.com/JeffJacobson), [Ilia Choly](https://github.com/icholy), and [Dan Vanderkam](https://github.com/danvk). diff --git a/node_modules/@types/geojson/index.d.ts b/node_modules/@types/geojson/index.d.ts new file mode 100644 index 00000000..e964ce34 --- /dev/null +++ b/node_modules/@types/geojson/index.d.ts @@ -0,0 +1,202 @@ +// Note: as of the RFC 7946 version of GeoJSON, Coordinate Reference Systems +// are no longer supported. (See https://tools.ietf.org/html/rfc7946#appendix-B)} + +export as namespace GeoJSON; + +/** + * The valid values for the "type" property of GeoJSON geometry objects. + * https://tools.ietf.org/html/rfc7946#section-1.4 + */ +export type GeoJsonGeometryTypes = Geometry["type"]; + +/** + * The value values for the "type" property of GeoJSON Objects. + * https://tools.ietf.org/html/rfc7946#section-1.4 + */ +export type GeoJsonTypes = GeoJSON["type"]; + +/** + * Bounding box + * https://tools.ietf.org/html/rfc7946#section-5 + */ +export type BBox = [number, number, number, number] | [number, number, number, number, number, number]; + +/** + * A Position is an array of coordinates. + * https://tools.ietf.org/html/rfc7946#section-3.1.1 + * Array should contain between two and three elements. + * The previous GeoJSON specification allowed more elements (e.g., which could be used to represent M values), + * but the current specification only allows X, Y, and (optionally) Z to be defined. + * + * Note: the type will not be narrowed down to `[number, number] | [number, number, number]` due to + * marginal benefits and the large impact of breaking change. + * + * See previous discussions on the type narrowing: + * - {@link https://github.com/DefinitelyTyped/DefinitelyTyped/pull/21590|Nov 2017} + * - {@link https://github.com/DefinitelyTyped/DefinitelyTyped/discussions/67773|Dec 2023} + * - {@link https://github.com/DefinitelyTyped/DefinitelyTyped/discussions/71441| Dec 2024} + * + * One can use a + * {@link https://www.typescriptlang.org/docs/handbook/2/narrowing.html#using-type-predicates|user-defined type guard that returns a type predicate} + * to determine if a position is a 2D or 3D position. + * + * @example + * import type { Position } from 'geojson'; + * + * type StrictPosition = [x: number, y: number] | [x: number, y: number, z: number] + * + * function isStrictPosition(position: Position): position is StrictPosition { + * return position.length === 2 || position.length === 3 + * }; + * + * let position: Position = [-116.91, 45.54]; + * + * let x: number; + * let y: number; + * let z: number | undefined; + * + * if (isStrictPosition(position)) { + * // `tsc` would throw an error if we tried to destructure a fourth parameter + * [x, y, z] = position; + * } else { + * throw new TypeError("Position is not a 2D or 3D point"); + * } + */ +export type Position = number[]; + +/** + * The base GeoJSON object. + * https://tools.ietf.org/html/rfc7946#section-3 + * The GeoJSON specification also allows foreign members + * (https://tools.ietf.org/html/rfc7946#section-6.1) + * Developers should use "&" type in TypeScript or extend the interface + * to add these foreign members. + */ +export interface GeoJsonObject { + // Don't include foreign members directly into this type def. + // in order to preserve type safety. + // [key: string]: any; + /** + * Specifies the type of GeoJSON object. + */ + type: GeoJsonTypes; + /** + * Bounding box of the coordinate range of the object's Geometries, Features, or Feature Collections. + * The value of the bbox member is an array of length 2*n where n is the number of dimensions + * represented in the contained geometries, with all axes of the most southwesterly point + * followed by all axes of the more northeasterly point. + * The axes order of a bbox follows the axes order of geometries. + * https://tools.ietf.org/html/rfc7946#section-5 + */ + bbox?: BBox | undefined; +} + +/** + * Union of GeoJSON objects. + */ +export type GeoJSON = + | G + | Feature + | FeatureCollection; + +/** + * Geometry object. + * https://tools.ietf.org/html/rfc7946#section-3 + */ +export type Geometry = Point | MultiPoint | LineString | MultiLineString | Polygon | MultiPolygon | GeometryCollection; +export type GeometryObject = Geometry; + +/** + * Point geometry object. + * https://tools.ietf.org/html/rfc7946#section-3.1.2 + */ +export interface Point extends GeoJsonObject { + type: "Point"; + coordinates: Position; +} + +/** + * MultiPoint geometry object. + * https://tools.ietf.org/html/rfc7946#section-3.1.3 + */ +export interface MultiPoint extends GeoJsonObject { + type: "MultiPoint"; + coordinates: Position[]; +} + +/** + * LineString geometry object. + * https://tools.ietf.org/html/rfc7946#section-3.1.4 + */ +export interface LineString extends GeoJsonObject { + type: "LineString"; + coordinates: Position[]; +} + +/** + * MultiLineString geometry object. + * https://tools.ietf.org/html/rfc7946#section-3.1.5 + */ +export interface MultiLineString extends GeoJsonObject { + type: "MultiLineString"; + coordinates: Position[][]; +} + +/** + * Polygon geometry object. + * https://tools.ietf.org/html/rfc7946#section-3.1.6 + */ +export interface Polygon extends GeoJsonObject { + type: "Polygon"; + coordinates: Position[][]; +} + +/** + * MultiPolygon geometry object. + * https://tools.ietf.org/html/rfc7946#section-3.1.7 + */ +export interface MultiPolygon extends GeoJsonObject { + type: "MultiPolygon"; + coordinates: Position[][][]; +} + +/** + * Geometry Collection + * https://tools.ietf.org/html/rfc7946#section-3.1.8 + */ +export interface GeometryCollection extends GeoJsonObject { + type: "GeometryCollection"; + geometries: G[]; +} + +export type GeoJsonProperties = { [name: string]: any } | null; + +/** + * A feature object which contains a geometry and associated properties. + * https://tools.ietf.org/html/rfc7946#section-3.2 + */ +export interface Feature extends GeoJsonObject { + type: "Feature"; + /** + * The feature's geometry + */ + geometry: G; + /** + * A value that uniquely identifies this feature in a + * https://tools.ietf.org/html/rfc7946#section-3.2. + */ + id?: string | number | undefined; + /** + * Properties associated with this feature. + */ + properties: P; +} + +/** + * A collection of feature objects. + * https://tools.ietf.org/html/rfc7946#section-3.3 + */ +export interface FeatureCollection extends GeoJsonObject { + type: "FeatureCollection"; + features: Array>; +} diff --git a/node_modules/@types/geojson/package.json b/node_modules/@types/geojson/package.json new file mode 100644 index 00000000..f80ca895 --- /dev/null +++ b/node_modules/@types/geojson/package.json @@ -0,0 +1,46 @@ +{ + "name": "@types/geojson", + "version": "7946.0.16", + "description": "TypeScript definitions for geojson", + "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/geojson", + "license": "MIT", + "contributors": [ + { + "name": "Jacob Bruun", + "githubUsername": "cobster", + "url": "https://github.com/cobster" + }, + { + "name": "Arne Schubert", + "githubUsername": "atd-schubert", + "url": "https://github.com/atd-schubert" + }, + { + "name": "Jeff Jacobson", + "githubUsername": "JeffJacobson", + "url": "https://github.com/JeffJacobson" + }, + { + "name": "Ilia Choly", + "githubUsername": "icholy", + "url": "https://github.com/icholy" + }, + { + "name": "Dan Vanderkam", + "githubUsername": "danvk", + "url": "https://github.com/danvk" + } + ], + "main": "", + "types": "index.d.ts", + "repository": { + "type": "git", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git", + "directory": "types/geojson" + }, + "scripts": {}, + "dependencies": {}, + "peerDependencies": {}, + "typesPublisherContentHash": "e7997f4827a9a92b60c7a6cb27e8f18fa760803e9dd021965e95604338b72e88", + "typeScriptVersion": "5.0" +} \ No newline at end of file diff --git a/node_modules/@types/leaflet/LICENSE b/node_modules/@types/leaflet/LICENSE new file mode 100644 index 00000000..9e841e7a --- /dev/null +++ b/node_modules/@types/leaflet/LICENSE @@ -0,0 +1,21 @@ + MIT License + + Copyright (c) Microsoft Corporation. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE diff --git a/node_modules/@types/leaflet/README.md b/node_modules/@types/leaflet/README.md new file mode 100644 index 00000000..06438835 --- /dev/null +++ b/node_modules/@types/leaflet/README.md @@ -0,0 +1,15 @@ +# Installation +> `npm install --save @types/leaflet` + +# Summary +This package contains type definitions for leaflet (https://github.com/Leaflet/Leaflet). + +# Details +Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/leaflet. + +### Additional Details + * Last updated: Sun, 23 Mar 2025 11:02:06 GMT + * Dependencies: [@types/geojson](https://npmjs.com/package/@types/geojson) + +# Credits +These definitions were written by [Alejandro Sánchez](https://github.com/alejo90), [Arne Schubert](https://github.com/atd-schubert), [Michael Auer](https://github.com/mcauer), [Roni Karilkar](https://github.com/ronikar), [Vladimir Dashukevich](https://github.com/life777), [Henry Thasler](https://github.com/henrythasler), [Colin Doig](https://github.com/captain-igloo), and [Hugo Sales](https://github.com/someonewithpc). diff --git a/node_modules/@types/leaflet/index.d.ts b/node_modules/@types/leaflet/index.d.ts new file mode 100644 index 00000000..785fd158 --- /dev/null +++ b/node_modules/@types/leaflet/index.d.ts @@ -0,0 +1,3156 @@ +export as namespace L; + +import * as geojson from "geojson"; + +/** A constant that represents the Leaflet version in use. */ +export const version: string; + +export class Class { + static extend(props: any): { new(...args: any[]): any } & typeof Class; + static include(props: any): any & typeof Class; + static mergeOptions(props: any): any & typeof Class; + + static addInitHook(initHookFn: () => void): any & typeof Class; + static addInitHook(methodName: string, ...args: any[]): any & typeof Class; + + static callInitHooks(): void; +} + +export class Transformation { + constructor(a: number, b: number, c: number, d: number); + transform(point: Point, scale?: number): Point; + untransform(point: Point, scale?: number): Point; +} + +/** Instantiates a Transformation object with the given coefficients. */ +export function transformation(a: number, b: number, c: number, d: number): Transformation; + +/** Expects an coefficients array of the form `[a: Number, b: Number, c: Number, d: Number]`. */ +export function transformation(coefficients: [number, number, number, number]): Transformation; + +/** + * @see https://github.com/Leaflet/Leaflet/blob/bc918d4bdc2ba189807bc207c77080fb41ecc196/src/geometry/LineUtil.js#L118 + */ +export namespace LineUtil { + function simplify(points: Point[], tolerance: number): Point[]; + function pointToSegmentDistance(p: Point, p1: Point, p2: Point): number; + function closestPointOnSegment(p: Point, p1: Point, p2: Point): Point; + function isFlat(latlngs: LatLngExpression[]): boolean; + function clipSegment( + a: Point, + b: Point, + bounds: Bounds, + useLastCode?: boolean, + round?: boolean, + ): [Point, Point] | false; + function polylineCenter(latlngs: LatLngExpression[], crs: CRS): LatLng; +} + +export namespace PolyUtil { + function clipPolygon(points: Point[], bounds: BoundsExpression, round?: boolean): Point[]; + function polygonCenter(latlngs: LatLngExpression[], crs: CRS): LatLng; +} + +export namespace DomUtil { + /** + * Get Element by its ID or with the given HTML-Element + */ + function get(element: string | HTMLElement): HTMLElement | null; + function getStyle(el: HTMLElement, styleAttrib: string): string | null; + /** + * Creates an HTML element with `tagName`, sets its class to `className`, and optionally appends it to `container` element. + * @param tagName The name of the tag to create (for example: `div` or `canvas`). + * @param className The class to set on the created element. + * @param container The container to append the created element to. + */ + function create( + tagName: T, + className?: string, + container?: HTMLElement, + ): HTMLElementTagNameMap[T]; + function create(tagName: string, className?: string, container?: HTMLElement): HTMLElement; + function remove(el: HTMLElement): void; + function empty(el: HTMLElement): void; + function toFront(el: HTMLElement): void; + function toBack(el: HTMLElement): void; + function hasClass(el: HTMLElement, name: string): boolean; + function addClass(el: HTMLElement, name: string): void; + function removeClass(el: HTMLElement, name: string): void; + function setClass(el: HTMLElement, name: string): void; + function getClass(el: HTMLElement): string; + function setOpacity(el: HTMLElement, opacity: number): void; + function testProp(props: string[]): string | false; + function setTransform(el: HTMLElement, offset: Point, scale?: number): void; + function setPosition(el: HTMLElement, position: Point): void; + function getPosition(el: HTMLElement): Point; + function getScale(el: HTMLElement): { x: number; y: number; boundingClientRect: DOMRect }; + function getSizedParentNode(el: HTMLElement): HTMLElement; + function disableTextSelection(): void; + function enableTextSelection(): void; + function disableImageDrag(): void; + function enableImageDrag(): void; + function preventOutline(el: HTMLElement): void; + function restoreOutline(): void; + + let TRANSFORM: string; + let TRANSITION: string; + let TRANSITION_END: string; +} + +export class PosAnimation extends Evented { + run(el: HTMLElement, newPos: Point, duration?: number, easeLinearity?: number): void; + stop(): void; +} + +export interface CRS { + latLngToPoint(latlng: LatLngExpression, zoom: number): Point; + pointToLatLng(point: PointExpression, zoom: number): LatLng; + project(latlng: LatLng | LatLngLiteral): Point; + unproject(point: PointExpression): LatLng; + scale(zoom: number): number; + zoom(scale: number): number; + getProjectedBounds(zoom: number): Bounds; + distance(latlng1: LatLngExpression, latlng2: LatLngExpression): number; + wrapLatLng(latlng: LatLng | LatLngLiteral): LatLng; + + code?: string | undefined; + wrapLng?: [number, number] | undefined; + wrapLat?: [number, number] | undefined; + infinite: boolean; +} + +export namespace CRS { + const EPSG3395: CRS; + const EPSG3857: CRS; + const EPSG4326: CRS; + const EPSG900913: CRS; + const Earth: CRS; + const Simple: CRS; +} + +export interface Projection { + project(latlng: LatLng | LatLngLiteral): Point; + unproject(point: PointExpression): LatLng; + + bounds: Bounds; +} + +export namespace Projection { + const LonLat: Projection; + const Mercator: Projection; + const SphericalMercator: Projection; +} + +export class LatLng { + constructor(latitude: number, longitude: number, altitude?: number); + equals(otherLatLng: LatLngExpression, maxMargin?: number): boolean; + toString(): string; + distanceTo(otherLatLng: LatLngExpression): number; + wrap(): LatLng; + toBounds(sizeInMeters: number): LatLngBounds; + clone(): LatLng; + + lat: number; + lng: number; + alt?: number | undefined; +} + +export interface LatLngLiteral { + lat: number; + lng: number; + alt?: number; +} + +export type LatLngTuple = [number, number, number?]; + +export type LatLngExpression = LatLng | LatLngLiteral | LatLngTuple; + +export function latLng(latitude: number, longitude: number, altitude?: number): LatLng; + +export function latLng( + coords: LatLngTuple | [number, number, number] | LatLngLiteral | { + lat: number; + lng: number; + alt?: number | undefined; + }, +): LatLng; + +export class LatLngBounds { + constructor(southWest: LatLngExpression, northEast: LatLngExpression); + constructor(latlngs: LatLngExpression[]); + extend(latlngOrBounds: LatLngExpression | LatLngBoundsExpression): this; + pad(bufferRatio: number): LatLngBounds; // Returns a new LatLngBounds + getCenter(): LatLng; + getSouthWest(): LatLng; + getNorthEast(): LatLng; + getNorthWest(): LatLng; + getSouthEast(): LatLng; + getWest(): number; + getSouth(): number; + getEast(): number; + getNorth(): number; + contains(otherBoundsOrLatLng: LatLngBoundsExpression | LatLngExpression): boolean; + intersects(otherBounds: LatLngBoundsExpression): boolean; + overlaps(otherBounds: LatLngBoundsExpression): boolean; + toBBoxString(): string; + equals(otherBounds: LatLngBoundsExpression, maxMargin?: number): boolean; + isValid(): boolean; +} + +export type LatLngBoundsLiteral = LatLngTuple[]; // Must be [LatLngTuple, LatLngTuple], cant't change because Map.setMaxBounds + +export type LatLngBoundsExpression = LatLngBounds | LatLngBoundsLiteral; + +export function latLngBounds(southWest: LatLngExpression, northEast: LatLngExpression): LatLngBounds; + +export function latLngBounds(latlngs: LatLngExpression[]): LatLngBounds; + +export type PointTuple = [number, number]; + +export class Point { + constructor(x: number, y: number, round?: boolean); + clone(): Point; + add(otherPoint: PointExpression): Point; // non-destructive, returns a new point + subtract(otherPoint: PointExpression): Point; + divideBy(num: number): Point; + multiplyBy(num: number): Point; + scaleBy(scale: PointExpression): Point; + unscaleBy(scale: PointExpression): Point; + round(): Point; + floor(): Point; + ceil(): Point; + trunc(): Point; + distanceTo(otherPoint: PointExpression): number; + equals(otherPoint: PointExpression): boolean; + contains(otherPoint: PointExpression): boolean; + toString(): string; + x: number; + y: number; +} + +export interface Coords extends Point { + z: number; +} + +export type PointExpression = Point | PointTuple; + +export function point(x: number, y: number, round?: boolean): Point; + +export function point(coords: PointTuple | { x: number; y: number }): Point; + +export type BoundsLiteral = [PointTuple, PointTuple]; + +export class Bounds { + constructor(topLeft: PointExpression, bottomRight: PointExpression); + constructor(points?: Point[] | BoundsLiteral); + + // tslint:disable:unified-signatures + extend(point: PointExpression): this; + extend(otherBounds: BoundsExpression): this; + // tslint:enable:unified-signatures + + getCenter(round?: boolean): Point; + getBottomLeft(): Point; + getBottomRight(): Point; + getTopLeft(): Point; + getTopRight(): Point; + getSize(): Point; + contains(pointOrBounds: BoundsExpression | PointExpression): boolean; + intersects(otherBounds: BoundsExpression): boolean; + overlaps(otherBounds: BoundsExpression): boolean; + isValid(): boolean; + pad(bufferRatio: number): Bounds; // Returns a new Bounds + equals(otherBounds: BoundsExpression): boolean; + + min?: Point | undefined; + max?: Point | undefined; +} + +export type BoundsExpression = Bounds | BoundsLiteral; + +export function bounds(topLeft: PointExpression, bottomRight: PointExpression): Bounds; + +export function bounds(points: Point[] | BoundsLiteral): Bounds; + +// Event handler types + +export type LeafletEventHandlerFn = (event: LeafletEvent) => void; + +export type LayersControlEventHandlerFn = (event: LayersControlEvent) => void; + +export type LayerEventHandlerFn = (event: LayerEvent) => void; + +export type ResizeEventHandlerFn = (event: ResizeEvent) => void; + +export type PopupEventHandlerFn = (event: PopupEvent) => void; + +export type TooltipEventHandlerFn = (event: TooltipEvent) => void; + +export type ErrorEventHandlerFn = (event: ErrorEvent) => void; + +export type LocationEventHandlerFn = (event: LocationEvent) => void; + +export type LeafletMouseEventHandlerFn = (event: LeafletMouseEvent) => void; + +export type LeafletKeyboardEventHandlerFn = (event: LeafletKeyboardEvent) => void; + +export type ZoomAnimEventHandlerFn = (event: ZoomAnimEvent) => void; + +export type DragEndEventHandlerFn = (event: DragEndEvent) => void; + +export type TileEventHandlerFn = (event: TileEvent) => void; + +export type TileErrorEventHandlerFn = (event: TileErrorEvent) => void; + +export interface LeafletEventHandlerFnMap { + baselayerchange?: LayersControlEventHandlerFn | undefined; + overlayadd?: LayersControlEventHandlerFn | undefined; + overlayremove?: LayersControlEventHandlerFn | undefined; + + layeradd?: LayerEventHandlerFn | undefined; + layerremove?: LayerEventHandlerFn | undefined; + + zoomlevelschange?: LeafletEventHandlerFn | undefined; + unload?: LeafletEventHandlerFn | undefined; + viewreset?: LeafletEventHandlerFn | undefined; + load?: LeafletEventHandlerFn | undefined; + zoomstart?: LeafletEventHandlerFn | undefined; + movestart?: LeafletEventHandlerFn | undefined; + zoom?: LeafletEventHandlerFn | undefined; + move?: LeafletEventHandlerFn | undefined; + zoomend?: LeafletEventHandlerFn | undefined; + moveend?: LeafletEventHandlerFn | undefined; + autopanstart?: LeafletEventHandlerFn | undefined; + dragstart?: LeafletEventHandlerFn | undefined; + drag?: LeafletEventHandlerFn | undefined; + add?: LeafletEventHandlerFn | undefined; + remove?: LeafletEventHandlerFn | undefined; + loading?: LeafletEventHandlerFn | undefined; + error?: LeafletEventHandlerFn | undefined; + update?: LeafletEventHandlerFn | undefined; + down?: LeafletEventHandlerFn | undefined; + predrag?: LeafletEventHandlerFn | undefined; + + resize?: ResizeEventHandlerFn | undefined; + + popupopen?: PopupEventHandlerFn | undefined; + popupclose?: PopupEventHandlerFn | undefined; + + tooltipopen?: TooltipEventHandlerFn | undefined; + tooltipclose?: TooltipEventHandlerFn | undefined; + + locationerror?: ErrorEventHandlerFn | undefined; + + locationfound?: LocationEventHandlerFn | undefined; + + click?: LeafletMouseEventHandlerFn | undefined; + dblclick?: LeafletMouseEventHandlerFn | undefined; + mousedown?: LeafletMouseEventHandlerFn | undefined; + mouseup?: LeafletMouseEventHandlerFn | undefined; + mouseover?: LeafletMouseEventHandlerFn | undefined; + mouseout?: LeafletMouseEventHandlerFn | undefined; + mousemove?: LeafletMouseEventHandlerFn | undefined; + contextmenu?: LeafletMouseEventHandlerFn | undefined; + preclick?: LeafletMouseEventHandlerFn | undefined; + + keypress?: LeafletKeyboardEventHandlerFn | undefined; + keydown?: LeafletKeyboardEventHandlerFn | undefined; + keyup?: LeafletKeyboardEventHandlerFn | undefined; + + zoomanim?: ZoomAnimEventHandlerFn | undefined; + + dragend?: DragEndEventHandlerFn | undefined; + + tileunload?: TileEventHandlerFn | undefined; + tileloadstart?: TileEventHandlerFn | undefined; + tileload?: TileEventHandlerFn | undefined; + tileabort?: TileEventHandlerFn | undefined; + + tileerror?: TileErrorEventHandlerFn | undefined; + + // [name: string]: any; + // You are able add additional properties, but it makes this interface uncheckable. +} + +/** + * A set of methods shared between event-powered classes (like Map and Marker). + * Generally, events allow you to execute some function when something happens + * with an object (e.g. the user clicks on the map, causing the map to fire + * 'click' event). + */ +// eslint-disable-next-line @definitelytyped/strict-export-declare-modifiers +declare class Events { + /** + * Adds a listener function (fn) to a particular event type of the object. + * You can optionally specify the context of the listener (object the this + * keyword will point to). You can also pass several space-separated types + * (e.g. 'click dblclick'). + */ + // tslint:disable:unified-signatures + on(type: "baselayerchange" | "overlayadd" | "overlayremove", fn: LayersControlEventHandlerFn, context?: any): this; + on(type: "layeradd" | "layerremove", fn: LayerEventHandlerFn, context?: any): this; + on( + type: + | "zoomlevelschange" + | "unload" + | "viewreset" + | "load" + | "zoomstart" + | "movestart" + | "zoom" + | "move" + | "zoomend" + | "moveend" + | "autopanstart" + | "dragstart" + | "drag" + | "add" + | "remove" + | "loading" + | "error" + | "update" + | "down" + | "predrag", + fn: LeafletEventHandlerFn, + context?: any, + ): this; + on(type: "resize", fn: ResizeEventHandlerFn, context?: any): this; + on(type: "popupopen" | "popupclose", fn: PopupEventHandlerFn, context?: any): this; + on(type: "tooltipopen" | "tooltipclose", fn: TooltipEventHandlerFn, context?: any): this; + on(type: "locationerror", fn: ErrorEventHandlerFn, context?: any): this; + on(type: "locationfound", fn: LocationEventHandlerFn, context?: any): this; + on( + type: + | "click" + | "dblclick" + | "mousedown" + | "mouseup" + | "mouseover" + | "mouseout" + | "mousemove" + | "contextmenu" + | "preclick", + fn: LeafletMouseEventHandlerFn, + context?: any, + ): this; + on(type: "keypress" | "keydown" | "keyup", fn: LeafletKeyboardEventHandlerFn, context?: any): this; + on(type: "zoomanim", fn: ZoomAnimEventHandlerFn, context?: any): this; + on(type: "dragend", fn: DragEndEventHandlerFn, context?: any): this; + on(type: "tileunload" | "tileloadstart" | "tileload" | "tileabort", fn: TileEventHandlerFn, context?: any): this; + on(type: "tileerror", fn: TileErrorEventHandlerFn, context?: any): this; + on(type: string, fn: LeafletEventHandlerFn, context?: any): this; + + /** + * Adds a set of type/listener pairs, e.g. {click: onClick, mousemove: onMouseMove} + */ + on(eventMap: LeafletEventHandlerFnMap): this; + // tslint:enable:unified-signatures + + /** + * Removes a previously added listener function. If no function is specified, + * it will remove all the listeners of that particular event from the object. + * Note that if you passed a custom context to on, you must pass the same context + * to off in order to remove the listener. + */ + // tslint:disable:unified-signatures + off( + type: "baselayerchange" | "overlayadd" | "overlayremove", + fn?: LayersControlEventHandlerFn, + context?: any, + ): this; + off(type: "layeradd" | "layerremove", fn?: LayerEventHandlerFn, context?: any): this; + off( + type: + | "zoomlevelschange" + | "unload" + | "viewreset" + | "load" + | "zoomstart" + | "movestart" + | "zoom" + | "move" + | "zoomend" + | "moveend" + | "autopanstart" + | "dragstart" + | "drag" + | "add" + | "remove" + | "loading" + | "error" + | "update" + | "down" + | "predrag", + fn?: LeafletEventHandlerFn, + context?: any, + ): this; + off(type: "resize", fn?: ResizeEventHandlerFn, context?: any): this; + off(type: "popupopen" | "popupclose", fn?: PopupEventHandlerFn, context?: any): this; + off(type: "tooltipopen" | "tooltipclose", fn?: TooltipEventHandlerFn, context?: any): this; + off(type: "locationerror", fn?: ErrorEventHandlerFn, context?: any): this; + off(type: "locationfound", fn?: LocationEventHandlerFn, context?: any): this; + off( + type: + | "click" + | "dblclick" + | "mousedown" + | "mouseup" + | "mouseover" + | "mouseout" + | "mousemove" + | "contextmenu" + | "preclick", + fn?: LeafletMouseEventHandlerFn, + context?: any, + ): this; + off(type: "keypress" | "keydown" | "keyup", fn?: LeafletKeyboardEventHandlerFn, context?: any): this; + off(type: "zoomanim", fn?: ZoomAnimEventHandlerFn, context?: any): this; + off(type: "dragend", fn?: DragEndEventHandlerFn, context?: any): this; + off(type: "tileunload" | "tileloadstart" | "tileload" | "tileabort", fn?: TileEventHandlerFn, context?: any): this; + off(type: "tileerror", fn?: TileErrorEventHandlerFn, context?: any): this; + off(type: string, fn?: LeafletEventHandlerFn, context?: any): this; + + /** + * Removes a set of type/listener pairs. + */ + // With an eventMap there are no additional arguments allowed + off(eventMap: LeafletEventHandlerFnMap): this; + + /** + * Removes all listeners to all events on the object. + */ + off(): this; + // tslint:enable:unified-signatures + + /** + * Fires an event of the specified type. You can optionally provide a data + * object — the first argument of the listener function will contain its properties. + * The event might can optionally be propagated to event parents. + */ + fire(type: string, data?: any, propagate?: boolean): this; + + /** + * Returns true if a particular event type has any listeners attached to it. + */ + // tslint:disable:unified-signatures + listens( + type: + | "baselayerchange" + | "overlayadd" + | "overlayremove" + | "layeradd" + | "layerremove" + | "zoomlevelschange" + | "unload" + | "viewreset" + | "load" + | "zoomstart" + | "movestart" + | "zoom" + | "move" + | "zoomend" + | "moveend" + | "autopanstart" + | "dragstart" + | "drag" + | "add" + | "remove" + | "loading" + | "error" + | "update" + | "down" + | "predrag" + | "resize" + | "popupopen" + | "tooltipopen" + | "tooltipclose" + | "locationerror" + | "locationfound" + | "click" + | "dblclick" + | "mousedown" + | "mouseup" + | "mouseover" + | "mouseout" + | "mousemove" + | "contextmenu" + | "preclick" + | "keypress" + | "keydown" + | "keyup" + | "zoomanim" + | "dragend" + | "tileunload" + | "tileloadstart" + | "tileload" + | "tileabort" + | "tileerror", + propagate?: boolean, + ): boolean; + + listens( + type: "baselayerchange" | "overlayadd" | "overlayremove", + fn: LayersControlEventHandlerFn, + context?: any, + propagate?: boolean, + ): boolean; + listens(type: "layeradd" | "layerremove", fn: LayerEventHandlerFn, context?: any, propagate?: boolean): boolean; + listens( + type: + | "zoomlevelschange" + | "unload" + | "viewreset" + | "load" + | "zoomstart" + | "movestart" + | "zoom" + | "move" + | "zoomend" + | "moveend" + | "autopanstart" + | "dragstart" + | "drag" + | "add" + | "remove" + | "loading" + | "error" + | "update" + | "down" + | "predrag", + fn: LeafletEventHandlerFn, + context?: any, + propagate?: boolean, + ): boolean; + listens(type: "resize", fn: ResizeEventHandlerFn, context?: any, propagate?: boolean): boolean; + listens(type: "popupopen" | "popupclose", fn: PopupEventHandlerFn, context?: any, propagate?: boolean): boolean; + listens( + type: "tooltipopen" | "tooltipclose", + fn: TooltipEventHandlerFn, + context?: any, + propagate?: boolean, + ): boolean; + listens(type: "locationerror", fn: ErrorEventHandlerFn, context?: any, propagate?: boolean): boolean; + listens(type: "locationfound", fn: LocationEventHandlerFn, context?: any, propagate?: boolean): boolean; + listens( + type: + | "click" + | "dblclick" + | "mousedown" + | "mouseup" + | "mouseover" + | "mouseout" + | "mousemove" + | "contextmenu" + | "preclick", + fn: LeafletMouseEventHandlerFn, + context?: any, + propagate?: boolean, + ): boolean; + listens( + type: "keypress" | "keydown" | "keyup", + fn: LeafletKeyboardEventHandlerFn, + context?: any, + propagate?: boolean, + ): boolean; + listens(type: "zoomanim", fn: ZoomAnimEventHandlerFn, context?: any, propagate?: boolean): boolean; + listens(type: "dragend", fn: DragEndEventHandlerFn, context?: any, propagate?: boolean): boolean; + listens( + type: "tileunload" | "tileloadstart" | "tileload" | "tileabort", + fn: TileEventHandlerFn, + context?: any, + propagate?: boolean, + ): boolean; + listens(type: "tileerror", fn: TileEventHandlerFn, context?: any, propagate?: boolean): boolean; + listens(type: string, fn: LeafletEventHandlerFn, context?: any, propagate?: boolean): boolean; + + /** + * Behaves as on(...), except the listener will only get fired once and then removed. + */ + // tslint:disable:unified-signatures + once( + type: "baselayerchange" | "overlayadd" | "overlayremove", + fn: LayersControlEventHandlerFn, + context?: any, + ): this; + once(type: "layeradd" | "layerremove", fn: LayerEventHandlerFn, context?: any): this; + once( + type: + | "zoomlevelschange" + | "unload" + | "viewreset" + | "load" + | "zoomstart" + | "movestart" + | "zoom" + | "move" + | "zoomend" + | "moveend" + | "autopanstart" + | "dragstart" + | "drag" + | "add" + | "remove" + | "loading" + | "error" + | "update" + | "down" + | "predrag", + fn: LeafletEventHandlerFn, + context?: any, + ): this; + once(type: "resize", fn: ResizeEventHandlerFn, context?: any): this; + once(type: "popupopen" | "popupclose", fn: PopupEventHandlerFn, context?: any): this; + once(type: "tooltipopen" | "tooltipclose", fn: TooltipEventHandlerFn, context?: any): this; + once(type: "locationerror", fn: ErrorEventHandlerFn, context?: any): this; + once(type: "locationfound", fn: LocationEventHandlerFn, context?: any): this; + once( + type: + | "click" + | "dblclick" + | "mousedown" + | "mouseup" + | "mouseover" + | "mouseout" + | "mousemove" + | "contextmenu" + | "preclick", + fn: LeafletMouseEventHandlerFn, + context?: any, + ): this; + once(type: "keypress" | "keydown" | "keyup", fn: LeafletKeyboardEventHandlerFn, context?: any): this; + once(type: "zoomanim", fn: ZoomAnimEventHandlerFn, context?: any): this; + once(type: "dragend", fn: DragEndEventHandlerFn, context?: any): this; + once(type: "tileunload" | "tileloadstart" | "tileload" | "tileabort", fn: TileEventHandlerFn, context?: any): this; + once(type: "tileerror", fn: TileEventHandlerFn, context?: any): this; + once(type: string, fn: LeafletEventHandlerFn, context?: any): this; + + /** + * Behaves as on(...), except the listener will only get fired once and then removed. + */ + once(eventMap: LeafletEventHandlerFnMap): this; + // tslint:enable:unified-signatures + + /** + * Adds an event parent - an Evented that will receive propagated events + */ + addEventParent(obj: Evented): this; + + /** + * Removes an event parent, so it will stop receiving propagated events + */ + removeEventParent(obj: Evented): this; + + /** + * Alias for on(...) + * + * Adds a listener function (fn) to a particular event type of the object. + * You can optionally specify the context of the listener (object the this + * keyword will point to). You can also pass several space-separated types + * (e.g. 'click dblclick'). + */ + // tslint:disable:unified-signatures + addEventListener( + type: "baselayerchange" | "overlayadd" | "overlayremove", + fn: LayersControlEventHandlerFn, + context?: any, + ): this; + addEventListener(type: "layeradd" | "layerremove", fn: LayerEventHandlerFn, context?: any): this; + addEventListener( + type: + | "zoomlevelschange" + | "unload" + | "viewreset" + | "load" + | "zoomstart" + | "movestart" + | "zoom" + | "move" + | "zoomend" + | "moveend" + | "autopanstart" + | "dragstart" + | "drag" + | "add" + | "remove" + | "loading" + | "error" + | "update" + | "down" + | "predrag", + fn: LeafletEventHandlerFn, + context?: any, + ): this; + addEventListener(type: "resize", fn: ResizeEventHandlerFn, context?: any): this; + addEventListener(type: "popupopen" | "popupclose", fn: PopupEventHandlerFn, context?: any): this; + addEventListener(type: "tooltipopen" | "tooltipclose", fn: TooltipEventHandlerFn, context?: any): this; + addEventListener(type: "locationerror", fn: ErrorEventHandlerFn, context?: any): this; + addEventListener(type: "locationfound", fn: LocationEventHandlerFn, context?: any): this; + addEventListener( + type: + | "click" + | "dblclick" + | "mousedown" + | "mouseup" + | "mouseover" + | "mouseout" + | "mousemove" + | "contextmenu" + | "preclick", + fn: LeafletMouseEventHandlerFn, + context?: any, + ): this; + addEventListener(type: "keypress" | "keydown" | "keyup", fn: LeafletKeyboardEventHandlerFn, context?: any): this; + addEventListener(type: "zoomanim", fn: ZoomAnimEventHandlerFn, context?: any): this; + addEventListener(type: "dragend", fn: DragEndEventHandlerFn, context?: any): this; + addEventListener( + type: "tileunload" | "tileloadstart" | "tileload" | "tileabort", + fn: TileEventHandlerFn, + context?: any, + ): this; + addEventListener(type: "tileerror", fn: TileErrorEventHandlerFn, context?: any): this; + addEventListener(type: string, fn: LeafletEventHandlerFn, context?: any): this; + + /** + * Alias for on(...) + * + * Adds a set of type/listener pairs, e.g. {click: onClick, mousemove: onMouseMove} + */ + addEventListener(eventMap: LeafletEventHandlerFnMap): this; + // tslint:enable:unified-signatures + + /** + * Alias for off(...) + * + * Removes a previously added listener function. If no function is specified, + * it will remove all the listeners of that particular event from the object. + * Note that if you passed a custom context to on, you must pass the same context + * to off in order to remove the listener. + */ + // tslint:disable:unified-signatures + removeEventListener( + type: "baselayerchange" | "overlayadd" | "overlayremove", + fn?: LayersControlEventHandlerFn, + context?: any, + ): this; + removeEventListener(type: "layeradd" | "layerremove", fn?: LayerEventHandlerFn, context?: any): this; + removeEventListener( + type: + | "zoomlevelschange" + | "unload" + | "viewreset" + | "load" + | "zoomstart" + | "movestart" + | "zoom" + | "move" + | "zoomend" + | "moveend" + | "autopanstart" + | "dragstart" + | "drag" + | "add" + | "remove" + | "loading" + | "error" + | "update" + | "down" + | "predrag", + fn?: LeafletEventHandlerFn, + context?: any, + ): this; + removeEventListener(type: "resize", fn?: ResizeEventHandlerFn, context?: any): this; + removeEventListener(type: "popupopen" | "popupclose", fn?: PopupEventHandlerFn, context?: any): this; + removeEventListener(type: "tooltipopen" | "tooltipclose", fn?: TooltipEventHandlerFn, context?: any): this; + removeEventListener(type: "locationerror", fn?: ErrorEventHandlerFn, context?: any): this; + removeEventListener(type: "locationfound", fn?: LocationEventHandlerFn, context?: any): this; + removeEventListener( + type: + | "click" + | "dblclick" + | "mousedown" + | "mouseup" + | "mouseover" + | "mouseout" + | "mousemove" + | "contextmenu" + | "preclick", + fn?: LeafletMouseEventHandlerFn, + context?: any, + ): this; + removeEventListener( + type: "keypress" | "keydown" | "keyup", + fn?: LeafletKeyboardEventHandlerFn, + context?: any, + ): this; + removeEventListener(type: "zoomanim", fn?: ZoomAnimEventHandlerFn, context?: any): this; + removeEventListener(type: "dragend", fn?: DragEndEventHandlerFn, context?: any): this; + removeEventListener( + type: "tileunload" | "tileloadstart" | "tileload" | "tileabort", + fn?: TileEventHandlerFn, + context?: any, + ): this; + removeEventListener(type: "tileerror", fn?: TileErrorEventHandlerFn, context?: any): this; + removeEventListener(type: string, fn?: LeafletEventHandlerFn, context?: any): this; + + /** + * Alias for off(...) + * + * Removes a set of type/listener pairs. + */ + removeEventListener(eventMap: LeafletEventHandlerFnMap): this; + // tslint:enable:unified-signatures + + /** + * Alias for off() + * + * Removes all listeners to all events on the object. + */ + clearAllEventListeners(): this; + + /** + * Alias for once(...) + * + * Behaves as on(...), except the listener will only get fired once and then removed. + */ + // tslint:disable:unified-signatures + addOneTimeEventListener( + type: "baselayerchange" | "overlayadd" | "overlayremove", + fn: LayersControlEventHandlerFn, + context?: any, + ): this; + addOneTimeEventListener(type: "layeradd" | "layerremove", fn: LayerEventHandlerFn, context?: any): this; + addOneTimeEventListener( + type: + | "zoomlevelschange" + | "unload" + | "viewreset" + | "load" + | "zoomstart" + | "movestart" + | "zoom" + | "move" + | "zoomend" + | "moveend" + | "autopanstart" + | "dragstart" + | "drag" + | "add" + | "remove" + | "loading" + | "error" + | "update" + | "down" + | "predrag", + fn: LeafletEventHandlerFn, + context?: any, + ): this; + addOneTimeEventListener(type: "resize", fn: ResizeEventHandlerFn, context?: any): this; + addOneTimeEventListener(type: "popupopen" | "popupclose", fn: PopupEventHandlerFn, context?: any): this; + addOneTimeEventListener(type: "tooltipopen" | "tooltipclose", fn: TooltipEventHandlerFn, context?: any): this; + addOneTimeEventListener(type: "locationerror", fn: ErrorEventHandlerFn, context?: any): this; + addOneTimeEventListener(type: "locationfound", fn: LocationEventHandlerFn, context?: any): this; + addOneTimeEventListener( + type: + | "click" + | "dblclick" + | "mousedown" + | "mouseup" + | "mouseover" + | "mouseout" + | "mousemove" + | "contextmenu" + | "preclick", + fn: LeafletMouseEventHandlerFn, + context?: any, + ): this; + addOneTimeEventListener( + type: "keypress" | "keydown" | "keyup", + fn: LeafletKeyboardEventHandlerFn, + context?: any, + ): this; + addOneTimeEventListener(type: "zoomanim", fn: ZoomAnimEventHandlerFn, context?: any): this; + addOneTimeEventListener(type: "dragend", fn: DragEndEventHandlerFn, context?: any): this; + addOneTimeEventListener( + type: "tileunload" | "tileloadstart" | "tileload" | "tileabort", + fn: TileEventHandlerFn, + context?: any, + ): this; + addOneTimeEventListener(type: "tileerror", fn: TileErrorEventHandlerFn, context?: any): this; + addOneTimeEventListener(type: string, fn: LeafletEventHandlerFn, context?: any): this; + + /** + * Alias for once(...) + * + * Behaves as on(...), except the listener will only get fired once and then removed. + */ + addOneTimeEventListener(eventMap: LeafletEventHandlerFnMap): this; + // tslint:enable:unified-signatures + + /** + * Alias for fire(...) + * + * Fires an event of the specified type. You can optionally provide a data + * object — the first argument of the listener function will contain its properties. + * The event might can optionally be propagated to event parents. + */ + fireEvent(type: string, data?: any, propagate?: boolean): this; + + /** + * Alias for listens(...) + * + * Returns true if a particular event type has any listeners attached to it. + */ + hasEventListeners(type: string): boolean; +} + +// eslint-disable-next-line @definitelytyped/strict-export-declare-modifiers +declare class MixinType { + Events: Events; +} + +export const Mixin: MixinType; + +/** + * Base class of Leaflet classes supporting events + */ +export abstract class Evented extends Class { + /** + * Adds a listener function (fn) to a particular event type of the object. + * You can optionally specify the context of the listener (object the this + * keyword will point to). You can also pass several space-separated types + * (e.g. 'click dblclick'). + */ + // tslint:disable:unified-signatures + on(type: "baselayerchange" | "overlayadd" | "overlayremove", fn: LayersControlEventHandlerFn, context?: any): this; + on(type: "layeradd" | "layerremove", fn: LayerEventHandlerFn, context?: any): this; + on( + type: + | "zoomlevelschange" + | "unload" + | "viewreset" + | "load" + | "zoomstart" + | "movestart" + | "zoom" + | "move" + | "zoomend" + | "moveend" + | "autopanstart" + | "dragstart" + | "drag" + | "add" + | "remove" + | "loading" + | "error" + | "update" + | "down" + | "predrag", + fn: LeafletEventHandlerFn, + context?: any, + ): this; + on(type: "resize", fn: ResizeEventHandlerFn, context?: any): this; + on(type: "popupopen" | "popupclose", fn: PopupEventHandlerFn, context?: any): this; + on(type: "tooltipopen" | "tooltipclose", fn: TooltipEventHandlerFn, context?: any): this; + on(type: "locationerror", fn: ErrorEventHandlerFn, context?: any): this; + on(type: "locationfound", fn: LocationEventHandlerFn, context?: any): this; + on( + type: + | "click" + | "dblclick" + | "mousedown" + | "mouseup" + | "mouseover" + | "mouseout" + | "mousemove" + | "contextmenu" + | "preclick", + fn: LeafletMouseEventHandlerFn, + context?: any, + ): this; + on(type: "keypress" | "keydown" | "keyup", fn: LeafletKeyboardEventHandlerFn, context?: any): this; + on(type: "zoomanim", fn: ZoomAnimEventHandlerFn, context?: any): this; + on(type: "dragend", fn: DragEndEventHandlerFn, context?: any): this; + on(type: "tileunload" | "tileloadstart" | "tileload" | "tileabort", fn: TileEventHandlerFn, context?: any): this; + on(type: "tileerror", fn: TileErrorEventHandlerFn, context?: any): this; + on(type: string, fn: LeafletEventHandlerFn, context?: any): this; + + /** + * Adds a set of type/listener pairs, e.g. {click: onClick, mousemove: onMouseMove} + */ + on(eventMap: LeafletEventHandlerFnMap): this; + // tslint:enable:unified-signatures + + /** + * Removes a previously added listener function. If no function is specified, + * it will remove all the listeners of that particular event from the object. + * Note that if you passed a custom context to on, you must pass the same context + * to off in order to remove the listener. + */ + // tslint:disable:unified-signatures + off( + type: "baselayerchange" | "overlayadd" | "overlayremove", + fn?: LayersControlEventHandlerFn, + context?: any, + ): this; + off(type: "layeradd" | "layerremove", fn?: LayerEventHandlerFn, context?: any): this; + off( + type: + | "zoomlevelschange" + | "unload" + | "viewreset" + | "load" + | "zoomstart" + | "movestart" + | "zoom" + | "move" + | "zoomend" + | "moveend" + | "autopanstart" + | "dragstart" + | "drag" + | "add" + | "remove" + | "loading" + | "error" + | "update" + | "down" + | "predrag", + fn?: LeafletEventHandlerFn, + context?: any, + ): this; + off(type: "resize", fn?: ResizeEventHandlerFn, context?: any): this; + off(type: "popupopen" | "popupclose", fn?: PopupEventHandlerFn, context?: any): this; + off(type: "tooltipopen" | "tooltipclose", fn?: TooltipEventHandlerFn, context?: any): this; + off(type: "locationerror", fn?: ErrorEventHandlerFn, context?: any): this; + off(type: "locationfound", fn?: LocationEventHandlerFn, context?: any): this; + off( + type: + | "click" + | "dblclick" + | "mousedown" + | "mouseup" + | "mouseover" + | "mouseout" + | "mousemove" + | "contextmenu" + | "preclick", + fn?: LeafletMouseEventHandlerFn, + context?: any, + ): this; + off(type: "keypress" | "keydown" | "keyup", fn?: LeafletKeyboardEventHandlerFn, context?: any): this; + off(type: "zoomanim", fn?: ZoomAnimEventHandlerFn, context?: any): this; + off(type: "dragend", fn?: DragEndEventHandlerFn, context?: any): this; + off(type: "tileunload" | "tileloadstart" | "tileload" | "tileabort", fn?: TileEventHandlerFn, context?: any): this; + off(type: "tileerror", fn?: TileErrorEventHandlerFn, context?: any): this; + off(type: string, fn?: LeafletEventHandlerFn, context?: any): this; + + /** + * Removes a set of type/listener pairs. + */ + // With an eventMap there are no additional arguments allowed + off(eventMap: LeafletEventHandlerFnMap): this; + + /** + * Removes all listeners to all events on the object. + */ + off(): this; + // tslint:enable:unified-signatures + + /** + * Fires an event of the specified type. You can optionally provide a data + * object — the first argument of the listener function will contain its properties. + * The event might can optionally be propagated to event parents. + */ + fire(type: string, data?: any, propagate?: boolean): this; + + /** + * Returns true if a particular event type has any listeners attached to it. + */ + // tslint:disable:unified-signatures + listens( + type: + | "baselayerchange" + | "overlayadd" + | "overlayremove" + | "layeradd" + | "layerremove" + | "zoomlevelschange" + | "unload" + | "viewreset" + | "load" + | "zoomstart" + | "movestart" + | "zoom" + | "move" + | "zoomend" + | "moveend" + | "autopanstart" + | "dragstart" + | "drag" + | "add" + | "remove" + | "loading" + | "error" + | "update" + | "down" + | "predrag" + | "resize" + | "popupopen" + | "tooltipopen" + | "tooltipclose" + | "locationerror" + | "locationfound" + | "click" + | "dblclick" + | "mousedown" + | "mouseup" + | "mouseover" + | "mouseout" + | "mousemove" + | "contextmenu" + | "preclick" + | "keypress" + | "keydown" + | "keyup" + | "zoomanim" + | "dragend" + | "tileunload" + | "tileloadstart" + | "tileload" + | "tileabort" + | "tileerror", + propagate?: boolean, + ): boolean; + + listens( + type: "baselayerchange" | "overlayadd" | "overlayremove", + fn: LayersControlEventHandlerFn, + context?: any, + propagate?: boolean, + ): boolean; + listens(type: "layeradd" | "layerremove", fn: LayerEventHandlerFn, context?: any, propagate?: boolean): boolean; + listens( + type: + | "zoomlevelschange" + | "unload" + | "viewreset" + | "load" + | "zoomstart" + | "movestart" + | "zoom" + | "move" + | "zoomend" + | "moveend" + | "autopanstart" + | "dragstart" + | "drag" + | "add" + | "remove" + | "loading" + | "error" + | "update" + | "down" + | "predrag", + fn: LeafletEventHandlerFn, + context?: any, + propagate?: boolean, + ): boolean; + listens(type: "resize", fn: ResizeEventHandlerFn, context?: any, propagate?: boolean): boolean; + listens(type: "popupopen" | "popupclose", fn: PopupEventHandlerFn, context?: any, propagate?: boolean): boolean; + listens( + type: "tooltipopen" | "tooltipclose", + fn: TooltipEventHandlerFn, + context?: any, + propagate?: boolean, + ): boolean; + listens(type: "locationerror", fn: ErrorEventHandlerFn, context?: any, propagate?: boolean): boolean; + listens(type: "locationfound", fn: LocationEventHandlerFn, context?: any, propagate?: boolean): boolean; + listens( + type: + | "click" + | "dblclick" + | "mousedown" + | "mouseup" + | "mouseover" + | "mouseout" + | "mousemove" + | "contextmenu" + | "preclick", + fn: LeafletMouseEventHandlerFn, + context?: any, + propagate?: boolean, + ): boolean; + listens( + type: "keypress" | "keydown" | "keyup", + fn: LeafletKeyboardEventHandlerFn, + context?: any, + propagate?: boolean, + ): boolean; + listens(type: "zoomanim", fn: ZoomAnimEventHandlerFn, context?: any, propagate?: boolean): boolean; + listens(type: "dragend", fn: DragEndEventHandlerFn, context?: any, propagate?: boolean): boolean; + listens( + type: "tileunload" | "tileloadstart" | "tileload" | "tileabort", + fn: TileEventHandlerFn, + context?: any, + propagate?: boolean, + ): boolean; + listens(type: "tileerror", fn: TileEventHandlerFn, context?: any, propagate?: boolean): boolean; + listens(type: string, fn: LeafletEventHandlerFn, context?: any, propagate?: boolean): boolean; + + /** + * Behaves as on(...), except the listener will only get fired once and then removed. + */ + // tslint:disable:unified-signatures + once( + type: "baselayerchange" | "overlayadd" | "overlayremove", + fn: LayersControlEventHandlerFn, + context?: any, + ): this; + once(type: "layeradd" | "layerremove", fn: LayerEventHandlerFn, context?: any): this; + once( + type: + | "zoomlevelschange" + | "unload" + | "viewreset" + | "load" + | "zoomstart" + | "movestart" + | "zoom" + | "move" + | "zoomend" + | "moveend" + | "autopanstart" + | "dragstart" + | "drag" + | "add" + | "remove" + | "loading" + | "error" + | "update" + | "down" + | "predrag", + fn: LeafletEventHandlerFn, + context?: any, + ): this; + once(type: "resize", fn: ResizeEventHandlerFn, context?: any): this; + once(type: "popupopen" | "popupclose", fn: PopupEventHandlerFn, context?: any): this; + once(type: "tooltipopen" | "tooltipclose", fn: TooltipEventHandlerFn, context?: any): this; + once(type: "locationerror", fn: ErrorEventHandlerFn, context?: any): this; + once(type: "locationfound", fn: LocationEventHandlerFn, context?: any): this; + once( + type: + | "click" + | "dblclick" + | "mousedown" + | "mouseup" + | "mouseover" + | "mouseout" + | "mousemove" + | "contextmenu" + | "preclick", + fn: LeafletMouseEventHandlerFn, + context?: any, + ): this; + once(type: "keypress" | "keydown" | "keyup", fn: LeafletKeyboardEventHandlerFn, context?: any): this; + once(type: "zoomanim", fn: ZoomAnimEventHandlerFn, context?: any): this; + once(type: "dragend", fn: DragEndEventHandlerFn, context?: any): this; + once(type: "tileunload" | "tileloadstart" | "tileload" | "tileabort", fn: TileEventHandlerFn, context?: any): this; + once(type: "tileerror", fn: TileEventHandlerFn, context?: any): this; + once(type: string, fn: LeafletEventHandlerFn, context?: any): this; + + /** + * Behaves as on(...), except the listener will only get fired once and then removed. + */ + once(eventMap: LeafletEventHandlerFnMap): this; + // tslint:enable:unified-signatures + + /** + * Adds an event parent - an Evented that will receive propagated events + */ + addEventParent(obj: Evented): this; + + /** + * Removes an event parent, so it will stop receiving propagated events + */ + removeEventParent(obj: Evented): this; + + /** + * Alias for on(...) + * + * Adds a listener function (fn) to a particular event type of the object. + * You can optionally specify the context of the listener (object the this + * keyword will point to). You can also pass several space-separated types + * (e.g. 'click dblclick'). + */ + // tslint:disable:unified-signatures + addEventListener( + type: "baselayerchange" | "overlayadd" | "overlayremove", + fn: LayersControlEventHandlerFn, + context?: any, + ): this; + addEventListener(type: "layeradd" | "layerremove", fn: LayerEventHandlerFn, context?: any): this; + addEventListener( + type: + | "zoomlevelschange" + | "unload" + | "viewreset" + | "load" + | "zoomstart" + | "movestart" + | "zoom" + | "move" + | "zoomend" + | "moveend" + | "autopanstart" + | "dragstart" + | "drag" + | "add" + | "remove" + | "loading" + | "error" + | "update" + | "down" + | "predrag", + fn: LeafletEventHandlerFn, + context?: any, + ): this; + addEventListener(type: "resize", fn: ResizeEventHandlerFn, context?: any): this; + addEventListener(type: "popupopen" | "popupclose", fn: PopupEventHandlerFn, context?: any): this; + addEventListener(type: "tooltipopen" | "tooltipclose", fn: TooltipEventHandlerFn, context?: any): this; + addEventListener(type: "locationerror", fn: ErrorEventHandlerFn, context?: any): this; + addEventListener(type: "locationfound", fn: LocationEventHandlerFn, context?: any): this; + addEventListener( + type: + | "click" + | "dblclick" + | "mousedown" + | "mouseup" + | "mouseover" + | "mouseout" + | "mousemove" + | "contextmenu" + | "preclick", + fn: LeafletMouseEventHandlerFn, + context?: any, + ): this; + addEventListener(type: "keypress" | "keydown" | "keyup", fn: LeafletKeyboardEventHandlerFn, context?: any): this; + addEventListener(type: "zoomanim", fn: ZoomAnimEventHandlerFn, context?: any): this; + addEventListener(type: "dragend", fn: DragEndEventHandlerFn, context?: any): this; + addEventListener( + type: "tileunload" | "tileloadstart" | "tileload" | "tileabort", + fn: TileEventHandlerFn, + context?: any, + ): this; + addEventListener(type: "tileerror", fn: TileErrorEventHandlerFn, context?: any): this; + addEventListener(type: string, fn: LeafletEventHandlerFn, context?: any): this; + + /** + * Alias for on(...) + * + * Adds a set of type/listener pairs, e.g. {click: onClick, mousemove: onMouseMove} + */ + addEventListener(eventMap: LeafletEventHandlerFnMap): this; + // tslint:enable:unified-signatures + + /** + * Alias for off(...) + * + * Removes a previously added listener function. If no function is specified, + * it will remove all the listeners of that particular event from the object. + * Note that if you passed a custom context to on, you must pass the same context + * to off in order to remove the listener. + */ + // tslint:disable:unified-signatures + removeEventListener( + type: "baselayerchange" | "overlayadd" | "overlayremove", + fn?: LayersControlEventHandlerFn, + context?: any, + ): this; + removeEventListener(type: "layeradd" | "layerremove", fn?: LayerEventHandlerFn, context?: any): this; + removeEventListener( + type: + | "zoomlevelschange" + | "unload" + | "viewreset" + | "load" + | "zoomstart" + | "movestart" + | "zoom" + | "move" + | "zoomend" + | "moveend" + | "autopanstart" + | "dragstart" + | "drag" + | "add" + | "remove" + | "loading" + | "error" + | "update" + | "down" + | "predrag", + fn?: LeafletEventHandlerFn, + context?: any, + ): this; + removeEventListener(type: "resize", fn?: ResizeEventHandlerFn, context?: any): this; + removeEventListener(type: "popupopen" | "popupclose", fn?: PopupEventHandlerFn, context?: any): this; + removeEventListener(type: "tooltipopen" | "tooltipclose", fn?: TooltipEventHandlerFn, context?: any): this; + removeEventListener(type: "locationerror", fn?: ErrorEventHandlerFn, context?: any): this; + removeEventListener(type: "locationfound", fn?: LocationEventHandlerFn, context?: any): this; + removeEventListener( + type: + | "click" + | "dblclick" + | "mousedown" + | "mouseup" + | "mouseover" + | "mouseout" + | "mousemove" + | "contextmenu" + | "preclick", + fn?: LeafletMouseEventHandlerFn, + context?: any, + ): this; + removeEventListener( + type: "keypress" | "keydown" | "keyup", + fn?: LeafletKeyboardEventHandlerFn, + context?: any, + ): this; + removeEventListener(type: "zoomanim", fn?: ZoomAnimEventHandlerFn, context?: any): this; + removeEventListener(type: "dragend", fn?: DragEndEventHandlerFn, context?: any): this; + removeEventListener( + type: "tileunload" | "tileloadstart" | "tileload" | "tileabort", + fn?: TileEventHandlerFn, + context?: any, + ): this; + removeEventListener(type: "tileerror", fn?: TileErrorEventHandlerFn, context?: any): this; + removeEventListener(type: string, fn?: LeafletEventHandlerFn, context?: any): this; + + /** + * Alias for off(...) + * + * Removes a set of type/listener pairs. + */ + removeEventListener(eventMap: LeafletEventHandlerFnMap): this; + // tslint:enable:unified-signatures + + /** + * Alias for off() + * + * Removes all listeners to all events on the object. + */ + clearAllEventListeners(): this; + + /** + * Alias for once(...) + * + * Behaves as on(...), except the listener will only get fired once and then removed. + */ + // tslint:disable:unified-signatures + addOneTimeEventListener( + type: "baselayerchange" | "overlayadd" | "overlayremove", + fn: LayersControlEventHandlerFn, + context?: any, + ): this; + addOneTimeEventListener(type: "layeradd" | "layerremove", fn: LayerEventHandlerFn, context?: any): this; + addOneTimeEventListener( + type: + | "zoomlevelschange" + | "unload" + | "viewreset" + | "load" + | "zoomstart" + | "movestart" + | "zoom" + | "move" + | "zoomend" + | "moveend" + | "autopanstart" + | "dragstart" + | "drag" + | "add" + | "remove" + | "loading" + | "error" + | "update" + | "down" + | "predrag", + fn: LeafletEventHandlerFn, + context?: any, + ): this; + addOneTimeEventListener(type: "resize", fn: ResizeEventHandlerFn, context?: any): this; + addOneTimeEventListener(type: "popupopen" | "popupclose", fn: PopupEventHandlerFn, context?: any): this; + addOneTimeEventListener(type: "tooltipopen" | "tooltipclose", fn: TooltipEventHandlerFn, context?: any): this; + addOneTimeEventListener(type: "locationerror", fn: ErrorEventHandlerFn, context?: any): this; + addOneTimeEventListener(type: "locationfound", fn: LocationEventHandlerFn, context?: any): this; + addOneTimeEventListener( + type: + | "click" + | "dblclick" + | "mousedown" + | "mouseup" + | "mouseover" + | "mouseout" + | "mousemove" + | "contextmenu" + | "preclick", + fn: LeafletMouseEventHandlerFn, + context?: any, + ): this; + addOneTimeEventListener( + type: "keypress" | "keydown" | "keyup", + fn: LeafletKeyboardEventHandlerFn, + context?: any, + ): this; + addOneTimeEventListener(type: "zoomanim", fn: ZoomAnimEventHandlerFn, context?: any): this; + addOneTimeEventListener(type: "dragend", fn: DragEndEventHandlerFn, context?: any): this; + addOneTimeEventListener( + type: "tileunload" | "tileloadstart" | "tileload" | "tileabort", + fn: TileEventHandlerFn, + context?: any, + ): this; + addOneTimeEventListener(type: "tileerror", fn: TileErrorEventHandlerFn, context?: any): this; + addOneTimeEventListener(type: string, fn: LeafletEventHandlerFn, context?: any): this; + + /** + * Alias for once(...) + * + * Behaves as on(...), except the listener will only get fired once and then removed. + */ + addOneTimeEventListener(eventMap: LeafletEventHandlerFnMap): this; + // tslint:enable:unified-signatures + + /** + * Alias for fire(...) + * + * Fires an event of the specified type. You can optionally provide a data + * object — the first argument of the listener function will contain its properties. + * The event might can optionally be propagated to event parents. + */ + fireEvent(type: string, data?: any, propagate?: boolean): this; + + /** + * Alias for listens(...) + * + * Returns true if a particular event type has any listeners attached to it. + */ + hasEventListeners(type: string): boolean; +} + +export interface DraggableOptions { + /** + * The max number of pixels a user can shift the mouse pointer during a click + * for it to be considered a valid click (as opposed to a mouse drag). + */ + clickTolerance: number; +} + +/** + * A class for making DOM elements draggable (including touch support). + * Used internally for map and marker dragging. Only works for elements + * that were positioned with [`L.DomUtil.setPosition`](#domutil-setposition). + */ +export class Draggable extends Evented { + constructor( + element: HTMLElement, + dragStartTarget?: HTMLElement, + preventOutline?: boolean, + options?: DraggableOptions, + ); + + enable(): void; + + disable(): void; + + finishDrag(): void; +} + +export interface LayerOptions { + pane?: string | undefined; + attribution?: string | undefined; +} + +export interface InteractiveLayerOptions extends LayerOptions { + interactive?: boolean | undefined; + bubblingMouseEvents?: boolean | undefined; +} + +export class Layer extends Evented { + constructor(options?: LayerOptions); + addTo(map: Map | LayerGroup): this; + remove(): this; + removeFrom(map: Map): this; + getPane(name?: string): HTMLElement | undefined; + + addInteractiveTarget(targetEl: HTMLElement): this; + removeInteractiveTarget(targetEl: HTMLElement): this; + + // Popup methods + bindPopup(content: ((layer: Layer) => Content) | Content | Popup, options?: PopupOptions): this; + unbindPopup(): this; + openPopup(latlng?: LatLngExpression): this; + closePopup(): this; + togglePopup(): this; + isPopupOpen(): boolean; + setPopupContent(content: Content | Popup): this; + getPopup(): Popup | undefined; + + // Tooltip methods + bindTooltip(content: ((layer: Layer) => Content) | Tooltip | Content, options?: TooltipOptions): this; + unbindTooltip(): this; + openTooltip(latlng?: LatLngExpression): this; + closeTooltip(): this; + toggleTooltip(): this; + isTooltipOpen(): boolean; + setTooltipContent(content: Content | Tooltip): this; + getTooltip(): Tooltip | undefined; + + // Extension methods + onAdd(map: Map): this; + onRemove(map: Map): this; + getEvents?(): { [name: string]: LeafletEventHandlerFn }; + getAttribution?(): string | null; + beforeAdd?(map: Map): this; + + protected _map: Map; + + options: LayerOptions; +} + +export interface GridLayerOptions extends LayerOptions { + tileSize?: number | Point | undefined; + opacity?: number | undefined; + updateWhenIdle?: boolean | undefined; + updateWhenZooming?: boolean | undefined; + updateInterval?: number | undefined; + zIndex?: number | undefined; + bounds?: LatLngBoundsExpression | undefined; + minZoom?: number | undefined; + maxZoom?: number | undefined; + /** + * Maximum zoom number the tile source has available. If it is specified, the tiles on all zoom levels higher than + * `maxNativeZoom` will be loaded from `maxNativeZoom` level and auto-scaled. + */ + maxNativeZoom?: number | undefined; + /** + * Minimum zoom number the tile source has available. If it is specified, the tiles on all zoom levels lower than + * `minNativeZoom` will be loaded from `minNativeZoom` level and auto-scaled. + */ + minNativeZoom?: number | undefined; + noWrap?: boolean | undefined; + pane?: string | undefined; + className?: string | undefined; + keepBuffer?: number | undefined; +} + +export type DoneCallback = (error?: Error, tile?: HTMLElement) => void; + +export interface InternalTiles { + [key: string]: { + active?: boolean | undefined; + coords: Coords; + current: boolean; + el: HTMLElement; + loaded?: Date | undefined; + retain?: boolean | undefined; + }; +} + +export class GridLayer extends Layer { + constructor(options?: GridLayerOptions); + bringToFront(): this; + bringToBack(): this; + getContainer(): HTMLElement | null; + setOpacity(opacity: number): this; + setZIndex(zIndex: number): this; + isLoading(): boolean; + redraw(): this; + getTileSize(): Point; + + protected createTile(coords: Coords, done: DoneCallback): HTMLElement; + protected _tileCoordsToKey(coords: Coords): string; + protected _wrapCoords(parameter: Coords): Coords; + + protected _tiles: InternalTiles; + protected _tileZoom?: number | undefined; +} + +export function gridLayer(options?: GridLayerOptions): GridLayer; + +export interface TileLayerOptions extends GridLayerOptions { + id?: string | undefined; + subdomains?: string | string[] | undefined; + errorTileUrl?: string | undefined; + zoomOffset?: number | undefined; + tms?: boolean | undefined; + zoomReverse?: boolean | undefined; + detectRetina?: boolean | undefined; + crossOrigin?: CrossOrigin | boolean | undefined; + referrerPolicy?: ReferrerPolicy | boolean | undefined; + // [name: string]: any; + // You are able add additional properties, but it makes this interface uncheckable. + // See: https://github.com/DefinitelyTyped/DefinitelyTyped/issues/15313 + // Example: + // tileLayer = L.tileLayer('http://{s}.tile.osm.org/{z}/{x}/{y}.png?{foo}&{bar}&{abc}', {foo: 'bar', bar: (data: any) => 'foo', abc: () => ''}); +} + +export class TileLayer extends GridLayer { + constructor(urlTemplate: string, options?: TileLayerOptions); + setUrl(url: string, noRedraw?: boolean): this; + getTileUrl(coords: L.Coords): string; + + protected _tileOnLoad(done: L.DoneCallback, tile: HTMLElement): void; + protected _tileOnError(done: L.DoneCallback, tile: HTMLElement, e: Error): void; + protected _abortLoading(): void; + protected _getZoomForUrl(): number; + + options: TileLayerOptions; +} + +export function tileLayer(urlTemplate: string, options?: TileLayerOptions): TileLayer; + +export namespace TileLayer { + class WMS extends TileLayer { + constructor(baseUrl: string, options: WMSOptions); + setParams(params: WMSParams, noRedraw?: boolean): this; + + wmsParams: WMSParams; + options: WMSOptions; + } +} + +export interface WMSOptions extends TileLayerOptions { + layers?: string | undefined; + styles?: string | undefined; + format?: string | undefined; + transparent?: boolean | undefined; + version?: string | undefined; + crs?: CRS | undefined; + uppercase?: boolean | undefined; +} + +export interface WMSParams { + format?: string | undefined; + layers: string; + request?: string | undefined; + service?: string | undefined; + styles?: string | undefined; + version?: string | undefined; + transparent?: boolean | undefined; + width?: number | undefined; + height?: number | undefined; +} + +export namespace tileLayer { + function wms(baseUrl: string, options?: WMSOptions): TileLayer.WMS; +} + +export type CrossOrigin = "anonymous" | "use-credentials" | ""; +export type ReferrerPolicy = + | "no-referrer" + | "no-referrer-when-downgrade" + | "origin" + | "origin-when-cross-origin" + | "same-origin" + | "strict-origin" + | "strict-origin-when-cross-origin" + | "unsafe-url"; + +export interface ImageOverlayOptions extends InteractiveLayerOptions { + opacity?: number | undefined; + alt?: string | undefined; + interactive?: boolean | undefined; + crossOrigin?: CrossOrigin | boolean | undefined; + errorOverlayUrl?: string | undefined; + zIndex?: number | undefined; + className?: string | undefined; +} + +export interface ImageOverlayStyleOptions { + opacity?: number; + [name: string]: any; +} + +export class ImageOverlay extends Layer { + constructor(imageUrl: string, bounds: LatLngBoundsExpression, options?: ImageOverlayOptions); + bringToFront(): this; + bringToBack(): this; + setUrl(url: string): this; + + /** Update the bounds that this ImageOverlay covers */ + setBounds(bounds: LatLngBounds): this; + + /** Changes the zIndex of the image overlay */ + setZIndex(value: number): this; + + /** Changes the opacity of the image element */ + setOpacity(opacity: number): this; + + /** Changes the style of the image element. As of 1.8, only the opacity is changed */ + setStyle(styleOpts: ImageOverlayStyleOptions): this; + + /** Get the bounds that this ImageOverlay covers */ + getBounds(): LatLngBounds; + + /** Get the center of the bounds this ImageOverlay covers */ + getCenter(): Point; + + /** Get the img element that represents the ImageOverlay on the map */ + getElement(): HTMLImageElement | undefined; + + options: ImageOverlayOptions; +} + +export function imageOverlay( + imageUrl: string, + bounds: LatLngBoundsExpression, + options?: ImageOverlayOptions, +): ImageOverlay; + +export type SVGOverlayStyleOptions = ImageOverlayStyleOptions; + +export class SVGOverlay extends Layer { + /** SVGOverlay doesn't extend ImageOverlay because SVGOverlay.getElement returns SVGElement */ + + constructor(svgImage: string | SVGElement, bounds: LatLngBoundsExpression, options?: ImageOverlayOptions); + bringToFront(): this; + bringToBack(): this; + setUrl(url: string): this; + + /** Update the bounds that this SVGOverlay covers */ + setBounds(bounds: LatLngBounds): this; + + /** Changes the zIndex of the image overlay */ + setZIndex(value: number): this; + + /** Changes the opacity of the image element */ + setOpacity(opacity: number): this; + + /** Changes the style of the image element. As of 1.8, only the opacity is changed */ + setStyle(styleOpts: SVGOverlayStyleOptions): this; + + /** Get the bounds that this SVGOverlay covers */ + getBounds(): LatLngBounds; + + /** Get the center of the bounds this ImageOverlay covers */ + getCenter(): Point; + + /** Get the img element that represents the SVGOverlay on the map */ + getElement(): SVGElement | undefined; + + options: ImageOverlayOptions; +} + +export function svgOverlay( + svgImage: string | SVGElement, + bounds: LatLngBoundsExpression, + options?: ImageOverlayOptions, +): SVGOverlay; + +export interface VideoOverlayOptions extends ImageOverlayOptions { + /** Whether the video starts playing automatically when loaded. */ + autoplay?: boolean | undefined; + /** Whether the video will loop back to the beginning when played. */ + loop?: boolean | undefined; + /** + * Whether the video will save aspect ratio after the projection. Relevant for supported browsers. See + * [browser compatibility](https://developer.mozilla.org/en-US/docs/Web/CSS/object-fit) + */ + keepAspectRatio?: boolean | undefined; + /** Whether the video starts on mute when loaded. */ + muted?: boolean | undefined; + playsInline?: boolean | undefined; +} + +export class VideoOverlay extends Layer { + /** VideoOverlay doesn't extend ImageOverlay because VideoOverlay.getElement returns HTMLImageElement */ + constructor( + video: string | string[] | HTMLVideoElement, + bounds: LatLngBoundsExpression, + options?: VideoOverlayOptions, + ); + bringToFront(): this; + bringToBack(): this; + setUrl(url: string): this; + + /** Update the bounds that this VideoOverlay covers */ + setBounds(bounds: LatLngBounds): this; + + /** Changes the zIndex of the image overlay */ + setZIndex(value: number): this; + + /** Changes the opacity of the image element */ + setOpacity(opacity: number): this; + + /** Changes the style of the image element. As of 1.8, only the opacity is changed */ + setStyle(styleOpts: SVGOverlayStyleOptions): this; + + /** Get the bounds that this VideoOverlay covers */ + getBounds(): LatLngBounds; + + /** Get the center of the bounds this ImageOverlay covers */ + getCenter(): Point; + + /** Get the video element that represents the VideoOverlay on the map */ + getElement(): HTMLVideoElement | undefined; + + options: VideoOverlayOptions; +} + +export function videoOverlay( + video: string | string[] | HTMLVideoElement, + bounds: LatLngBoundsExpression, + options?: VideoOverlayOptions, +): VideoOverlay; + +export type LineCapShape = "butt" | "round" | "square" | "inherit"; + +export type LineJoinShape = "miter" | "round" | "bevel" | "inherit"; + +export type FillRule = "nonzero" | "evenodd" | "inherit"; + +export interface PathOptions extends InteractiveLayerOptions { + stroke?: boolean | undefined; + color?: string | undefined; + weight?: number | undefined; + opacity?: number | undefined; + lineCap?: LineCapShape | undefined; + lineJoin?: LineJoinShape | undefined; + dashArray?: string | number[] | undefined; + dashOffset?: string | undefined; + fill?: boolean | undefined; + fillColor?: string | undefined; + fillOpacity?: number | undefined; + fillRule?: FillRule | undefined; + renderer?: Renderer | undefined; + className?: string | undefined; +} + +export abstract class Path extends Layer { + redraw(): this; + setStyle(style: PathOptions): this; + bringToFront(): this; + bringToBack(): this; + getElement(): Element | undefined; + + options: PathOptions; +} + +export interface PolylineOptions extends PathOptions { + smoothFactor?: number | undefined; + noClip?: boolean | undefined; +} + +export class Polyline + extends Path +{ + constructor(latlngs: LatLngExpression[] | LatLngExpression[][], options?: PolylineOptions); + toGeoJSON(precision?: number | false): geojson.Feature; + getLatLngs(): LatLng[] | LatLng[][] | LatLng[][][]; + setLatLngs(latlngs: LatLngExpression[] | LatLngExpression[][] | LatLngExpression[][][]): this; + isEmpty(): boolean; + getCenter(): LatLng; + getBounds(): LatLngBounds; + addLatLng(latlng: LatLngExpression | LatLngExpression[], latlngs?: LatLng[]): this; + closestLayerPoint(p: Point): Point; + + feature?: geojson.Feature | undefined; + options: PolylineOptions; +} + +export function polyline( + latlngs: LatLngExpression[] | LatLngExpression[][], + options?: PolylineOptions, +): Polyline; + +export class Polygon

extends Polyline { + constructor(latlngs: LatLngExpression[] | LatLngExpression[][] | LatLngExpression[][][], options?: PolylineOptions); +} + +export function polygon

( + latlngs: LatLngExpression[] | LatLngExpression[][] | LatLngExpression[][][], + options?: PolylineOptions, +): Polygon

; + +export class Rectangle

extends Polygon

{ + constructor(latLngBounds: LatLngBoundsExpression, options?: PolylineOptions); + setBounds(latLngBounds: LatLngBoundsExpression): this; +} + +export function rectangle

(latLngBounds: LatLngBoundsExpression, options?: PolylineOptions): Rectangle

; + +export interface CircleMarkerOptions extends PathOptions { + radius: number; +} + +export class CircleMarker

extends Path { + constructor(latlng: LatLngExpression, options: CircleMarkerOptions); + toGeoJSON(precision?: number | false): geojson.Feature; + setLatLng(latLng: LatLngExpression): this; + getLatLng(): LatLng; + setRadius(radius: number): this; + getRadius(): number; + setStyle(options: Partial): this; + + options: CircleMarkerOptions; + feature?: geojson.Feature | undefined; +} + +export function circleMarker

(latlng: LatLngExpression, options?: CircleMarkerOptions): CircleMarker

; + +export type CircleOptions = CircleMarkerOptions; + +export class Circle

extends CircleMarker

{ + constructor(latlng: LatLngExpression, options: CircleOptions); + constructor(latlng: LatLngExpression, radius: number, options?: CircleOptions); // deprecated! + toGeoJSON(precision?: number | false): any; + getBounds(): LatLngBounds; + setRadius(radius: number): this; + getRadius(): number; + setStyle(style: PathOptions): this; +} + +export function circle

(latlng: LatLngExpression, options: CircleMarkerOptions): Circle

; +/** + * @deprecated Passing the radius outside the options is deperecated. Use {@link circle:1} instead. + */ +export function circle

(latlng: LatLngExpression, radius: number, options?: CircleMarkerOptions): Circle

; + +export interface RendererOptions extends LayerOptions { + padding?: number | undefined; + tolerance?: number | undefined; +} + +export class Renderer extends Layer { + constructor(options?: RendererOptions); + + options: RendererOptions; +} + +export class SVG extends Renderer {} + +export namespace SVG { + function create(name: K): SVGElementTagNameMap[K]; + function create(name: string): SVGElement; + + function pointsToPath(rings: PointExpression[], closed: boolean): string; +} + +export function svg(options?: RendererOptions): SVG; + +export class Canvas extends Renderer {} + +export function canvas(options?: RendererOptions): Canvas; + +/** + * Used to group several layers and handle them as one. + * If you add it to the map, any layers added or removed from the group will be + * added/removed on the map as well. Extends Layer. + */ +export class LayerGroup

extends Layer { + constructor(layers?: Layer[], options?: LayerOptions); + + toMultiPoint(precision?: number): geojson.Feature; + + /** + * Returns a GeoJSON representation of the layer group (as a GeoJSON GeometryCollection, GeoJSONFeatureCollection or Multipoint). + */ + toGeoJSON( + precision?: number | false, + ): + | geojson.FeatureCollection + | geojson.Feature + | geojson.GeometryCollection; + + /** + * Adds the given layer to the group. + */ + addLayer(layer: Layer): this; + + /** + * Removes the layer with the given internal ID or the given layer from the group. + */ + removeLayer(layer: number | Layer): this; + + /** + * Returns true if the given layer is currently added to the group. + */ + hasLayer(layer: Layer): boolean; + + /** + * Removes all the layers from the group. + */ + clearLayers(): this; + + /** + * Calls methodName on every layer contained in this group, passing any additional parameters. + * Has no effect if the layers contained do not implement methodName. + */ + invoke(methodName: string, ...params: any[]): this; + + /** + * Iterates over the layers of the group, + * optionally specifying context of the iterator function. + */ + eachLayer(fn: (layer: Layer) => void, context?: any): this; + + /** + * Returns the layer with the given internal ID. + */ + getLayer(id: number): Layer | undefined; + + /** + * Returns an array of all the layers added to the group. + */ + getLayers(): Layer[]; + + /** + * Calls setZIndex on every layer contained in this group, passing the z-index. + */ + setZIndex(zIndex: number): this; + + /** + * Returns the internal ID for a layer + */ + getLayerId(layer: Layer): number; + + feature?: + | geojson.FeatureCollection + | geojson.Feature + | geojson.GeometryCollection + | undefined; +} + +/** + * Create a layer group, optionally given an initial set of layers and an `options` object. + */ +export function layerGroup

(layers?: Layer[], options?: LayerOptions): LayerGroup

; + +/** + * Extended LayerGroup that also has mouse events (propagated from + * members of the group) and a shared bindPopup method. + */ +export class FeatureGroup

extends LayerGroup

{ + /** + * Adds the given layer to the group. + */ + addLayer(layer: Layer): this; + + /** + * Removes the layer with the given internal ID or the given layer from the group. + */ + removeLayer(layer: number | Layer): this; + + /** + * Sets the given path options to each layer of the group that has a setStyle method. + */ + setStyle(style: PathOptions): this; + + /** + * Brings the layer group to the top of all other layers + */ + bringToFront(): this; + + /** + * Brings the layer group to the top [sic] of all other layers + */ + bringToBack(): this; + + /** + * Returns the LatLngBounds of the Feature Group (created from + * bounds and coordinates of its children). + */ + getBounds(): LatLngBounds; +} + +/** + * Create a feature group, optionally given an initial set of layers. + */ +export function featureGroup

(layers?: Layer[], options?: LayerOptions): FeatureGroup

; + +export type StyleFunction

= (feature?: geojson.Feature) => PathOptions; + +export interface GeoJSONOptions

+ extends InteractiveLayerOptions +{ + /** + * A Function defining how GeoJSON points spawn Leaflet layers. + * It is internally called when data is added, passing the GeoJSON point + * feature and its LatLng. + * + * The default is to spawn a default Marker: + * + * ``` + * function(geoJsonPoint, latlng) { + * return L.marker(latlng); + * } + * ``` + */ + pointToLayer?(geoJsonPoint: geojson.Feature, latlng: LatLng): Layer; // should import GeoJSON typings + + /** + * PathOptions or a Function defining the Path options for styling GeoJSON lines and polygons, + * called internally when data is added. + * + * The default value is to not override any defaults: + * + * ``` + * function (geoJsonFeature) { + * return {} + * } + * ``` + */ + style?: PathOptions | StyleFunction

| undefined; + + /** + * A Function that will be called once for each created Feature, after it + * has been created and styled. Useful for attaching events and popups to features. + * + * The default is to do nothing with the newly created layers: + * + * ``` + * function (feature, layer) {} + * ``` + */ + onEachFeature?(feature: geojson.Feature, layer: Layer): void; + + /** + * A Function that will be used to decide whether to show a feature or not. + * + * The default is to show all features: + * + * ``` + * function (geoJsonFeature) { + * return true; + * } + * ``` + */ + filter?(geoJsonFeature: geojson.Feature): boolean; + + /** + * A Function that will be used for converting GeoJSON coordinates to LatLngs. + * The default is the coordsToLatLng static method. + */ + coordsToLatLng?(coords: [number, number] | [number, number, number]): LatLng; // check if LatLng has an altitude property + + /** Whether default Markers for "Point" type Features inherit from group options. */ + markersInheritOptions?: boolean | undefined; +} + +/** + * Represents a GeoJSON object or an array of GeoJSON objects. + * Allows you to parse GeoJSON data and display it on the map. Extends FeatureGroup. + */ +export class GeoJSON

extends FeatureGroup

{ + /** + * Convert layer into GeoJSON feature + */ + static getFeature

( + layer: Layer, + newGeometry: geojson.Feature | G, + ): geojson.Feature; + + /** + * Creates a Layer from a given GeoJSON feature. Can use a custom pointToLayer + * and/or coordsToLatLng functions if provided as options. + */ + static geometryToLayer

( + featureData: geojson.Feature, + options?: GeoJSONOptions, + ): Layer; + + /** + * Creates a LatLng object from an array of 2 numbers (longitude, latitude) or + * 3 numbers (longitude, latitude, altitude) used in GeoJSON for points. + */ + static coordsToLatLng(coords: [number, number] | [number, number, number]): LatLng; + + /** + * Creates a multidimensional array of LatLngs from a GeoJSON coordinates array. + * levelsDeep specifies the nesting level (0 is for an array of points, 1 for an array of + * arrays of points, etc., 0 by default). + * Can use a custom coordsToLatLng function. + */ + static coordsToLatLngs( + coords: any[], + levelsDeep?: number, + coordsToLatLng?: (coords: [number, number] | [number, number, number]) => LatLng, + ): any[]; // Using any[] to avoid artificially limiting valid calls + + /** + * Reverse of coordsToLatLng + */ + static latLngToCoords(latlng: LatLng): [number, number] | [number, number, number]; + + /** + * Reverse of coordsToLatLngs closed determines whether the first point should be + * appended to the end of the array to close the feature, only used when levelsDeep is 0. + * False by default. + */ + static latLngsToCoords(latlngs: any[], levelsDeep?: number, closed?: boolean): any[]; // Using any[] to avoid artificially limiting valid calls + + /** + * Normalize GeoJSON geometries/features into GeoJSON features. + */ + static asFeature

( + geojson: geojson.Feature | G, + ): geojson.Feature; + + constructor(geojson?: geojson.GeoJsonObject | null, options?: GeoJSONOptions | null); + /** + * Adds a GeoJSON object to the layer. + */ + addData(data: geojson.GeoJsonObject): this; + + /** + * Resets the given vector layer's style to the original GeoJSON style, + * useful for resetting style after hover events. + */ + resetStyle(layer?: Layer): this; + + /** + * Same as FeatureGroup's setStyle method, but style-functions are also + * allowed here to set the style according to the feature. + */ + setStyle(style: PathOptions | StyleFunction

): this; + + options: GeoJSONOptions; +} + +/** + * Creates a GeoJSON layer. + * + * Optionally accepts an object in GeoJSON format to display on the + * map (you can alternatively add it later with addData method) and + * an options object. + */ +export function geoJSON

( + geojson?: geojson.GeoJsonObject | geojson.GeoJsonObject[] | null, + options?: GeoJSONOptions | null, +): GeoJSON; +export function geoJson

( + geojson?: geojson.GeoJsonObject | geojson.GeoJsonObject[] | null, + options?: GeoJSONOptions | null, +): GeoJSON; + +export type Zoom = boolean | "center"; + +export interface MapOptions { + preferCanvas?: boolean | undefined; + + // Control options + attributionControl?: boolean | undefined; + zoomControl?: boolean | undefined; + + // Interaction options + closePopupOnClick?: boolean | undefined; + zoomSnap?: number | undefined; + zoomDelta?: number | undefined; + trackResize?: boolean | undefined; + boxZoom?: boolean | undefined; + doubleClickZoom?: Zoom | undefined; + dragging?: boolean | undefined; + + // Map state options + crs?: CRS | undefined; + center?: LatLngExpression | undefined; + zoom?: number | undefined; + minZoom?: number | undefined; + maxZoom?: number | undefined; + layers?: Layer[] | undefined; + maxBounds?: LatLngBoundsExpression | undefined; + renderer?: Renderer | undefined; + + // Animation options + fadeAnimation?: boolean | undefined; + markerZoomAnimation?: boolean | undefined; + transform3DLimit?: number | undefined; + zoomAnimation?: boolean | undefined; + zoomAnimationThreshold?: number | undefined; + + // Panning inertia options + inertia?: boolean | undefined; + inertiaDeceleration?: number | undefined; + inertiaMaxSpeed?: number | undefined; + easeLinearity?: number | undefined; + worldCopyJump?: boolean | undefined; + maxBoundsViscosity?: number | undefined; + + // Keyboard navigation options + keyboard?: boolean | undefined; + keyboardPanDelta?: number | undefined; + + // Mousewheel options + scrollWheelZoom?: Zoom | undefined; + wheelDebounceTime?: number | undefined; + wheelPxPerZoomLevel?: number | undefined; + + // Touch interaction options + tapHold?: boolean | undefined; + tapTolerance?: number | undefined; + touchZoom?: Zoom | undefined; + bounceAtZoomLimits?: boolean | undefined; +} + +export type ControlPosition = "topleft" | "topright" | "bottomleft" | "bottomright"; + +export interface ControlOptions { + position?: ControlPosition | undefined; +} + +export class Control extends Class { + static extend( + props: T, + ): { new(...args: any[]): T } & typeof Control; + constructor(options?: Options); + getPosition(): ControlPosition; + setPosition(position: ControlPosition): this; + getContainer(): HTMLElement | undefined; + addTo(map: Map): this; + remove(): this; + + // Extension methods + onAdd?(map: Map): HTMLElement; + onRemove?(map: Map): void; + + options: Options; +} + +export namespace Control { + interface ZoomOptions extends ControlOptions { + zoomInText?: string | undefined; + zoomInTitle?: string | undefined; + zoomOutText?: string | undefined; + zoomOutTitle?: string | undefined; + } + + class Zoom extends Control { + constructor(options?: ZoomOptions); + options: ZoomOptions; + } + + interface AttributionOptions extends ControlOptions { + prefix?: string | boolean | undefined; + } + + class Attribution extends Control { + constructor(options?: AttributionOptions); + setPrefix(prefix: string | false): this; + addAttribution(text: string): this; + removeAttribution(text: string): this; + options: AttributionOptions; + } + + interface LayersOptions extends ControlOptions { + collapsed?: boolean | undefined; + autoZIndex?: boolean | undefined; + hideSingleBase?: boolean | undefined; + /** + * Whether to sort the layers. When `false`, layers will keep the order in which they were added to the control. + */ + sortLayers?: boolean | undefined; + /** + * A [compare function](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Array/sort) + * that will be used for sorting the layers, when `sortLayers` is `true`. The function receives both the + * [`L.Layer`](https://leafletjs.com/reference.html#layer) instances and their names, as in + * `sortFunction(layerA, layerB, nameA, nameB)`. By default, it sorts layers alphabetically by their name. + */ + sortFunction?: ((layerA: Layer, layerB: Layer, nameA: string, nameB: string) => number) | undefined; + } + + interface LayersObject { + [name: string]: Layer; + } + + class Layers extends Control { + constructor(baseLayers?: LayersObject, overlays?: LayersObject, options?: LayersOptions); + addBaseLayer(layer: Layer, name: string): this; + addOverlay(layer: Layer, name: string): this; + removeLayer(layer: Layer): this; + expand(): this; + collapse(): this; + options: LayersOptions; + } + + interface ScaleOptions extends ControlOptions { + maxWidth?: number | undefined; + metric?: boolean | undefined; + imperial?: boolean | undefined; + updateWhenIdle?: boolean | undefined; + } + + class Scale extends Control { + constructor(options?: ScaleOptions); + options: ScaleOptions; + } +} + +export namespace control { + function zoom(options?: Control.ZoomOptions): Control.Zoom; + + function attribution(options?: Control.AttributionOptions): Control.Attribution; + + function layers( + baseLayers?: Control.LayersObject, + overlays?: Control.LayersObject, + options?: Control.LayersOptions, + ): Control.Layers; + + function scale(options?: Control.ScaleOptions): Control.Scale; +} + +export interface DivOverlayOptions { + offset?: PointExpression | undefined; + className?: string | undefined; + pane?: string | undefined; + interactive?: boolean | undefined; + content?: string | HTMLElement | ((layer: Layer) => string) | ((layer: Layer) => HTMLElement); +} + +export abstract class DivOverlay extends Layer { + constructor(latlng: LatLngExpression, options?: TooltipOptions); + constructor(options?: DivOverlayOptions, source?: Layer); + getLatLng(): LatLng | undefined; + setLatLng(latlng: LatLngExpression): this; + getContent(): Content | ((source: Layer) => Content) | undefined; + setContent(htmlContent: ((source: Layer) => Content) | Content): this; + getElement(): HTMLElement | undefined; + update(): void; + isOpen(): boolean; + bringToFront(): this; + bringToBack(): this; + openOn(map: Map): this; + toggle(layer?: Layer): this; + close(): this; + + options: DivOverlayOptions; +} + +export interface PopupOptions extends DivOverlayOptions { + maxWidth?: number | undefined; + minWidth?: number | undefined; + maxHeight?: number | undefined; + keepInView?: boolean | undefined; + closeButton?: boolean | undefined; + autoPan?: boolean | undefined; + autoPanPaddingTopLeft?: PointExpression | undefined; + autoPanPaddingBottomRight?: PointExpression | undefined; + autoPanPadding?: PointExpression | undefined; + autoClose?: boolean | undefined; + closeOnClick?: boolean | undefined; + closeOnEscapeKey?: boolean | undefined; +} + +export type Content = string | HTMLElement; + +export class Popup extends DivOverlay { + constructor(latlng: LatLngExpression, options?: TooltipOptions); + constructor(options?: PopupOptions, source?: Layer); + openOn(map: Map): this; + + options: PopupOptions; +} + +export function popup(options?: PopupOptions, source?: Layer): Popup; + +export type Direction = "right" | "left" | "top" | "bottom" | "center" | "auto"; + +export interface TooltipOptions extends DivOverlayOptions { + pane?: string | undefined; + offset?: PointExpression | undefined; + direction?: Direction | undefined; + permanent?: boolean | undefined; + sticky?: boolean | undefined; + opacity?: number | undefined; +} + +export class Tooltip extends DivOverlay { + constructor(latlng: LatLngExpression, options?: TooltipOptions); + constructor(options?: TooltipOptions, source?: Layer); + setOpacity(val: number): void; + + options: TooltipOptions; +} + +export function tooltip(options?: TooltipOptions, source?: Layer): Tooltip; + +export interface ZoomOptions { + animate?: boolean | undefined; +} + +export interface PanOptions { + animate?: boolean | undefined; + duration?: number | undefined; + easeLinearity?: number | undefined; + noMoveStart?: boolean | undefined; +} + +// This is not empty, it extends two interfaces into one... +export interface ZoomPanOptions extends ZoomOptions, PanOptions {} + +export interface InvalidateSizeOptions extends ZoomPanOptions { + debounceMoveend?: boolean | undefined; + pan?: boolean | undefined; +} + +export interface FitBoundsOptions extends ZoomOptions, PanOptions { + paddingTopLeft?: PointExpression | undefined; + paddingBottomRight?: PointExpression | undefined; + padding?: PointExpression | undefined; + maxZoom?: number | undefined; +} + +export interface PanInsideOptions extends PanOptions { + paddingTopLeft?: PointExpression | undefined; + paddingBottomRight?: PointExpression | undefined; + padding?: PointExpression | undefined; +} + +export interface LocateOptions { + watch?: boolean | undefined; + setView?: boolean | undefined; + maxZoom?: number | undefined; + timeout?: number | undefined; + maximumAge?: number | undefined; + enableHighAccuracy?: boolean | undefined; +} + +export class Handler extends Class { + constructor(map: Map); + enable(): this; + disable(): this; + enabled(): boolean; + + // Extension methods + addHooks?(): void; + removeHooks?(): void; +} + +export interface LeafletEvent { + type: string; + popup: any; + target: any; + sourceTarget: any; + propagatedFrom: any; + /** + * @deprecated The same as {@link LeafletEvent.propagatedFrom propagatedFrom}. + */ + layer: any; +} + +export interface LeafletMouseEvent extends LeafletEvent { + latlng: LatLng; + layerPoint: Point; + containerPoint: Point; + originalEvent: MouseEvent; +} + +export interface LeafletKeyboardEvent extends LeafletEvent { + originalEvent: KeyboardEvent; +} + +export interface LocationEvent extends LeafletEvent { + latlng: LatLng; + bounds: LatLngBounds; + accuracy: number; + altitude: number; + altitudeAccuracy: number; + heading: number; + speed: number; + timestamp: number; +} + +export interface ErrorEvent extends LeafletEvent { + message: string; + code: number; +} + +export interface LayerEvent extends LeafletEvent { + layer: Layer; +} + +export interface LayersControlEvent extends LayerEvent { + name: string; +} + +export interface TileEvent extends LeafletEvent { + tile: HTMLImageElement; + coords: Coords; +} + +export interface TileErrorEvent extends TileEvent { + error: Error; +} + +export interface ResizeEvent extends LeafletEvent { + oldSize: Point; + newSize: Point; +} + +export interface GeoJSONEvent extends LeafletEvent { + layer: Layer; + properties: any; + geometryType: string; + id: string; +} + +export interface PopupEvent extends LeafletEvent { + popup: Popup; +} + +export interface TooltipEvent extends LeafletEvent { + tooltip: Tooltip; +} + +export interface DragEndEvent extends LeafletEvent { + distance: number; +} + +export interface ZoomAnimEvent extends LeafletEvent { + center: LatLng; + zoom: number; + noUpdate: boolean; +} + +export namespace DomEvent { + type EventHandlerFn = (event: Event) => void; + + type PropagableEvent = LeafletMouseEvent | LeafletKeyboardEvent | LeafletEvent | Event; + + function on(el: HTMLElement, types: string, fn: EventHandlerFn, context?: any): typeof DomEvent; + + function on(el: HTMLElement, eventMap: { [eventName: string]: EventHandlerFn }, context?: any): typeof DomEvent; + + // tslint:disable:unified-signatures + function off(el: HTMLElement): typeof DomEvent; + + function off(el: HTMLElement, types: string, fn: EventHandlerFn, context?: any): typeof DomEvent; + + function off(el: HTMLElement, eventMap: { [eventName: string]: EventHandlerFn }, context?: any): typeof DomEvent; + // tslint:enable:unified-signatures + + function stopPropagation(ev: PropagableEvent): typeof DomEvent; + + function disableScrollPropagation(el: HTMLElement): typeof DomEvent; + + function disableClickPropagation(el: HTMLElement): typeof DomEvent; + + function preventDefault(ev: Event): typeof DomEvent; + + function stop(ev: PropagableEvent): typeof DomEvent; + + function getMousePosition(ev: MouseEvent, container?: HTMLElement): Point; + + function getWheelDelta(ev: Event): number; + + function addListener(el: HTMLElement, types: string, fn: EventHandlerFn, context?: any): typeof DomEvent; + + function addListener( + el: HTMLElement, + eventMap: { [eventName: string]: EventHandlerFn }, + context?: any, + ): typeof DomEvent; + + function removeListener(el: HTMLElement, types: string, fn: EventHandlerFn, context?: any): typeof DomEvent; + + function removeListener( + el: HTMLElement, + eventMap: { [eventName: string]: EventHandlerFn }, + context?: any, + ): typeof DomEvent; + + function getPropagationPath(ev: Event): HTMLElement[]; +} + +export interface DefaultMapPanes { + mapPane: HTMLElement; + tilePane: HTMLElement; + overlayPane: HTMLElement; + shadowPane: HTMLElement; + markerPane: HTMLElement; + tooltipPane: HTMLElement; + popupPane: HTMLElement; +} + +export class Map extends Evented { + constructor(element: string | HTMLElement, options?: MapOptions); + getRenderer(layer: Path): Renderer; + + // Methods for layers and controls + addControl(control: Control): this; + removeControl(control: Control): this; + addLayer(layer: Layer): this; + removeLayer(layer: Layer): this; + hasLayer(layer: Layer): boolean; + eachLayer(fn: (layer: Layer) => void, context?: any): this; + openPopup(popup: Popup): this; + openPopup(content: Content, latlng: LatLngExpression, options?: PopupOptions): this; + closePopup(popup?: Popup): this; + openTooltip(tooltip: Tooltip): this; + openTooltip(content: Content, latlng: LatLngExpression, options?: TooltipOptions): this; + closeTooltip(tooltip?: Tooltip): this; + + // Methods for modifying map state + setView(center: LatLngExpression, zoom?: number, options?: ZoomPanOptions): this; + setZoom(zoom: number, options?: ZoomPanOptions): this; + zoomIn(delta?: number, options?: ZoomOptions): this; + zoomOut(delta?: number, options?: ZoomOptions): this; + setZoomAround(position: Point | LatLngExpression, zoom: number, options?: ZoomOptions): this; + fitBounds(bounds: LatLngBoundsExpression, options?: FitBoundsOptions): this; + fitWorld(options?: FitBoundsOptions): this; + panTo(latlng: LatLngExpression, options?: PanOptions): this; + panBy(offset: PointExpression, options?: PanOptions): this; + setMaxBounds(bounds?: LatLngBoundsExpression): this; + setMinZoom(zoom: number): this; + setMaxZoom(zoom: number): this; + panInside(latLng: LatLngExpression, options?: PanInsideOptions): this; + panInsideBounds(bounds: LatLngBoundsExpression, options?: PanOptions): this; + /** + * Boolean for animate or advanced ZoomPanOptions + */ + invalidateSize(options?: boolean | InvalidateSizeOptions): this; + stop(): this; + flyTo(latlng: LatLngExpression, zoom?: number, options?: ZoomPanOptions): this; + flyToBounds(bounds: LatLngBoundsExpression, options?: FitBoundsOptions): this; + + // Other methods + addHandler(name: string, HandlerClass: typeof Handler): this; // Alternatively, HandlerClass: new(map: Map) => Handler + remove(): this; + createPane(name: string, container?: HTMLElement): HTMLElement; + /** + * Name of the pane or the pane as HTML-Element + */ + getPane(pane: string | HTMLElement): HTMLElement | undefined; + getPanes(): { [name: string]: HTMLElement } & DefaultMapPanes; + getContainer(): HTMLElement; + whenReady(fn: () => void, context?: any): this; + + // Methods for getting map state + getCenter(): LatLng; + getZoom(): number; + getBounds(): LatLngBounds; + getMinZoom(): number; + getMaxZoom(): number; + getBoundsZoom(bounds: LatLngBoundsExpression, inside?: boolean, padding?: Point): number; + getSize(): Point; + getPixelBounds(): Bounds; + getPixelOrigin(): Point; + getPixelWorldBounds(zoom?: number): Bounds; + + // Conversion methods + getZoomScale(toZoom: number, fromZoom?: number): number; + getScaleZoom(scale: number, fromZoom?: number): number; + project(latlng: LatLngExpression, zoom?: number): Point; + unproject(point: PointExpression, zoom?: number): LatLng; + layerPointToLatLng(point: PointExpression): LatLng; + latLngToLayerPoint(latlng: LatLngExpression): Point; + wrapLatLng(latlng: LatLngExpression): LatLng; + wrapLatLngBounds(bounds: LatLngBounds): LatLngBounds; + distance(latlng1: LatLngExpression, latlng2: LatLngExpression): number; + containerPointToLayerPoint(point: PointExpression): Point; + containerPointToLatLng(point: PointExpression): LatLng; + layerPointToContainerPoint(point: PointExpression): Point; + latLngToContainerPoint(latlng: LatLngExpression): Point; + mouseEventToContainerPoint(ev: MouseEvent): Point; + mouseEventToLayerPoint(ev: MouseEvent): Point; + mouseEventToLatLng(ev: MouseEvent): LatLng; + + // Geolocation methods + locate(options?: LocateOptions): this; + stopLocate(): this; + + // Properties + attributionControl: L.Control.Attribution; + boxZoom: Handler; + doubleClickZoom: Handler; + dragging: Handler; + keyboard: Handler; + scrollWheelZoom: Handler; + tapHold?: Handler | undefined; + touchZoom: Handler; + zoomControl: Control.Zoom; + + options: MapOptions; +} + +/** + * ID of a HTML-Element as string or the HTML-ELement itself + */ +export function map(element: string | HTMLElement, options?: MapOptions): Map; + +export interface BaseIconOptions extends LayerOptions { + iconUrl?: string | undefined; + iconRetinaUrl?: string | undefined; + iconSize?: PointExpression | undefined; + iconAnchor?: PointExpression | undefined; + popupAnchor?: PointExpression | undefined; + tooltipAnchor?: PointExpression | undefined; + shadowUrl?: string | undefined; + shadowRetinaUrl?: string | undefined; + shadowSize?: PointExpression | undefined; + shadowAnchor?: PointExpression | undefined; + className?: string | undefined; +} + +export interface IconOptions extends BaseIconOptions { + iconUrl: string; + crossOrigin?: CrossOrigin | boolean | undefined; +} + +export class Icon extends Layer { + constructor(options: T); + createIcon(oldIcon?: HTMLElement): HTMLElement; + createShadow(oldIcon?: HTMLElement): HTMLElement; + + options: T; +} + +export namespace Icon { + interface DefaultIconOptions extends BaseIconOptions { + imagePath?: string | undefined; + } + + class Default extends Icon { + static imagePath?: string | undefined; + constructor(options?: DefaultIconOptions); + } +} + +export function icon(options: IconOptions): Icon; + +export interface DivIconOptions extends BaseIconOptions { + html?: string | HTMLElement | false | undefined; + bgPos?: PointExpression | undefined; + iconSize?: PointExpression | undefined; + iconAnchor?: PointExpression | undefined; + popupAnchor?: PointExpression | undefined; + className?: string | undefined; +} + +export class DivIcon extends Icon { + constructor(options?: DivIconOptions); +} + +export function divIcon(options?: DivIconOptions): DivIcon; + +export interface MarkerOptions extends InteractiveLayerOptions { + icon?: Icon | DivIcon | undefined; + /** Whether the marker is draggable with mouse/touch or not. */ + draggable?: boolean | undefined; + /** Whether the marker can be tabbed to with a keyboard and clicked by pressing enter. */ + keyboard?: boolean | undefined; + /** Text for the browser tooltip that appear on marker hover (no tooltip by default). */ + title?: string | undefined; + /** Text for the `alt` attribute of the icon image (useful for accessibility). */ + alt?: string | undefined; + /** Option for putting the marker on top of all others (or below). */ + zIndexOffset?: number | undefined; + /** The opacity of the marker. */ + opacity?: number | undefined; + /** If `true`, the marker will get on top of others when you hover the mouse over it. */ + riseOnHover?: boolean | undefined; + /** The z-index offset used for the `riseOnHover` feature. */ + riseOffset?: number | undefined; + /** `Map pane` where the markers shadow will be added. */ + shadowPane?: string | undefined; + /** Whether to pan the map when dragging this marker near its edge or not. */ + autoPan?: boolean | undefined; + /** Distance (in pixels to the left/right and to the top/bottom) of the map edge to start panning the map. */ + autoPanPadding?: PointExpression | undefined; + /** Number of pixels the map should pan by. */ + autoPanSpeed?: number | undefined; + autoPanOnFocus?: boolean | undefined; +} + +export class Marker

extends Layer { + constructor(latlng: LatLngExpression, options?: MarkerOptions); + toGeoJSON(precision?: number | false): geojson.Feature; + getLatLng(): LatLng; + setLatLng(latlng: LatLngExpression): this; + setZIndexOffset(offset: number): this; + getIcon(): Icon | DivIcon; + setIcon(icon: Icon | DivIcon): this; + setOpacity(opacity: number): this; + getElement(): HTMLElement | undefined; + + // Properties + options: MarkerOptions; + dragging?: Handler | undefined; + feature?: geojson.Feature | undefined; + + protected _shadow: HTMLElement | undefined; +} + +export function marker

(latlng: LatLngExpression, options?: MarkerOptions): Marker

; + +export namespace Browser { + // sorting according to https://leafletjs.com/reference-1.5.0.html#browser + const ie: boolean; + const ielt9: boolean; + const edge: boolean; + const webkit: boolean; + const android: boolean; + const android23: boolean; + const androidStock: boolean; + const opera: boolean; + const chrome: boolean; + const gecko: boolean; + const safari: boolean; + const opera12: boolean; + const win: boolean; + const ie3d: boolean; + const webkit3d: boolean; + const gecko3d: boolean; + const any3d: boolean; + const mobile: boolean; + const mobileWebkit: boolean; + const mobileWebkit3d: boolean; + const msPointer: boolean; + const pointer: boolean; + const touch: boolean; + const mobileOpera: boolean; + const mobileGecko: boolean; + const retina: boolean; + const canvas: boolean; + const svg: boolean; + const vml: boolean; +} + +export namespace Util { + function extend(dest: D, src?: S1): D & S1; + function extend(dest: D, src1: S1, src2: S2): D & S1 & S2; + function extend( + dest: D, + src1: S1, + src2: S2, + src3: S3, + ): D & S1 & S2 & S3; + function extend(dest: any, ...src: any[]): any; + + function create(proto: object | null, properties?: PropertyDescriptorMap): any; + function bind(fn: (...args: any[]) => void, ...obj: any[]): () => void; + function stamp(obj: any): number; + function throttle(fn: () => void, time: number, context: any): () => void; + function wrapNum(num: number, range: number[], includeMax?: boolean): number; + function falseFn(): false; + function formatNum(num: number, digits?: number | false): number; + function trim(str: string): string; + function splitWords(str: string): string[]; + function setOptions(obj: any, options: any): any; + function getParamString(obj: any, existingUrl?: string, uppercase?: boolean): string; + function template(str: string, data: any): string; + function isArray(obj: any): boolean; + function indexOf(array: any[], el: any): number; + function requestAnimFrame(fn: (timestamp: number) => void, context?: any, immediate?: boolean): number; + function cancelAnimFrame(id: number): void; + + let lastId: number; + let emptyImageUrl: string; +} + +export const extend: typeof Util["extend"]; +export const bind: typeof Util["bind"]; +export const stamp: typeof Util["stamp"]; +export const setOptions: typeof Util["setOptions"]; + +export function noConflict(): any; diff --git a/node_modules/@types/leaflet/package.json b/node_modules/@types/leaflet/package.json new file mode 100644 index 00000000..2ad61f74 --- /dev/null +++ b/node_modules/@types/leaflet/package.json @@ -0,0 +1,63 @@ +{ + "name": "@types/leaflet", + "version": "1.9.17", + "description": "TypeScript definitions for leaflet", + "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/leaflet", + "license": "MIT", + "contributors": [ + { + "name": "Alejandro Sánchez", + "githubUsername": "alejo90", + "url": "https://github.com/alejo90" + }, + { + "name": "Arne Schubert", + "githubUsername": "atd-schubert", + "url": "https://github.com/atd-schubert" + }, + { + "name": "Michael Auer", + "githubUsername": "mcauer", + "url": "https://github.com/mcauer" + }, + { + "name": "Roni Karilkar", + "githubUsername": "ronikar", + "url": "https://github.com/ronikar" + }, + { + "name": "Vladimir Dashukevich", + "githubUsername": "life777", + "url": "https://github.com/life777" + }, + { + "name": "Henry Thasler", + "githubUsername": "henrythasler", + "url": "https://github.com/henrythasler" + }, + { + "name": "Colin Doig", + "githubUsername": "captain-igloo", + "url": "https://github.com/captain-igloo" + }, + { + "name": "Hugo Sales", + "githubUsername": "someonewithpc", + "url": "https://github.com/someonewithpc" + } + ], + "main": "", + "types": "index.d.ts", + "repository": { + "type": "git", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git", + "directory": "types/leaflet" + }, + "scripts": {}, + "dependencies": { + "@types/geojson": "*" + }, + "peerDependencies": {}, + "typesPublisherContentHash": "43c209f5704bdfdb25a0c1401b4e2b4651495b4ad76fa83b2c2bc677b2995a15", + "typeScriptVersion": "5.0" +} \ No newline at end of file diff --git a/node_modules/leaflet/CHANGELOG.md b/node_modules/leaflet/CHANGELOG.md new file mode 100644 index 00000000..477da2be --- /dev/null +++ b/node_modules/leaflet/CHANGELOG.md @@ -0,0 +1,2191 @@ +Leaflet Changelog +================= + +(all changes without author notice are by [@mourner](https://github.com/mourner)) + +## 1.9.4 (2023-05-18) + +### 🐞 Bug fixes + +- Fix tile gaps in Chromium-based browsers ([#8891](https://github.com/Leaflet/Leaflet/pull/8891) by [@IvanSanchez](https://github.com/IvanSanchez)) +- Fix vector drifts when `zoomAnimation` is `false` and zooming via `flyTo` or pinch ([#8794](https://github.com/Leaflet/Leaflet/pull/8794) by [@plainheart](https://github.com/plainheart)) +- Ensure `toGeoJSON()` still works with an empty array ([#8737](https://github.com/Leaflet/Leaflet/pull/8737) by [@Falke-Design](https://github.com/Falke-Design)) +- Ensure `LineUtil` and `PolyUtil` only iterate over array values and not properties ([#8840](https://github.com/Leaflet/Leaflet/pull/8840) by [@Falke-Design](https://github.com/Falke-Design)) +- Fix rounding errors in center calculation of `LineUtil` and `PolyUtil` for small layers ([#8784](https://github.com/Leaflet/Leaflet/pull/8784) by [@Falke-Design](https://github.com/Falke-Design)) +- Prevent unwanted layer toggle while expanding the Layers control on mobile ([#8910](https://github.com/Leaflet/Leaflet/pull/8910) by [@Falke-Design](https://github.com/Falke-Design)) +- Fix an error when a focusing on a `Tooltip`-bound `FeatureGroup` that contains a layer without a `getElement` method ([#8890](https://github.com/Leaflet/Leaflet/pull/8890) by [@Falke-Design](https://github.com/Falke-Design)) +- Fix `Tooltip` is not showing when loaded dynamically while moving the map ([#8672](https://github.com/Leaflet/Leaflet/pull/8672) by [@theGOTOguy](https://github.com/theGOTOguy)) +- Fix `noMoveStart` option not applying to `fitBounds` ([#8911](https://github.com/Leaflet/Leaflet/pull/8911) by [@AbdullahSohail-SE](https://github.com/AbdullahSohail-SE)) +- Fix outlines showing up when interacting with the map on Safari 16.4+ ([#8917](https://github.com/Leaflet/Leaflet/pull/8917) by [@jonkoops](https://github.com/jonkoops)) + +## 1.9.3 (2022-11-18) + +### 🙌 Accessibility +- Expand the layers control on Enter keydown ([#8556](https://github.com/Leaflet/Leaflet/pull/8556) by [@larsgw](https://github.com/larsgw)) +- Align the scale control's alpha transparency with the attribution control ([#8547](https://github.com/Leaflet/Leaflet/pull/8547) by [@Malvoz](https://github.com/Malvoz)) +- Allow the scale control's text to overflow the container ([#8548](https://github.com/Leaflet/Leaflet/pull/8548) by [@Malvoz](https://github.com/Malvoz)) + +### 🐞 Bug fixes +- Remove internal usage of `L` global ([#8536](https://github.com/Leaflet/Leaflet/pull/8536) by [@mourner](https://github.com/mourner)) +- Fix intermittent wobble when using `setMaxBounds(map.getBounds())` ([#8534](https://github.com/Leaflet/Leaflet/pull/8534) by [@rjackson](https://github.com/rjackson)) +- Ensure that `latLngsToCoords()` does not return references passed to it ([#7344](https://github.com/Leaflet/Leaflet/pull/7344) by [@marlo22](https://github.com/marlo22])) +- Ensure `worldCopyJump()` behavior is consistent when using a keyboard ([#8562](https://github.com/Leaflet/Leaflet/pull/8562) by [@Falke-Design](https://github.com/Falke-Design)) +- Ensure correct target is used for the `popupopen` event ([#8571](https://github.com/Leaflet/Leaflet/pull/8571) by [@Belair34](https://github.com/Belair34)) +- Prevent recursion when panning a `Popup` ([#8520](https://github.com/Leaflet/Leaflet/pull/8520) by [@rjackson](https://github.com/rjackson)) +- Support CSS [`position: sticky`](https://developer.mozilla.org/en-US/docs/Web/CSS/position#sticky) for map container ([#8550](https://github.com/Leaflet/Leaflet/pull/8550) by [@tmiaa](https://github.com/tmiaa)) + +## 1.9.2 (2022-10-04) + +### 🐞 Bug fixes +* ⚠️ Drop ESM entrypoint from package because of numerous compatibility issues with plugins (import `leaflet/dist/leaflet-src.esm.js` explicitly instead to take advantage; ESM by default will come in v2) ([#8493](https://github.com/Leaflet/Leaflet/pull/8493) by [@jonkoops](https://github.com/jonkoops)) +* Fix a bug where tooltips could throw an error with canvas renderer ([#8498](https://github.com/Leaflet/Leaflet/pull/8498) by [@Falke-Design](https://github.com/Falke-Design)) +* Fix a bug with incorrect marker popup location when there are multiple markers registered to the same popup ([#8523](https://github.com/Leaflet/Leaflet/pull/8523) by [@raychanks](https://github.com/raychanks)). + +### 🧪 Tests +* Fix unit tests suite stopping abruptly on Mac ([#8478](https://github.com/Leaflet/Leaflet/pull/8478)) + +### 📝 Docs +* Fix `Bounds` `equals` parameters in docs ([#8500](https://github.com/Leaflet/Leaflet/pull/8500) by [@Falke-Design](https://github.com/Falke-Design)) + +## 1.9.2 (2022-10-04) + +### 🐞 Bug fixes +* ⚠️ Drop ESM entrypoint from package because of numerous compatibility issues with plugins (import `leaflet/dist/leaflet-src.esm.js` explicitly instead to take advantage; ESM by default will come in v2) ([#8493](https://github.com/Leaflet/Leaflet/pull/8493) by [@jonkoops](https://github.com/jonkoops)) +* Fix a bug where tooltips could throw an error with canvas renderer ([#8498](https://github.com/Leaflet/Leaflet/pull/8498) by [@Falke-Design](https://github.com/Falke-Design)) +* Fix a bug with incorrect marker popup location when there are multiple markers registered to the same popup ([#8523](https://github.com/Leaflet/Leaflet/pull/8523) by [@raychanks](https://github.com/raychanks)). + +### 🧪 Tests +* Fix unit tests suite stopping abruptly on Mac ([#8478](https://github.com/Leaflet/Leaflet/pull/8478)) + +### 📝 Docs +* Fix `Bounds` `equals` parameters in docs ([#8500](https://github.com/Leaflet/Leaflet/pull/8500) by [@Falke-Design](https://github.com/Falke-Design)) + +## 1.9.1 (2022-09-23) +* Fix `Events` `listens` not propagating to parent objects, in particular fixing compatibility with **Leaflet.markercluster** plugin ([#8211](https://github.com/Leaflet/Leaflet/pull/8457) by [@Falke-Design](https://github.com/Falke-Design)) + +## 1.9.0 (2022-09-21) + +### ⚠️ Breaking Changes +* Update `color-adjust` to `print-color-adjust` ([#8211](https://github.com/Leaflet/Leaflet/pull/8211) by [@Malvoz](https://github.com/Malvoz)) + +### ❇️ API changes +* Add `content` and `latLng` options to `Popup` / `Tooltip` constructors ([#7783](https://github.com/Leaflet/Leaflet/pull/7783) by [@Falke-Design](https://github.com/Falke-Design)) +* Extend `Bounds` to have the same functions as `LatLngBounds` ([#7882](https://github.com/Leaflet/Leaflet/pull/7882) by [@Falke-Design](https://github.com/Falke-Design)) + +### ✨ Improvements +* Expose ESM entrypoint with Leaflet global ([#8329](https://github.com/Leaflet/Leaflet/pull/8329) by [@jonkoops](https://github.com/Falke-Design)) +* Update `getCenter()` calculation and move it to `PolyUtil` / `LineUtil` ([#7603](https://github.com/Leaflet/Leaflet/pull/7603) by [@Falke-Design](https://github.com/Falke-Design)) +* Remove border styles in overflowing popups ([#8260](https://github.com/Leaflet/Leaflet/pull/8260) by [@Malvoz](https://github.com/Malvoz)) +* Fix "listener not found" warning when setting `maxBounds` ([#8168](https://github.com/Leaflet/Leaflet/pull/8168)) +* Remove "listener not found" warning ([#8234](https://github.com/Leaflet/Leaflet/pull/8234) by [@Falke-Design](https://github.com/Falke-Design)) +* Extend `Events.listens` to search for specific function ([#8161](https://github.com/Leaflet/Leaflet/pull/8161) by [@Falke-Design](https://github.com/Falke-Design)) +* Add `noMoveStart` option to `panTo` ([#6685](https://github.com/Leaflet/Leaflet/pull/6685) by [@Chivano](https://github.com/Chivano)) +* Add `FeatureCollection` handling to `geometryToLayer` ([#8163](https://github.com/Leaflet/Leaflet/pull/8163) by [@Falke-Design](https://github.com/Falke-Design)) + +### 🙌 Accessibility +* Improve `Tooltip` accessibility (focus and voice over) ([#8247](https://github.com/Leaflet/Leaflet/pull/8247) by [@alekzvik](https://github.com/alekzvik)) +* Fix links in accessibility guide ([#8198](https://github.com/Leaflet/Leaflet/pull/8198) by [@Malvoz](https://github.com/Malvoz)) +* Remove redundant `role="presentation"` from image tiles ([#8172](https://github.com/Leaflet/Leaflet/pull/8172) by [@Malvoz](https://github.com/Malvoz)) + +### 🐞 Bug fixes +* Fix invalid GeoJSON on unbalanced arrays ([#7637](https://github.com/Leaflet/Leaflet/pull/7637) by [@steff1986](https://github.com/steff1986)) +* Fix 2 step zooming while using mouse wheel scrolling ([#8298](https://github.com/Leaflet/Leaflet/pull/8298) by [@Falke-Design](https://github.com/Falke-Design)) +* Fix wrong assigned parameter while calling `map._move` over `requestAnimFrame` ([#8328](https://github.com/Leaflet/Leaflet/pull/8328) by [@AMDvsTMD](https://github.com/AMDvsTMD)) +* Fix `_isClickDisabled` to not throw no error if parent is removed from DOM ([#8288](https://github.com/Leaflet/Leaflet/pull/8288) by [@Falke-Design](https://github.com/Falke-Design)) +* Fix `DomEvent.DoubleTap` to ignore clicks on `

` is submitted). +// Use it inside listener functions. +function preventDefault(e) { + if (e.preventDefault) { + e.preventDefault(); + } else { + e.returnValue = false; + } + return this; +} + +// @function stop(ev: DOMEvent): this +// Does `stopPropagation` and `preventDefault` at the same time. +function stop(e) { + preventDefault(e); + stopPropagation(e); + return this; +} + +// @function getPropagationPath(ev: DOMEvent): Array +// Compatibility polyfill for [`Event.composedPath()`](https://developer.mozilla.org/en-US/docs/Web/API/Event/composedPath). +// Returns an array containing the `HTMLElement`s that the given DOM event +// should propagate to (if not stopped). +function getPropagationPath(ev) { + if (ev.composedPath) { + return ev.composedPath(); + } + + var path = []; + var el = ev.target; + + while (el) { + path.push(el); + el = el.parentNode; + } + return path; +} + + +// @function getMousePosition(ev: DOMEvent, container?: HTMLElement): Point +// Gets normalized mouse position from a DOM event relative to the +// `container` (border excluded) or to the whole page if not specified. +function getMousePosition(e, container) { + if (!container) { + return new Point(e.clientX, e.clientY); + } + + var scale = getScale(container), + offset = scale.boundingClientRect; // left and top values are in page scale (like the event clientX/Y) + + return new Point( + // offset.left/top values are in page scale (like clientX/Y), + // whereas clientLeft/Top (border width) values are the original values (before CSS scale applies). + (e.clientX - offset.left) / scale.x - container.clientLeft, + (e.clientY - offset.top) / scale.y - container.clientTop + ); +} + + +// except , Safari and +// We need double the scroll pixels (see #7403 and #4538) for all Browsers +// except OSX (Mac) -> 3x, Chrome running on Linux 1x + +var wheelPxFactor = + (Browser.linux && Browser.chrome) ? window.devicePixelRatio : + Browser.mac ? window.devicePixelRatio * 3 : + window.devicePixelRatio > 0 ? 2 * window.devicePixelRatio : 1; +// @function getWheelDelta(ev: DOMEvent): Number +// Gets normalized wheel delta from a wheel DOM event, in vertical +// pixels scrolled (negative if scrolling down). +// Events from pointing devices without precise scrolling are mapped to +// a best guess of 60 pixels. +function getWheelDelta(e) { + return (Browser.edge) ? e.wheelDeltaY / 2 : // Don't trust window-geometry-based delta + (e.deltaY && e.deltaMode === 0) ? -e.deltaY / wheelPxFactor : // Pixels + (e.deltaY && e.deltaMode === 1) ? -e.deltaY * 20 : // Lines + (e.deltaY && e.deltaMode === 2) ? -e.deltaY * 60 : // Pages + (e.deltaX || e.deltaZ) ? 0 : // Skip horizontal/depth wheel events + e.wheelDelta ? (e.wheelDeltaY || e.wheelDelta) / 2 : // Legacy IE pixels + (e.detail && Math.abs(e.detail) < 32765) ? -e.detail * 20 : // Legacy Moz lines + e.detail ? e.detail / -32765 * 60 : // Legacy Moz pages + 0; +} + +// check if element really left/entered the event target (for mouseenter/mouseleave) +function isExternalTarget(el, e) { + + var related = e.relatedTarget; + + if (!related) { return true; } + + try { + while (related && (related !== el)) { + related = related.parentNode; + } + } catch (err) { + return false; + } + return (related !== el); +} + +var DomEvent = { + __proto__: null, + on: on, + off: off, + stopPropagation: stopPropagation, + disableScrollPropagation: disableScrollPropagation, + disableClickPropagation: disableClickPropagation, + preventDefault: preventDefault, + stop: stop, + getPropagationPath: getPropagationPath, + getMousePosition: getMousePosition, + getWheelDelta: getWheelDelta, + isExternalTarget: isExternalTarget, + addListener: on, + removeListener: off +}; + +/* + * @class PosAnimation + * @aka L.PosAnimation + * @inherits Evented + * Used internally for panning animations, utilizing CSS3 Transitions for modern browsers and a timer fallback for IE6-9. + * + * @example + * ```js + * var myPositionMarker = L.marker([48.864716, 2.294694]).addTo(map); + * + * myPositionMarker.on("click", function() { + * var pos = map.latLngToLayerPoint(myPositionMarker.getLatLng()); + * pos.y -= 25; + * var fx = new L.PosAnimation(); + * + * fx.once('end',function() { + * pos.y += 25; + * fx.run(myPositionMarker._icon, pos, 0.8); + * }); + * + * fx.run(myPositionMarker._icon, pos, 0.3); + * }); + * + * ``` + * + * @constructor L.PosAnimation() + * Creates a `PosAnimation` object. + * + */ + +var PosAnimation = Evented.extend({ + + // @method run(el: HTMLElement, newPos: Point, duration?: Number, easeLinearity?: Number) + // Run an animation of a given element to a new position, optionally setting + // duration in seconds (`0.25` by default) and easing linearity factor (3rd + // argument of the [cubic bezier curve](https://cubic-bezier.com/#0,0,.5,1), + // `0.5` by default). + run: function (el, newPos, duration, easeLinearity) { + this.stop(); + + this._el = el; + this._inProgress = true; + this._duration = duration || 0.25; + this._easeOutPower = 1 / Math.max(easeLinearity || 0.5, 0.2); + + this._startPos = getPosition(el); + this._offset = newPos.subtract(this._startPos); + this._startTime = +new Date(); + + // @event start: Event + // Fired when the animation starts + this.fire('start'); + + this._animate(); + }, + + // @method stop() + // Stops the animation (if currently running). + stop: function () { + if (!this._inProgress) { return; } + + this._step(true); + this._complete(); + }, + + _animate: function () { + // animation loop + this._animId = requestAnimFrame(this._animate, this); + this._step(); + }, + + _step: function (round) { + var elapsed = (+new Date()) - this._startTime, + duration = this._duration * 1000; + + if (elapsed < duration) { + this._runFrame(this._easeOut(elapsed / duration), round); + } else { + this._runFrame(1); + this._complete(); + } + }, + + _runFrame: function (progress, round) { + var pos = this._startPos.add(this._offset.multiplyBy(progress)); + if (round) { + pos._round(); + } + setPosition(this._el, pos); + + // @event step: Event + // Fired continuously during the animation. + this.fire('step'); + }, + + _complete: function () { + cancelAnimFrame(this._animId); + + this._inProgress = false; + // @event end: Event + // Fired when the animation ends. + this.fire('end'); + }, + + _easeOut: function (t) { + return 1 - Math.pow(1 - t, this._easeOutPower); + } +}); + +/* + * @class Map + * @aka L.Map + * @inherits Evented + * + * The central class of the API — it is used to create a map on a page and manipulate it. + * + * @example + * + * ```js + * // initialize the map on the "map" div with a given center and zoom + * var map = L.map('map', { + * center: [51.505, -0.09], + * zoom: 13 + * }); + * ``` + * + */ + +var Map = Evented.extend({ + + options: { + // @section Map State Options + // @option crs: CRS = L.CRS.EPSG3857 + // The [Coordinate Reference System](#crs) to use. Don't change this if you're not + // sure what it means. + crs: EPSG3857, + + // @option center: LatLng = undefined + // Initial geographic center of the map + center: undefined, + + // @option zoom: Number = undefined + // Initial map zoom level + zoom: undefined, + + // @option minZoom: Number = * + // Minimum zoom level of the map. + // If not specified and at least one `GridLayer` or `TileLayer` is in the map, + // the lowest of their `minZoom` options will be used instead. + minZoom: undefined, + + // @option maxZoom: Number = * + // Maximum zoom level of the map. + // If not specified and at least one `GridLayer` or `TileLayer` is in the map, + // the highest of their `maxZoom` options will be used instead. + maxZoom: undefined, + + // @option layers: Layer[] = [] + // Array of layers that will be added to the map initially + layers: [], + + // @option maxBounds: LatLngBounds = null + // When this option is set, the map restricts the view to the given + // geographical bounds, bouncing the user back if the user tries to pan + // outside the view. To set the restriction dynamically, use + // [`setMaxBounds`](#map-setmaxbounds) method. + maxBounds: undefined, + + // @option renderer: Renderer = * + // The default method for drawing vector layers on the map. `L.SVG` + // or `L.Canvas` by default depending on browser support. + renderer: undefined, + + + // @section Animation Options + // @option zoomAnimation: Boolean = true + // Whether the map zoom animation is enabled. By default it's enabled + // in all browsers that support CSS3 Transitions except Android. + zoomAnimation: true, + + // @option zoomAnimationThreshold: Number = 4 + // Won't animate zoom if the zoom difference exceeds this value. + zoomAnimationThreshold: 4, + + // @option fadeAnimation: Boolean = true + // Whether the tile fade animation is enabled. By default it's enabled + // in all browsers that support CSS3 Transitions except Android. + fadeAnimation: true, + + // @option markerZoomAnimation: Boolean = true + // Whether markers animate their zoom with the zoom animation, if disabled + // they will disappear for the length of the animation. By default it's + // enabled in all browsers that support CSS3 Transitions except Android. + markerZoomAnimation: true, + + // @option transform3DLimit: Number = 2^23 + // Defines the maximum size of a CSS translation transform. The default + // value should not be changed unless a web browser positions layers in + // the wrong place after doing a large `panBy`. + transform3DLimit: 8388608, // Precision limit of a 32-bit float + + // @section Interaction Options + // @option zoomSnap: Number = 1 + // Forces the map's zoom level to always be a multiple of this, particularly + // right after a [`fitBounds()`](#map-fitbounds) or a pinch-zoom. + // By default, the zoom level snaps to the nearest integer; lower values + // (e.g. `0.5` or `0.1`) allow for greater granularity. A value of `0` + // means the zoom level will not be snapped after `fitBounds` or a pinch-zoom. + zoomSnap: 1, + + // @option zoomDelta: Number = 1 + // Controls how much the map's zoom level will change after a + // [`zoomIn()`](#map-zoomin), [`zoomOut()`](#map-zoomout), pressing `+` + // or `-` on the keyboard, or using the [zoom controls](#control-zoom). + // Values smaller than `1` (e.g. `0.5`) allow for greater granularity. + zoomDelta: 1, + + // @option trackResize: Boolean = true + // Whether the map automatically handles browser window resize to update itself. + trackResize: true + }, + + initialize: function (id, options) { // (HTMLElement or String, Object) + options = setOptions(this, options); + + // Make sure to assign internal flags at the beginning, + // to avoid inconsistent state in some edge cases. + this._handlers = []; + this._layers = {}; + this._zoomBoundLayers = {}; + this._sizeChanged = true; + + this._initContainer(id); + this._initLayout(); + + // hack for https://github.com/Leaflet/Leaflet/issues/1980 + this._onResize = bind(this._onResize, this); + + this._initEvents(); + + if (options.maxBounds) { + this.setMaxBounds(options.maxBounds); + } + + if (options.zoom !== undefined) { + this._zoom = this._limitZoom(options.zoom); + } + + if (options.center && options.zoom !== undefined) { + this.setView(toLatLng(options.center), options.zoom, {reset: true}); + } + + this.callInitHooks(); + + // don't animate on browsers without hardware-accelerated transitions or old Android/Opera + this._zoomAnimated = TRANSITION && Browser.any3d && !Browser.mobileOpera && + this.options.zoomAnimation; + + // zoom transitions run with the same duration for all layers, so if one of transitionend events + // happens after starting zoom animation (propagating to the map pane), we know that it ended globally + if (this._zoomAnimated) { + this._createAnimProxy(); + on(this._proxy, TRANSITION_END, this._catchTransitionEnd, this); + } + + this._addLayers(this.options.layers); + }, + + + // @section Methods for modifying map state + + // @method setView(center: LatLng, zoom: Number, options?: Zoom/pan options): this + // Sets the view of the map (geographical center and zoom) with the given + // animation options. + setView: function (center, zoom, options) { + + zoom = zoom === undefined ? this._zoom : this._limitZoom(zoom); + center = this._limitCenter(toLatLng(center), zoom, this.options.maxBounds); + options = options || {}; + + this._stop(); + + if (this._loaded && !options.reset && options !== true) { + + if (options.animate !== undefined) { + options.zoom = extend({animate: options.animate}, options.zoom); + options.pan = extend({animate: options.animate, duration: options.duration}, options.pan); + } + + // try animating pan or zoom + var moved = (this._zoom !== zoom) ? + this._tryAnimatedZoom && this._tryAnimatedZoom(center, zoom, options.zoom) : + this._tryAnimatedPan(center, options.pan); + + if (moved) { + // prevent resize handler call, the view will refresh after animation anyway + clearTimeout(this._sizeTimer); + return this; + } + } + + // animation didn't start, just reset the map view + this._resetView(center, zoom, options.pan && options.pan.noMoveStart); + + return this; + }, + + // @method setZoom(zoom: Number, options?: Zoom/pan options): this + // Sets the zoom of the map. + setZoom: function (zoom, options) { + if (!this._loaded) { + this._zoom = zoom; + return this; + } + return this.setView(this.getCenter(), zoom, {zoom: options}); + }, + + // @method zoomIn(delta?: Number, options?: Zoom options): this + // Increases the zoom of the map by `delta` ([`zoomDelta`](#map-zoomdelta) by default). + zoomIn: function (delta, options) { + delta = delta || (Browser.any3d ? this.options.zoomDelta : 1); + return this.setZoom(this._zoom + delta, options); + }, + + // @method zoomOut(delta?: Number, options?: Zoom options): this + // Decreases the zoom of the map by `delta` ([`zoomDelta`](#map-zoomdelta) by default). + zoomOut: function (delta, options) { + delta = delta || (Browser.any3d ? this.options.zoomDelta : 1); + return this.setZoom(this._zoom - delta, options); + }, + + // @method setZoomAround(latlng: LatLng, zoom: Number, options: Zoom options): this + // Zooms the map while keeping a specified geographical point on the map + // stationary (e.g. used internally for scroll zoom and double-click zoom). + // @alternative + // @method setZoomAround(offset: Point, zoom: Number, options: Zoom options): this + // Zooms the map while keeping a specified pixel on the map (relative to the top-left corner) stationary. + setZoomAround: function (latlng, zoom, options) { + var scale = this.getZoomScale(zoom), + viewHalf = this.getSize().divideBy(2), + containerPoint = latlng instanceof Point ? latlng : this.latLngToContainerPoint(latlng), + + centerOffset = containerPoint.subtract(viewHalf).multiplyBy(1 - 1 / scale), + newCenter = this.containerPointToLatLng(viewHalf.add(centerOffset)); + + return this.setView(newCenter, zoom, {zoom: options}); + }, + + _getBoundsCenterZoom: function (bounds, options) { + + options = options || {}; + bounds = bounds.getBounds ? bounds.getBounds() : toLatLngBounds(bounds); + + var paddingTL = toPoint(options.paddingTopLeft || options.padding || [0, 0]), + paddingBR = toPoint(options.paddingBottomRight || options.padding || [0, 0]), + + zoom = this.getBoundsZoom(bounds, false, paddingTL.add(paddingBR)); + + zoom = (typeof options.maxZoom === 'number') ? Math.min(options.maxZoom, zoom) : zoom; + + if (zoom === Infinity) { + return { + center: bounds.getCenter(), + zoom: zoom + }; + } + + var paddingOffset = paddingBR.subtract(paddingTL).divideBy(2), + + swPoint = this.project(bounds.getSouthWest(), zoom), + nePoint = this.project(bounds.getNorthEast(), zoom), + center = this.unproject(swPoint.add(nePoint).divideBy(2).add(paddingOffset), zoom); + + return { + center: center, + zoom: zoom + }; + }, + + // @method fitBounds(bounds: LatLngBounds, options?: fitBounds options): this + // Sets a map view that contains the given geographical bounds with the + // maximum zoom level possible. + fitBounds: function (bounds, options) { + + bounds = toLatLngBounds(bounds); + + if (!bounds.isValid()) { + throw new Error('Bounds are not valid.'); + } + + var target = this._getBoundsCenterZoom(bounds, options); + return this.setView(target.center, target.zoom, options); + }, + + // @method fitWorld(options?: fitBounds options): this + // Sets a map view that mostly contains the whole world with the maximum + // zoom level possible. + fitWorld: function (options) { + return this.fitBounds([[-90, -180], [90, 180]], options); + }, + + // @method panTo(latlng: LatLng, options?: Pan options): this + // Pans the map to a given center. + panTo: function (center, options) { // (LatLng) + return this.setView(center, this._zoom, {pan: options}); + }, + + // @method panBy(offset: Point, options?: Pan options): this + // Pans the map by a given number of pixels (animated). + panBy: function (offset, options) { + offset = toPoint(offset).round(); + options = options || {}; + + if (!offset.x && !offset.y) { + return this.fire('moveend'); + } + // If we pan too far, Chrome gets issues with tiles + // and makes them disappear or appear in the wrong place (slightly offset) #2602 + if (options.animate !== true && !this.getSize().contains(offset)) { + this._resetView(this.unproject(this.project(this.getCenter()).add(offset)), this.getZoom()); + return this; + } + + if (!this._panAnim) { + this._panAnim = new PosAnimation(); + + this._panAnim.on({ + 'step': this._onPanTransitionStep, + 'end': this._onPanTransitionEnd + }, this); + } + + // don't fire movestart if animating inertia + if (!options.noMoveStart) { + this.fire('movestart'); + } + + // animate pan unless animate: false specified + if (options.animate !== false) { + addClass(this._mapPane, 'leaflet-pan-anim'); + + var newPos = this._getMapPanePos().subtract(offset).round(); + this._panAnim.run(this._mapPane, newPos, options.duration || 0.25, options.easeLinearity); + } else { + this._rawPanBy(offset); + this.fire('move').fire('moveend'); + } + + return this; + }, + + // @method flyTo(latlng: LatLng, zoom?: Number, options?: Zoom/pan options): this + // Sets the view of the map (geographical center and zoom) performing a smooth + // pan-zoom animation. + flyTo: function (targetCenter, targetZoom, options) { + + options = options || {}; + if (options.animate === false || !Browser.any3d) { + return this.setView(targetCenter, targetZoom, options); + } + + this._stop(); + + var from = this.project(this.getCenter()), + to = this.project(targetCenter), + size = this.getSize(), + startZoom = this._zoom; + + targetCenter = toLatLng(targetCenter); + targetZoom = targetZoom === undefined ? startZoom : targetZoom; + + var w0 = Math.max(size.x, size.y), + w1 = w0 * this.getZoomScale(startZoom, targetZoom), + u1 = (to.distanceTo(from)) || 1, + rho = 1.42, + rho2 = rho * rho; + + function r(i) { + var s1 = i ? -1 : 1, + s2 = i ? w1 : w0, + t1 = w1 * w1 - w0 * w0 + s1 * rho2 * rho2 * u1 * u1, + b1 = 2 * s2 * rho2 * u1, + b = t1 / b1, + sq = Math.sqrt(b * b + 1) - b; + + // workaround for floating point precision bug when sq = 0, log = -Infinite, + // thus triggering an infinite loop in flyTo + var log = sq < 0.000000001 ? -18 : Math.log(sq); + + return log; + } + + function sinh(n) { return (Math.exp(n) - Math.exp(-n)) / 2; } + function cosh(n) { return (Math.exp(n) + Math.exp(-n)) / 2; } + function tanh(n) { return sinh(n) / cosh(n); } + + var r0 = r(0); + + function w(s) { return w0 * (cosh(r0) / cosh(r0 + rho * s)); } + function u(s) { return w0 * (cosh(r0) * tanh(r0 + rho * s) - sinh(r0)) / rho2; } + + function easeOut(t) { return 1 - Math.pow(1 - t, 1.5); } + + var start = Date.now(), + S = (r(1) - r0) / rho, + duration = options.duration ? 1000 * options.duration : 1000 * S * 0.8; + + function frame() { + var t = (Date.now() - start) / duration, + s = easeOut(t) * S; + + if (t <= 1) { + this._flyToFrame = requestAnimFrame(frame, this); + + this._move( + this.unproject(from.add(to.subtract(from).multiplyBy(u(s) / u1)), startZoom), + this.getScaleZoom(w0 / w(s), startZoom), + {flyTo: true}); + + } else { + this + ._move(targetCenter, targetZoom) + ._moveEnd(true); + } + } + + this._moveStart(true, options.noMoveStart); + + frame.call(this); + return this; + }, + + // @method flyToBounds(bounds: LatLngBounds, options?: fitBounds options): this + // Sets the view of the map with a smooth animation like [`flyTo`](#map-flyto), + // but takes a bounds parameter like [`fitBounds`](#map-fitbounds). + flyToBounds: function (bounds, options) { + var target = this._getBoundsCenterZoom(bounds, options); + return this.flyTo(target.center, target.zoom, options); + }, + + // @method setMaxBounds(bounds: LatLngBounds): this + // Restricts the map view to the given bounds (see the [maxBounds](#map-maxbounds) option). + setMaxBounds: function (bounds) { + bounds = toLatLngBounds(bounds); + + if (this.listens('moveend', this._panInsideMaxBounds)) { + this.off('moveend', this._panInsideMaxBounds); + } + + if (!bounds.isValid()) { + this.options.maxBounds = null; + return this; + } + + this.options.maxBounds = bounds; + + if (this._loaded) { + this._panInsideMaxBounds(); + } + + return this.on('moveend', this._panInsideMaxBounds); + }, + + // @method setMinZoom(zoom: Number): this + // Sets the lower limit for the available zoom levels (see the [minZoom](#map-minzoom) option). + setMinZoom: function (zoom) { + var oldZoom = this.options.minZoom; + this.options.minZoom = zoom; + + if (this._loaded && oldZoom !== zoom) { + this.fire('zoomlevelschange'); + + if (this.getZoom() < this.options.minZoom) { + return this.setZoom(zoom); + } + } + + return this; + }, + + // @method setMaxZoom(zoom: Number): this + // Sets the upper limit for the available zoom levels (see the [maxZoom](#map-maxzoom) option). + setMaxZoom: function (zoom) { + var oldZoom = this.options.maxZoom; + this.options.maxZoom = zoom; + + if (this._loaded && oldZoom !== zoom) { + this.fire('zoomlevelschange'); + + if (this.getZoom() > this.options.maxZoom) { + return this.setZoom(zoom); + } + } + + return this; + }, + + // @method panInsideBounds(bounds: LatLngBounds, options?: Pan options): this + // Pans the map to the closest view that would lie inside the given bounds (if it's not already), controlling the animation using the options specific, if any. + panInsideBounds: function (bounds, options) { + this._enforcingBounds = true; + var center = this.getCenter(), + newCenter = this._limitCenter(center, this._zoom, toLatLngBounds(bounds)); + + if (!center.equals(newCenter)) { + this.panTo(newCenter, options); + } + + this._enforcingBounds = false; + return this; + }, + + // @method panInside(latlng: LatLng, options?: padding options): this + // Pans the map the minimum amount to make the `latlng` visible. Use + // padding options to fit the display to more restricted bounds. + // If `latlng` is already within the (optionally padded) display bounds, + // the map will not be panned. + panInside: function (latlng, options) { + options = options || {}; + + var paddingTL = toPoint(options.paddingTopLeft || options.padding || [0, 0]), + paddingBR = toPoint(options.paddingBottomRight || options.padding || [0, 0]), + pixelCenter = this.project(this.getCenter()), + pixelPoint = this.project(latlng), + pixelBounds = this.getPixelBounds(), + paddedBounds = toBounds([pixelBounds.min.add(paddingTL), pixelBounds.max.subtract(paddingBR)]), + paddedSize = paddedBounds.getSize(); + + if (!paddedBounds.contains(pixelPoint)) { + this._enforcingBounds = true; + var centerOffset = pixelPoint.subtract(paddedBounds.getCenter()); + var offset = paddedBounds.extend(pixelPoint).getSize().subtract(paddedSize); + pixelCenter.x += centerOffset.x < 0 ? -offset.x : offset.x; + pixelCenter.y += centerOffset.y < 0 ? -offset.y : offset.y; + this.panTo(this.unproject(pixelCenter), options); + this._enforcingBounds = false; + } + return this; + }, + + // @method invalidateSize(options: Zoom/pan options): this + // Checks if the map container size changed and updates the map if so — + // call it after you've changed the map size dynamically, also animating + // pan by default. If `options.pan` is `false`, panning will not occur. + // If `options.debounceMoveend` is `true`, it will delay `moveend` event so + // that it doesn't happen often even if the method is called many + // times in a row. + + // @alternative + // @method invalidateSize(animate: Boolean): this + // Checks if the map container size changed and updates the map if so — + // call it after you've changed the map size dynamically, also animating + // pan by default. + invalidateSize: function (options) { + if (!this._loaded) { return this; } + + options = extend({ + animate: false, + pan: true + }, options === true ? {animate: true} : options); + + var oldSize = this.getSize(); + this._sizeChanged = true; + this._lastCenter = null; + + var newSize = this.getSize(), + oldCenter = oldSize.divideBy(2).round(), + newCenter = newSize.divideBy(2).round(), + offset = oldCenter.subtract(newCenter); + + if (!offset.x && !offset.y) { return this; } + + if (options.animate && options.pan) { + this.panBy(offset); + + } else { + if (options.pan) { + this._rawPanBy(offset); + } + + this.fire('move'); + + if (options.debounceMoveend) { + clearTimeout(this._sizeTimer); + this._sizeTimer = setTimeout(bind(this.fire, this, 'moveend'), 200); + } else { + this.fire('moveend'); + } + } + + // @section Map state change events + // @event resize: ResizeEvent + // Fired when the map is resized. + return this.fire('resize', { + oldSize: oldSize, + newSize: newSize + }); + }, + + // @section Methods for modifying map state + // @method stop(): this + // Stops the currently running `panTo` or `flyTo` animation, if any. + stop: function () { + this.setZoom(this._limitZoom(this._zoom)); + if (!this.options.zoomSnap) { + this.fire('viewreset'); + } + return this._stop(); + }, + + // @section Geolocation methods + // @method locate(options?: Locate options): this + // Tries to locate the user using the Geolocation API, firing a [`locationfound`](#map-locationfound) + // event with location data on success or a [`locationerror`](#map-locationerror) event on failure, + // and optionally sets the map view to the user's location with respect to + // detection accuracy (or to the world view if geolocation failed). + // Note that, if your page doesn't use HTTPS, this method will fail in + // modern browsers ([Chrome 50 and newer](https://sites.google.com/a/chromium.org/dev/Home/chromium-security/deprecating-powerful-features-on-insecure-origins)) + // See `Locate options` for more details. + locate: function (options) { + + options = this._locateOptions = extend({ + timeout: 10000, + watch: false + // setView: false + // maxZoom: + // maximumAge: 0 + // enableHighAccuracy: false + }, options); + + if (!('geolocation' in navigator)) { + this._handleGeolocationError({ + code: 0, + message: 'Geolocation not supported.' + }); + return this; + } + + var onResponse = bind(this._handleGeolocationResponse, this), + onError = bind(this._handleGeolocationError, this); + + if (options.watch) { + this._locationWatchId = + navigator.geolocation.watchPosition(onResponse, onError, options); + } else { + navigator.geolocation.getCurrentPosition(onResponse, onError, options); + } + return this; + }, + + // @method stopLocate(): this + // Stops watching location previously initiated by `map.locate({watch: true})` + // and aborts resetting the map view if map.locate was called with + // `{setView: true}`. + stopLocate: function () { + if (navigator.geolocation && navigator.geolocation.clearWatch) { + navigator.geolocation.clearWatch(this._locationWatchId); + } + if (this._locateOptions) { + this._locateOptions.setView = false; + } + return this; + }, + + _handleGeolocationError: function (error) { + if (!this._container._leaflet_id) { return; } + + var c = error.code, + message = error.message || + (c === 1 ? 'permission denied' : + (c === 2 ? 'position unavailable' : 'timeout')); + + if (this._locateOptions.setView && !this._loaded) { + this.fitWorld(); + } + + // @section Location events + // @event locationerror: ErrorEvent + // Fired when geolocation (using the [`locate`](#map-locate) method) failed. + this.fire('locationerror', { + code: c, + message: 'Geolocation error: ' + message + '.' + }); + }, + + _handleGeolocationResponse: function (pos) { + if (!this._container._leaflet_id) { return; } + + var lat = pos.coords.latitude, + lng = pos.coords.longitude, + latlng = new LatLng(lat, lng), + bounds = latlng.toBounds(pos.coords.accuracy * 2), + options = this._locateOptions; + + if (options.setView) { + var zoom = this.getBoundsZoom(bounds); + this.setView(latlng, options.maxZoom ? Math.min(zoom, options.maxZoom) : zoom); + } + + var data = { + latlng: latlng, + bounds: bounds, + timestamp: pos.timestamp + }; + + for (var i in pos.coords) { + if (typeof pos.coords[i] === 'number') { + data[i] = pos.coords[i]; + } + } + + // @event locationfound: LocationEvent + // Fired when geolocation (using the [`locate`](#map-locate) method) + // went successfully. + this.fire('locationfound', data); + }, + + // TODO Appropriate docs section? + // @section Other Methods + // @method addHandler(name: String, HandlerClass: Function): this + // Adds a new `Handler` to the map, given its name and constructor function. + addHandler: function (name, HandlerClass) { + if (!HandlerClass) { return this; } + + var handler = this[name] = new HandlerClass(this); + + this._handlers.push(handler); + + if (this.options[name]) { + handler.enable(); + } + + return this; + }, + + // @method remove(): this + // Destroys the map and clears all related event listeners. + remove: function () { + + this._initEvents(true); + if (this.options.maxBounds) { this.off('moveend', this._panInsideMaxBounds); } + + if (this._containerId !== this._container._leaflet_id) { + throw new Error('Map container is being reused by another instance'); + } + + try { + // throws error in IE6-8 + delete this._container._leaflet_id; + delete this._containerId; + } catch (e) { + /*eslint-disable */ + this._container._leaflet_id = undefined; + /* eslint-enable */ + this._containerId = undefined; + } + + if (this._locationWatchId !== undefined) { + this.stopLocate(); + } + + this._stop(); + + remove(this._mapPane); + + if (this._clearControlPos) { + this._clearControlPos(); + } + if (this._resizeRequest) { + cancelAnimFrame(this._resizeRequest); + this._resizeRequest = null; + } + + this._clearHandlers(); + + if (this._loaded) { + // @section Map state change events + // @event unload: Event + // Fired when the map is destroyed with [remove](#map-remove) method. + this.fire('unload'); + } + + var i; + for (i in this._layers) { + this._layers[i].remove(); + } + for (i in this._panes) { + remove(this._panes[i]); + } + + this._layers = []; + this._panes = []; + delete this._mapPane; + delete this._renderer; + + return this; + }, + + // @section Other Methods + // @method createPane(name: String, container?: HTMLElement): HTMLElement + // Creates a new [map pane](#map-pane) with the given name if it doesn't exist already, + // then returns it. The pane is created as a child of `container`, or + // as a child of the main map pane if not set. + createPane: function (name, container) { + var className = 'leaflet-pane' + (name ? ' leaflet-' + name.replace('Pane', '') + '-pane' : ''), + pane = create$1('div', className, container || this._mapPane); + + if (name) { + this._panes[name] = pane; + } + return pane; + }, + + // @section Methods for Getting Map State + + // @method getCenter(): LatLng + // Returns the geographical center of the map view + getCenter: function () { + this._checkIfLoaded(); + + if (this._lastCenter && !this._moved()) { + return this._lastCenter.clone(); + } + return this.layerPointToLatLng(this._getCenterLayerPoint()); + }, + + // @method getZoom(): Number + // Returns the current zoom level of the map view + getZoom: function () { + return this._zoom; + }, + + // @method getBounds(): LatLngBounds + // Returns the geographical bounds visible in the current map view + getBounds: function () { + var bounds = this.getPixelBounds(), + sw = this.unproject(bounds.getBottomLeft()), + ne = this.unproject(bounds.getTopRight()); + + return new LatLngBounds(sw, ne); + }, + + // @method getMinZoom(): Number + // Returns the minimum zoom level of the map (if set in the `minZoom` option of the map or of any layers), or `0` by default. + getMinZoom: function () { + return this.options.minZoom === undefined ? this._layersMinZoom || 0 : this.options.minZoom; + }, + + // @method getMaxZoom(): Number + // Returns the maximum zoom level of the map (if set in the `maxZoom` option of the map or of any layers). + getMaxZoom: function () { + return this.options.maxZoom === undefined ? + (this._layersMaxZoom === undefined ? Infinity : this._layersMaxZoom) : + this.options.maxZoom; + }, + + // @method getBoundsZoom(bounds: LatLngBounds, inside?: Boolean, padding?: Point): Number + // Returns the maximum zoom level on which the given bounds fit to the map + // view in its entirety. If `inside` (optional) is set to `true`, the method + // instead returns the minimum zoom level on which the map view fits into + // the given bounds in its entirety. + getBoundsZoom: function (bounds, inside, padding) { // (LatLngBounds[, Boolean, Point]) -> Number + bounds = toLatLngBounds(bounds); + padding = toPoint(padding || [0, 0]); + + var zoom = this.getZoom() || 0, + min = this.getMinZoom(), + max = this.getMaxZoom(), + nw = bounds.getNorthWest(), + se = bounds.getSouthEast(), + size = this.getSize().subtract(padding), + boundsSize = toBounds(this.project(se, zoom), this.project(nw, zoom)).getSize(), + snap = Browser.any3d ? this.options.zoomSnap : 1, + scalex = size.x / boundsSize.x, + scaley = size.y / boundsSize.y, + scale = inside ? Math.max(scalex, scaley) : Math.min(scalex, scaley); + + zoom = this.getScaleZoom(scale, zoom); + + if (snap) { + zoom = Math.round(zoom / (snap / 100)) * (snap / 100); // don't jump if within 1% of a snap level + zoom = inside ? Math.ceil(zoom / snap) * snap : Math.floor(zoom / snap) * snap; + } + + return Math.max(min, Math.min(max, zoom)); + }, + + // @method getSize(): Point + // Returns the current size of the map container (in pixels). + getSize: function () { + if (!this._size || this._sizeChanged) { + this._size = new Point( + this._container.clientWidth || 0, + this._container.clientHeight || 0); + + this._sizeChanged = false; + } + return this._size.clone(); + }, + + // @method getPixelBounds(): Bounds + // Returns the bounds of the current map view in projected pixel + // coordinates (sometimes useful in layer and overlay implementations). + getPixelBounds: function (center, zoom) { + var topLeftPoint = this._getTopLeftPoint(center, zoom); + return new Bounds(topLeftPoint, topLeftPoint.add(this.getSize())); + }, + + // TODO: Check semantics - isn't the pixel origin the 0,0 coord relative to + // the map pane? "left point of the map layer" can be confusing, specially + // since there can be negative offsets. + // @method getPixelOrigin(): Point + // Returns the projected pixel coordinates of the top left point of + // the map layer (useful in custom layer and overlay implementations). + getPixelOrigin: function () { + this._checkIfLoaded(); + return this._pixelOrigin; + }, + + // @method getPixelWorldBounds(zoom?: Number): Bounds + // Returns the world's bounds in pixel coordinates for zoom level `zoom`. + // If `zoom` is omitted, the map's current zoom level is used. + getPixelWorldBounds: function (zoom) { + return this.options.crs.getProjectedBounds(zoom === undefined ? this.getZoom() : zoom); + }, + + // @section Other Methods + + // @method getPane(pane: String|HTMLElement): HTMLElement + // Returns a [map pane](#map-pane), given its name or its HTML element (its identity). + getPane: function (pane) { + return typeof pane === 'string' ? this._panes[pane] : pane; + }, + + // @method getPanes(): Object + // Returns a plain object containing the names of all [panes](#map-pane) as keys and + // the panes as values. + getPanes: function () { + return this._panes; + }, + + // @method getContainer: HTMLElement + // Returns the HTML element that contains the map. + getContainer: function () { + return this._container; + }, + + + // @section Conversion Methods + + // @method getZoomScale(toZoom: Number, fromZoom: Number): Number + // Returns the scale factor to be applied to a map transition from zoom level + // `fromZoom` to `toZoom`. Used internally to help with zoom animations. + getZoomScale: function (toZoom, fromZoom) { + // TODO replace with universal implementation after refactoring projections + var crs = this.options.crs; + fromZoom = fromZoom === undefined ? this._zoom : fromZoom; + return crs.scale(toZoom) / crs.scale(fromZoom); + }, + + // @method getScaleZoom(scale: Number, fromZoom: Number): Number + // Returns the zoom level that the map would end up at, if it is at `fromZoom` + // level and everything is scaled by a factor of `scale`. Inverse of + // [`getZoomScale`](#map-getZoomScale). + getScaleZoom: function (scale, fromZoom) { + var crs = this.options.crs; + fromZoom = fromZoom === undefined ? this._zoom : fromZoom; + var zoom = crs.zoom(scale * crs.scale(fromZoom)); + return isNaN(zoom) ? Infinity : zoom; + }, + + // @method project(latlng: LatLng, zoom: Number): Point + // Projects a geographical coordinate `LatLng` according to the projection + // of the map's CRS, then scales it according to `zoom` and the CRS's + // `Transformation`. The result is pixel coordinate relative to + // the CRS origin. + project: function (latlng, zoom) { + zoom = zoom === undefined ? this._zoom : zoom; + return this.options.crs.latLngToPoint(toLatLng(latlng), zoom); + }, + + // @method unproject(point: Point, zoom: Number): LatLng + // Inverse of [`project`](#map-project). + unproject: function (point, zoom) { + zoom = zoom === undefined ? this._zoom : zoom; + return this.options.crs.pointToLatLng(toPoint(point), zoom); + }, + + // @method layerPointToLatLng(point: Point): LatLng + // Given a pixel coordinate relative to the [origin pixel](#map-getpixelorigin), + // returns the corresponding geographical coordinate (for the current zoom level). + layerPointToLatLng: function (point) { + var projectedPoint = toPoint(point).add(this.getPixelOrigin()); + return this.unproject(projectedPoint); + }, + + // @method latLngToLayerPoint(latlng: LatLng): Point + // Given a geographical coordinate, returns the corresponding pixel coordinate + // relative to the [origin pixel](#map-getpixelorigin). + latLngToLayerPoint: function (latlng) { + var projectedPoint = this.project(toLatLng(latlng))._round(); + return projectedPoint._subtract(this.getPixelOrigin()); + }, + + // @method wrapLatLng(latlng: LatLng): LatLng + // Returns a `LatLng` where `lat` and `lng` has been wrapped according to the + // map's CRS's `wrapLat` and `wrapLng` properties, if they are outside the + // CRS's bounds. + // By default this means longitude is wrapped around the dateline so its + // value is between -180 and +180 degrees. + wrapLatLng: function (latlng) { + return this.options.crs.wrapLatLng(toLatLng(latlng)); + }, + + // @method wrapLatLngBounds(bounds: LatLngBounds): LatLngBounds + // Returns a `LatLngBounds` with the same size as the given one, ensuring that + // its center is within the CRS's bounds. + // By default this means the center longitude is wrapped around the dateline so its + // value is between -180 and +180 degrees, and the majority of the bounds + // overlaps the CRS's bounds. + wrapLatLngBounds: function (latlng) { + return this.options.crs.wrapLatLngBounds(toLatLngBounds(latlng)); + }, + + // @method distance(latlng1: LatLng, latlng2: LatLng): Number + // Returns the distance between two geographical coordinates according to + // the map's CRS. By default this measures distance in meters. + distance: function (latlng1, latlng2) { + return this.options.crs.distance(toLatLng(latlng1), toLatLng(latlng2)); + }, + + // @method containerPointToLayerPoint(point: Point): Point + // Given a pixel coordinate relative to the map container, returns the corresponding + // pixel coordinate relative to the [origin pixel](#map-getpixelorigin). + containerPointToLayerPoint: function (point) { // (Point) + return toPoint(point).subtract(this._getMapPanePos()); + }, + + // @method layerPointToContainerPoint(point: Point): Point + // Given a pixel coordinate relative to the [origin pixel](#map-getpixelorigin), + // returns the corresponding pixel coordinate relative to the map container. + layerPointToContainerPoint: function (point) { // (Point) + return toPoint(point).add(this._getMapPanePos()); + }, + + // @method containerPointToLatLng(point: Point): LatLng + // Given a pixel coordinate relative to the map container, returns + // the corresponding geographical coordinate (for the current zoom level). + containerPointToLatLng: function (point) { + var layerPoint = this.containerPointToLayerPoint(toPoint(point)); + return this.layerPointToLatLng(layerPoint); + }, + + // @method latLngToContainerPoint(latlng: LatLng): Point + // Given a geographical coordinate, returns the corresponding pixel coordinate + // relative to the map container. + latLngToContainerPoint: function (latlng) { + return this.layerPointToContainerPoint(this.latLngToLayerPoint(toLatLng(latlng))); + }, + + // @method mouseEventToContainerPoint(ev: MouseEvent): Point + // Given a MouseEvent object, returns the pixel coordinate relative to the + // map container where the event took place. + mouseEventToContainerPoint: function (e) { + return getMousePosition(e, this._container); + }, + + // @method mouseEventToLayerPoint(ev: MouseEvent): Point + // Given a MouseEvent object, returns the pixel coordinate relative to + // the [origin pixel](#map-getpixelorigin) where the event took place. + mouseEventToLayerPoint: function (e) { + return this.containerPointToLayerPoint(this.mouseEventToContainerPoint(e)); + }, + + // @method mouseEventToLatLng(ev: MouseEvent): LatLng + // Given a MouseEvent object, returns geographical coordinate where the + // event took place. + mouseEventToLatLng: function (e) { // (MouseEvent) + return this.layerPointToLatLng(this.mouseEventToLayerPoint(e)); + }, + + + // map initialization methods + + _initContainer: function (id) { + var container = this._container = get(id); + + if (!container) { + throw new Error('Map container not found.'); + } else if (container._leaflet_id) { + throw new Error('Map container is already initialized.'); + } + + on(container, 'scroll', this._onScroll, this); + this._containerId = stamp(container); + }, + + _initLayout: function () { + var container = this._container; + + this._fadeAnimated = this.options.fadeAnimation && Browser.any3d; + + addClass(container, 'leaflet-container' + + (Browser.touch ? ' leaflet-touch' : '') + + (Browser.retina ? ' leaflet-retina' : '') + + (Browser.ielt9 ? ' leaflet-oldie' : '') + + (Browser.safari ? ' leaflet-safari' : '') + + (this._fadeAnimated ? ' leaflet-fade-anim' : '')); + + var position = getStyle(container, 'position'); + + if (position !== 'absolute' && position !== 'relative' && position !== 'fixed' && position !== 'sticky') { + container.style.position = 'relative'; + } + + this._initPanes(); + + if (this._initControlPos) { + this._initControlPos(); + } + }, + + _initPanes: function () { + var panes = this._panes = {}; + this._paneRenderers = {}; + + // @section + // + // Panes are DOM elements used to control the ordering of layers on the map. You + // can access panes with [`map.getPane`](#map-getpane) or + // [`map.getPanes`](#map-getpanes) methods. New panes can be created with the + // [`map.createPane`](#map-createpane) method. + // + // Every map has the following default panes that differ only in zIndex. + // + // @pane mapPane: HTMLElement = 'auto' + // Pane that contains all other map panes + + this._mapPane = this.createPane('mapPane', this._container); + setPosition(this._mapPane, new Point(0, 0)); + + // @pane tilePane: HTMLElement = 200 + // Pane for `GridLayer`s and `TileLayer`s + this.createPane('tilePane'); + // @pane overlayPane: HTMLElement = 400 + // Pane for vectors (`Path`s, like `Polyline`s and `Polygon`s), `ImageOverlay`s and `VideoOverlay`s + this.createPane('overlayPane'); + // @pane shadowPane: HTMLElement = 500 + // Pane for overlay shadows (e.g. `Marker` shadows) + this.createPane('shadowPane'); + // @pane markerPane: HTMLElement = 600 + // Pane for `Icon`s of `Marker`s + this.createPane('markerPane'); + // @pane tooltipPane: HTMLElement = 650 + // Pane for `Tooltip`s. + this.createPane('tooltipPane'); + // @pane popupPane: HTMLElement = 700 + // Pane for `Popup`s. + this.createPane('popupPane'); + + if (!this.options.markerZoomAnimation) { + addClass(panes.markerPane, 'leaflet-zoom-hide'); + addClass(panes.shadowPane, 'leaflet-zoom-hide'); + } + }, + + + // private methods that modify map state + + // @section Map state change events + _resetView: function (center, zoom, noMoveStart) { + setPosition(this._mapPane, new Point(0, 0)); + + var loading = !this._loaded; + this._loaded = true; + zoom = this._limitZoom(zoom); + + this.fire('viewprereset'); + + var zoomChanged = this._zoom !== zoom; + this + ._moveStart(zoomChanged, noMoveStart) + ._move(center, zoom) + ._moveEnd(zoomChanged); + + // @event viewreset: Event + // Fired when the map needs to redraw its content (this usually happens + // on map zoom or load). Very useful for creating custom overlays. + this.fire('viewreset'); + + // @event load: Event + // Fired when the map is initialized (when its center and zoom are set + // for the first time). + if (loading) { + this.fire('load'); + } + }, + + _moveStart: function (zoomChanged, noMoveStart) { + // @event zoomstart: Event + // Fired when the map zoom is about to change (e.g. before zoom animation). + // @event movestart: Event + // Fired when the view of the map starts changing (e.g. user starts dragging the map). + if (zoomChanged) { + this.fire('zoomstart'); + } + if (!noMoveStart) { + this.fire('movestart'); + } + return this; + }, + + _move: function (center, zoom, data, supressEvent) { + if (zoom === undefined) { + zoom = this._zoom; + } + var zoomChanged = this._zoom !== zoom; + + this._zoom = zoom; + this._lastCenter = center; + this._pixelOrigin = this._getNewPixelOrigin(center); + + if (!supressEvent) { + // @event zoom: Event + // Fired repeatedly during any change in zoom level, + // including zoom and fly animations. + if (zoomChanged || (data && data.pinch)) { // Always fire 'zoom' if pinching because #3530 + this.fire('zoom', data); + } + + // @event move: Event + // Fired repeatedly during any movement of the map, + // including pan and fly animations. + this.fire('move', data); + } else if (data && data.pinch) { // Always fire 'zoom' if pinching because #3530 + this.fire('zoom', data); + } + return this; + }, + + _moveEnd: function (zoomChanged) { + // @event zoomend: Event + // Fired when the map zoom changed, after any animations. + if (zoomChanged) { + this.fire('zoomend'); + } + + // @event moveend: Event + // Fired when the center of the map stops changing + // (e.g. user stopped dragging the map or after non-centered zoom). + return this.fire('moveend'); + }, + + _stop: function () { + cancelAnimFrame(this._flyToFrame); + if (this._panAnim) { + this._panAnim.stop(); + } + return this; + }, + + _rawPanBy: function (offset) { + setPosition(this._mapPane, this._getMapPanePos().subtract(offset)); + }, + + _getZoomSpan: function () { + return this.getMaxZoom() - this.getMinZoom(); + }, + + _panInsideMaxBounds: function () { + if (!this._enforcingBounds) { + this.panInsideBounds(this.options.maxBounds); + } + }, + + _checkIfLoaded: function () { + if (!this._loaded) { + throw new Error('Set map center and zoom first.'); + } + }, + + // DOM event handling + + // @section Interaction events + _initEvents: function (remove) { + this._targets = {}; + this._targets[stamp(this._container)] = this; + + var onOff = remove ? off : on; + + // @event click: MouseEvent + // Fired when the user clicks (or taps) the map. + // @event dblclick: MouseEvent + // Fired when the user double-clicks (or double-taps) the map. + // @event mousedown: MouseEvent + // Fired when the user pushes the mouse button on the map. + // @event mouseup: MouseEvent + // Fired when the user releases the mouse button on the map. + // @event mouseover: MouseEvent + // Fired when the mouse enters the map. + // @event mouseout: MouseEvent + // Fired when the mouse leaves the map. + // @event mousemove: MouseEvent + // Fired while the mouse moves over the map. + // @event contextmenu: MouseEvent + // Fired when the user pushes the right mouse button on the map, prevents + // default browser context menu from showing if there are listeners on + // this event. Also fired on mobile when the user holds a single touch + // for a second (also called long press). + // @event keypress: KeyboardEvent + // Fired when the user presses a key from the keyboard that produces a character value while the map is focused. + // @event keydown: KeyboardEvent + // Fired when the user presses a key from the keyboard while the map is focused. Unlike the `keypress` event, + // the `keydown` event is fired for keys that produce a character value and for keys + // that do not produce a character value. + // @event keyup: KeyboardEvent + // Fired when the user releases a key from the keyboard while the map is focused. + onOff(this._container, 'click dblclick mousedown mouseup ' + + 'mouseover mouseout mousemove contextmenu keypress keydown keyup', this._handleDOMEvent, this); + + if (this.options.trackResize) { + onOff(window, 'resize', this._onResize, this); + } + + if (Browser.any3d && this.options.transform3DLimit) { + (remove ? this.off : this.on).call(this, 'moveend', this._onMoveEnd); + } + }, + + _onResize: function () { + cancelAnimFrame(this._resizeRequest); + this._resizeRequest = requestAnimFrame( + function () { this.invalidateSize({debounceMoveend: true}); }, this); + }, + + _onScroll: function () { + this._container.scrollTop = 0; + this._container.scrollLeft = 0; + }, + + _onMoveEnd: function () { + var pos = this._getMapPanePos(); + if (Math.max(Math.abs(pos.x), Math.abs(pos.y)) >= this.options.transform3DLimit) { + // https://bugzilla.mozilla.org/show_bug.cgi?id=1203873 but Webkit also have + // a pixel offset on very high values, see: https://jsfiddle.net/dg6r5hhb/ + this._resetView(this.getCenter(), this.getZoom()); + } + }, + + _findEventTargets: function (e, type) { + var targets = [], + target, + isHover = type === 'mouseout' || type === 'mouseover', + src = e.target || e.srcElement, + dragging = false; + + while (src) { + target = this._targets[stamp(src)]; + if (target && (type === 'click' || type === 'preclick') && this._draggableMoved(target)) { + // Prevent firing click after you just dragged an object. + dragging = true; + break; + } + if (target && target.listens(type, true)) { + if (isHover && !isExternalTarget(src, e)) { break; } + targets.push(target); + if (isHover) { break; } + } + if (src === this._container) { break; } + src = src.parentNode; + } + if (!targets.length && !dragging && !isHover && this.listens(type, true)) { + targets = [this]; + } + return targets; + }, + + _isClickDisabled: function (el) { + while (el && el !== this._container) { + if (el['_leaflet_disable_click']) { return true; } + el = el.parentNode; + } + }, + + _handleDOMEvent: function (e) { + var el = (e.target || e.srcElement); + if (!this._loaded || el['_leaflet_disable_events'] || e.type === 'click' && this._isClickDisabled(el)) { + return; + } + + var type = e.type; + + if (type === 'mousedown') { + // prevents outline when clicking on keyboard-focusable element + preventOutline(el); + } + + this._fireDOMEvent(e, type); + }, + + _mouseEvents: ['click', 'dblclick', 'mouseover', 'mouseout', 'contextmenu'], + + _fireDOMEvent: function (e, type, canvasTargets) { + + if (e.type === 'click') { + // Fire a synthetic 'preclick' event which propagates up (mainly for closing popups). + // @event preclick: MouseEvent + // Fired before mouse click on the map (sometimes useful when you + // want something to happen on click before any existing click + // handlers start running). + var synth = extend({}, e); + synth.type = 'preclick'; + this._fireDOMEvent(synth, synth.type, canvasTargets); + } + + // Find the layer the event is propagating from and its parents. + var targets = this._findEventTargets(e, type); + + if (canvasTargets) { + var filtered = []; // pick only targets with listeners + for (var i = 0; i < canvasTargets.length; i++) { + if (canvasTargets[i].listens(type, true)) { + filtered.push(canvasTargets[i]); + } + } + targets = filtered.concat(targets); + } + + if (!targets.length) { return; } + + if (type === 'contextmenu') { + preventDefault(e); + } + + var target = targets[0]; + var data = { + originalEvent: e + }; + + if (e.type !== 'keypress' && e.type !== 'keydown' && e.type !== 'keyup') { + var isMarker = target.getLatLng && (!target._radius || target._radius <= 10); + data.containerPoint = isMarker ? + this.latLngToContainerPoint(target.getLatLng()) : this.mouseEventToContainerPoint(e); + data.layerPoint = this.containerPointToLayerPoint(data.containerPoint); + data.latlng = isMarker ? target.getLatLng() : this.layerPointToLatLng(data.layerPoint); + } + + for (i = 0; i < targets.length; i++) { + targets[i].fire(type, data, true); + if (data.originalEvent._stopped || + (targets[i].options.bubblingMouseEvents === false && indexOf(this._mouseEvents, type) !== -1)) { return; } + } + }, + + _draggableMoved: function (obj) { + obj = obj.dragging && obj.dragging.enabled() ? obj : this; + return (obj.dragging && obj.dragging.moved()) || (this.boxZoom && this.boxZoom.moved()); + }, + + _clearHandlers: function () { + for (var i = 0, len = this._handlers.length; i < len; i++) { + this._handlers[i].disable(); + } + }, + + // @section Other Methods + + // @method whenReady(fn: Function, context?: Object): this + // Runs the given function `fn` when the map gets initialized with + // a view (center and zoom) and at least one layer, or immediately + // if it's already initialized, optionally passing a function context. + whenReady: function (callback, context) { + if (this._loaded) { + callback.call(context || this, {target: this}); + } else { + this.on('load', callback, context); + } + return this; + }, + + + // private methods for getting map state + + _getMapPanePos: function () { + return getPosition(this._mapPane) || new Point(0, 0); + }, + + _moved: function () { + var pos = this._getMapPanePos(); + return pos && !pos.equals([0, 0]); + }, + + _getTopLeftPoint: function (center, zoom) { + var pixelOrigin = center && zoom !== undefined ? + this._getNewPixelOrigin(center, zoom) : + this.getPixelOrigin(); + return pixelOrigin.subtract(this._getMapPanePos()); + }, + + _getNewPixelOrigin: function (center, zoom) { + var viewHalf = this.getSize()._divideBy(2); + return this.project(center, zoom)._subtract(viewHalf)._add(this._getMapPanePos())._round(); + }, + + _latLngToNewLayerPoint: function (latlng, zoom, center) { + var topLeft = this._getNewPixelOrigin(center, zoom); + return this.project(latlng, zoom)._subtract(topLeft); + }, + + _latLngBoundsToNewLayerBounds: function (latLngBounds, zoom, center) { + var topLeft = this._getNewPixelOrigin(center, zoom); + return toBounds([ + this.project(latLngBounds.getSouthWest(), zoom)._subtract(topLeft), + this.project(latLngBounds.getNorthWest(), zoom)._subtract(topLeft), + this.project(latLngBounds.getSouthEast(), zoom)._subtract(topLeft), + this.project(latLngBounds.getNorthEast(), zoom)._subtract(topLeft) + ]); + }, + + // layer point of the current center + _getCenterLayerPoint: function () { + return this.containerPointToLayerPoint(this.getSize()._divideBy(2)); + }, + + // offset of the specified place to the current center in pixels + _getCenterOffset: function (latlng) { + return this.latLngToLayerPoint(latlng).subtract(this._getCenterLayerPoint()); + }, + + // adjust center for view to get inside bounds + _limitCenter: function (center, zoom, bounds) { + + if (!bounds) { return center; } + + var centerPoint = this.project(center, zoom), + viewHalf = this.getSize().divideBy(2), + viewBounds = new Bounds(centerPoint.subtract(viewHalf), centerPoint.add(viewHalf)), + offset = this._getBoundsOffset(viewBounds, bounds, zoom); + + // If offset is less than a pixel, ignore. + // This prevents unstable projections from getting into + // an infinite loop of tiny offsets. + if (Math.abs(offset.x) <= 1 && Math.abs(offset.y) <= 1) { + return center; + } + + return this.unproject(centerPoint.add(offset), zoom); + }, + + // adjust offset for view to get inside bounds + _limitOffset: function (offset, bounds) { + if (!bounds) { return offset; } + + var viewBounds = this.getPixelBounds(), + newBounds = new Bounds(viewBounds.min.add(offset), viewBounds.max.add(offset)); + + return offset.add(this._getBoundsOffset(newBounds, bounds)); + }, + + // returns offset needed for pxBounds to get inside maxBounds at a specified zoom + _getBoundsOffset: function (pxBounds, maxBounds, zoom) { + var projectedMaxBounds = toBounds( + this.project(maxBounds.getNorthEast(), zoom), + this.project(maxBounds.getSouthWest(), zoom) + ), + minOffset = projectedMaxBounds.min.subtract(pxBounds.min), + maxOffset = projectedMaxBounds.max.subtract(pxBounds.max), + + dx = this._rebound(minOffset.x, -maxOffset.x), + dy = this._rebound(minOffset.y, -maxOffset.y); + + return new Point(dx, dy); + }, + + _rebound: function (left, right) { + return left + right > 0 ? + Math.round(left - right) / 2 : + Math.max(0, Math.ceil(left)) - Math.max(0, Math.floor(right)); + }, + + _limitZoom: function (zoom) { + var min = this.getMinZoom(), + max = this.getMaxZoom(), + snap = Browser.any3d ? this.options.zoomSnap : 1; + if (snap) { + zoom = Math.round(zoom / snap) * snap; + } + return Math.max(min, Math.min(max, zoom)); + }, + + _onPanTransitionStep: function () { + this.fire('move'); + }, + + _onPanTransitionEnd: function () { + removeClass(this._mapPane, 'leaflet-pan-anim'); + this.fire('moveend'); + }, + + _tryAnimatedPan: function (center, options) { + // difference between the new and current centers in pixels + var offset = this._getCenterOffset(center)._trunc(); + + // don't animate too far unless animate: true specified in options + if ((options && options.animate) !== true && !this.getSize().contains(offset)) { return false; } + + this.panBy(offset, options); + + return true; + }, + + _createAnimProxy: function () { + + var proxy = this._proxy = create$1('div', 'leaflet-proxy leaflet-zoom-animated'); + this._panes.mapPane.appendChild(proxy); + + this.on('zoomanim', function (e) { + var prop = TRANSFORM, + transform = this._proxy.style[prop]; + + setTransform(this._proxy, this.project(e.center, e.zoom), this.getZoomScale(e.zoom, 1)); + + // workaround for case when transform is the same and so transitionend event is not fired + if (transform === this._proxy.style[prop] && this._animatingZoom) { + this._onZoomTransitionEnd(); + } + }, this); + + this.on('load moveend', this._animMoveEnd, this); + + this._on('unload', this._destroyAnimProxy, this); + }, + + _destroyAnimProxy: function () { + remove(this._proxy); + this.off('load moveend', this._animMoveEnd, this); + delete this._proxy; + }, + + _animMoveEnd: function () { + var c = this.getCenter(), + z = this.getZoom(); + setTransform(this._proxy, this.project(c, z), this.getZoomScale(z, 1)); + }, + + _catchTransitionEnd: function (e) { + if (this._animatingZoom && e.propertyName.indexOf('transform') >= 0) { + this._onZoomTransitionEnd(); + } + }, + + _nothingToAnimate: function () { + return !this._container.getElementsByClassName('leaflet-zoom-animated').length; + }, + + _tryAnimatedZoom: function (center, zoom, options) { + + if (this._animatingZoom) { return true; } + + options = options || {}; + + // don't animate if disabled, not supported or zoom difference is too large + if (!this._zoomAnimated || options.animate === false || this._nothingToAnimate() || + Math.abs(zoom - this._zoom) > this.options.zoomAnimationThreshold) { return false; } + + // offset is the pixel coords of the zoom origin relative to the current center + var scale = this.getZoomScale(zoom), + offset = this._getCenterOffset(center)._divideBy(1 - 1 / scale); + + // don't animate if the zoom origin isn't within one screen from the current center, unless forced + if (options.animate !== true && !this.getSize().contains(offset)) { return false; } + + requestAnimFrame(function () { + this + ._moveStart(true, options.noMoveStart || false) + ._animateZoom(center, zoom, true); + }, this); + + return true; + }, + + _animateZoom: function (center, zoom, startAnim, noUpdate) { + if (!this._mapPane) { return; } + + if (startAnim) { + this._animatingZoom = true; + + // remember what center/zoom to set after animation + this._animateToCenter = center; + this._animateToZoom = zoom; + + addClass(this._mapPane, 'leaflet-zoom-anim'); + } + + // @section Other Events + // @event zoomanim: ZoomAnimEvent + // Fired at least once per zoom animation. For continuous zoom, like pinch zooming, fired once per frame during zoom. + this.fire('zoomanim', { + center: center, + zoom: zoom, + noUpdate: noUpdate + }); + + if (!this._tempFireZoomEvent) { + this._tempFireZoomEvent = this._zoom !== this._animateToZoom; + } + + this._move(this._animateToCenter, this._animateToZoom, undefined, true); + + // Work around webkit not firing 'transitionend', see https://github.com/Leaflet/Leaflet/issues/3689, 2693 + setTimeout(bind(this._onZoomTransitionEnd, this), 250); + }, + + _onZoomTransitionEnd: function () { + if (!this._animatingZoom) { return; } + + if (this._mapPane) { + removeClass(this._mapPane, 'leaflet-zoom-anim'); + } + + this._animatingZoom = false; + + this._move(this._animateToCenter, this._animateToZoom, undefined, true); + + if (this._tempFireZoomEvent) { + this.fire('zoom'); + } + delete this._tempFireZoomEvent; + + this.fire('move'); + + this._moveEnd(true); + } +}); + +// @section + +// @factory L.map(id: String, options?: Map options) +// Instantiates a map object given the DOM ID of a `
` element +// and optionally an object literal with `Map options`. +// +// @alternative +// @factory L.map(el: HTMLElement, options?: Map options) +// Instantiates a map object given an instance of a `
` HTML element +// and optionally an object literal with `Map options`. +function createMap(id, options) { + return new Map(id, options); +} + +/* + * @class Control + * @aka L.Control + * @inherits Class + * + * L.Control is a base class for implementing map controls. Handles positioning. + * All other controls extend from this class. + */ + +var Control = Class.extend({ + // @section + // @aka Control Options + options: { + // @option position: String = 'topright' + // The position of the control (one of the map corners). Possible values are `'topleft'`, + // `'topright'`, `'bottomleft'` or `'bottomright'` + position: 'topright' + }, + + initialize: function (options) { + setOptions(this, options); + }, + + /* @section + * Classes extending L.Control will inherit the following methods: + * + * @method getPosition: string + * Returns the position of the control. + */ + getPosition: function () { + return this.options.position; + }, + + // @method setPosition(position: string): this + // Sets the position of the control. + setPosition: function (position) { + var map = this._map; + + if (map) { + map.removeControl(this); + } + + this.options.position = position; + + if (map) { + map.addControl(this); + } + + return this; + }, + + // @method getContainer: HTMLElement + // Returns the HTMLElement that contains the control. + getContainer: function () { + return this._container; + }, + + // @method addTo(map: Map): this + // Adds the control to the given map. + addTo: function (map) { + this.remove(); + this._map = map; + + var container = this._container = this.onAdd(map), + pos = this.getPosition(), + corner = map._controlCorners[pos]; + + addClass(container, 'leaflet-control'); + + if (pos.indexOf('bottom') !== -1) { + corner.insertBefore(container, corner.firstChild); + } else { + corner.appendChild(container); + } + + this._map.on('unload', this.remove, this); + + return this; + }, + + // @method remove: this + // Removes the control from the map it is currently active on. + remove: function () { + if (!this._map) { + return this; + } + + remove(this._container); + + if (this.onRemove) { + this.onRemove(this._map); + } + + this._map.off('unload', this.remove, this); + this._map = null; + + return this; + }, + + _refocusOnMap: function (e) { + // if map exists and event is not a keyboard event + if (this._map && e && e.screenX > 0 && e.screenY > 0) { + this._map.getContainer().focus(); + } + } +}); + +var control = function (options) { + return new Control(options); +}; + +/* @section Extension methods + * @uninheritable + * + * Every control should extend from `L.Control` and (re-)implement the following methods. + * + * @method onAdd(map: Map): HTMLElement + * Should return the container DOM element for the control and add listeners on relevant map events. Called on [`control.addTo(map)`](#control-addTo). + * + * @method onRemove(map: Map) + * Optional method. Should contain all clean up code that removes the listeners previously added in [`onAdd`](#control-onadd). Called on [`control.remove()`](#control-remove). + */ + +/* @namespace Map + * @section Methods for Layers and Controls + */ +Map.include({ + // @method addControl(control: Control): this + // Adds the given control to the map + addControl: function (control) { + control.addTo(this); + return this; + }, + + // @method removeControl(control: Control): this + // Removes the given control from the map + removeControl: function (control) { + control.remove(); + return this; + }, + + _initControlPos: function () { + var corners = this._controlCorners = {}, + l = 'leaflet-', + container = this._controlContainer = + create$1('div', l + 'control-container', this._container); + + function createCorner(vSide, hSide) { + var className = l + vSide + ' ' + l + hSide; + + corners[vSide + hSide] = create$1('div', className, container); + } + + createCorner('top', 'left'); + createCorner('top', 'right'); + createCorner('bottom', 'left'); + createCorner('bottom', 'right'); + }, + + _clearControlPos: function () { + for (var i in this._controlCorners) { + remove(this._controlCorners[i]); + } + remove(this._controlContainer); + delete this._controlCorners; + delete this._controlContainer; + } +}); + +/* + * @class Control.Layers + * @aka L.Control.Layers + * @inherits Control + * + * The layers control gives users the ability to switch between different base layers and switch overlays on/off (check out the [detailed example](https://leafletjs.com/examples/layers-control/)). Extends `Control`. + * + * @example + * + * ```js + * var baseLayers = { + * "Mapbox": mapbox, + * "OpenStreetMap": osm + * }; + * + * var overlays = { + * "Marker": marker, + * "Roads": roadsLayer + * }; + * + * L.control.layers(baseLayers, overlays).addTo(map); + * ``` + * + * The `baseLayers` and `overlays` parameters are object literals with layer names as keys and `Layer` objects as values: + * + * ```js + * { + * "": layer1, + * "": layer2 + * } + * ``` + * + * The layer names can contain HTML, which allows you to add additional styling to the items: + * + * ```js + * {" My Layer": myLayer} + * ``` + */ + +var Layers = Control.extend({ + // @section + // @aka Control.Layers options + options: { + // @option collapsed: Boolean = true + // If `true`, the control will be collapsed into an icon and expanded on mouse hover, touch, or keyboard activation. + collapsed: true, + position: 'topright', + + // @option autoZIndex: Boolean = true + // If `true`, the control will assign zIndexes in increasing order to all of its layers so that the order is preserved when switching them on/off. + autoZIndex: true, + + // @option hideSingleBase: Boolean = false + // If `true`, the base layers in the control will be hidden when there is only one. + hideSingleBase: false, + + // @option sortLayers: Boolean = false + // Whether to sort the layers. When `false`, layers will keep the order + // in which they were added to the control. + sortLayers: false, + + // @option sortFunction: Function = * + // A [compare function](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Array/sort) + // that will be used for sorting the layers, when `sortLayers` is `true`. + // The function receives both the `L.Layer` instances and their names, as in + // `sortFunction(layerA, layerB, nameA, nameB)`. + // By default, it sorts layers alphabetically by their name. + sortFunction: function (layerA, layerB, nameA, nameB) { + return nameA < nameB ? -1 : (nameB < nameA ? 1 : 0); + } + }, + + initialize: function (baseLayers, overlays, options) { + setOptions(this, options); + + this._layerControlInputs = []; + this._layers = []; + this._lastZIndex = 0; + this._handlingClick = false; + this._preventClick = false; + + for (var i in baseLayers) { + this._addLayer(baseLayers[i], i); + } + + for (i in overlays) { + this._addLayer(overlays[i], i, true); + } + }, + + onAdd: function (map) { + this._initLayout(); + this._update(); + + this._map = map; + map.on('zoomend', this._checkDisabledLayers, this); + + for (var i = 0; i < this._layers.length; i++) { + this._layers[i].layer.on('add remove', this._onLayerChange, this); + } + + return this._container; + }, + + addTo: function (map) { + Control.prototype.addTo.call(this, map); + // Trigger expand after Layers Control has been inserted into DOM so that is now has an actual height. + return this._expandIfNotCollapsed(); + }, + + onRemove: function () { + this._map.off('zoomend', this._checkDisabledLayers, this); + + for (var i = 0; i < this._layers.length; i++) { + this._layers[i].layer.off('add remove', this._onLayerChange, this); + } + }, + + // @method addBaseLayer(layer: Layer, name: String): this + // Adds a base layer (radio button entry) with the given name to the control. + addBaseLayer: function (layer, name) { + this._addLayer(layer, name); + return (this._map) ? this._update() : this; + }, + + // @method addOverlay(layer: Layer, name: String): this + // Adds an overlay (checkbox entry) with the given name to the control. + addOverlay: function (layer, name) { + this._addLayer(layer, name, true); + return (this._map) ? this._update() : this; + }, + + // @method removeLayer(layer: Layer): this + // Remove the given layer from the control. + removeLayer: function (layer) { + layer.off('add remove', this._onLayerChange, this); + + var obj = this._getLayer(stamp(layer)); + if (obj) { + this._layers.splice(this._layers.indexOf(obj), 1); + } + return (this._map) ? this._update() : this; + }, + + // @method expand(): this + // Expand the control container if collapsed. + expand: function () { + addClass(this._container, 'leaflet-control-layers-expanded'); + this._section.style.height = null; + var acceptableHeight = this._map.getSize().y - (this._container.offsetTop + 50); + if (acceptableHeight < this._section.clientHeight) { + addClass(this._section, 'leaflet-control-layers-scrollbar'); + this._section.style.height = acceptableHeight + 'px'; + } else { + removeClass(this._section, 'leaflet-control-layers-scrollbar'); + } + this._checkDisabledLayers(); + return this; + }, + + // @method collapse(): this + // Collapse the control container if expanded. + collapse: function () { + removeClass(this._container, 'leaflet-control-layers-expanded'); + return this; + }, + + _initLayout: function () { + var className = 'leaflet-control-layers', + container = this._container = create$1('div', className), + collapsed = this.options.collapsed; + + // makes this work on IE touch devices by stopping it from firing a mouseout event when the touch is released + container.setAttribute('aria-haspopup', true); + + disableClickPropagation(container); + disableScrollPropagation(container); + + var section = this._section = create$1('section', className + '-list'); + + if (collapsed) { + this._map.on('click', this.collapse, this); + + on(container, { + mouseenter: this._expandSafely, + mouseleave: this.collapse + }, this); + } + + var link = this._layersLink = create$1('a', className + '-toggle', container); + link.href = '#'; + link.title = 'Layers'; + link.setAttribute('role', 'button'); + + on(link, { + keydown: function (e) { + if (e.keyCode === 13) { + this._expandSafely(); + } + }, + // Certain screen readers intercept the key event and instead send a click event + click: function (e) { + preventDefault(e); + this._expandSafely(); + } + }, this); + + if (!collapsed) { + this.expand(); + } + + this._baseLayersList = create$1('div', className + '-base', section); + this._separator = create$1('div', className + '-separator', section); + this._overlaysList = create$1('div', className + '-overlays', section); + + container.appendChild(section); + }, + + _getLayer: function (id) { + for (var i = 0; i < this._layers.length; i++) { + + if (this._layers[i] && stamp(this._layers[i].layer) === id) { + return this._layers[i]; + } + } + }, + + _addLayer: function (layer, name, overlay) { + if (this._map) { + layer.on('add remove', this._onLayerChange, this); + } + + this._layers.push({ + layer: layer, + name: name, + overlay: overlay + }); + + if (this.options.sortLayers) { + this._layers.sort(bind(function (a, b) { + return this.options.sortFunction(a.layer, b.layer, a.name, b.name); + }, this)); + } + + if (this.options.autoZIndex && layer.setZIndex) { + this._lastZIndex++; + layer.setZIndex(this._lastZIndex); + } + + this._expandIfNotCollapsed(); + }, + + _update: function () { + if (!this._container) { return this; } + + empty(this._baseLayersList); + empty(this._overlaysList); + + this._layerControlInputs = []; + var baseLayersPresent, overlaysPresent, i, obj, baseLayersCount = 0; + + for (i = 0; i < this._layers.length; i++) { + obj = this._layers[i]; + this._addItem(obj); + overlaysPresent = overlaysPresent || obj.overlay; + baseLayersPresent = baseLayersPresent || !obj.overlay; + baseLayersCount += !obj.overlay ? 1 : 0; + } + + // Hide base layers section if there's only one layer. + if (this.options.hideSingleBase) { + baseLayersPresent = baseLayersPresent && baseLayersCount > 1; + this._baseLayersList.style.display = baseLayersPresent ? '' : 'none'; + } + + this._separator.style.display = overlaysPresent && baseLayersPresent ? '' : 'none'; + + return this; + }, + + _onLayerChange: function (e) { + if (!this._handlingClick) { + this._update(); + } + + var obj = this._getLayer(stamp(e.target)); + + // @namespace Map + // @section Layer events + // @event baselayerchange: LayersControlEvent + // Fired when the base layer is changed through the [layers control](#control-layers). + // @event overlayadd: LayersControlEvent + // Fired when an overlay is selected through the [layers control](#control-layers). + // @event overlayremove: LayersControlEvent + // Fired when an overlay is deselected through the [layers control](#control-layers). + // @namespace Control.Layers + var type = obj.overlay ? + (e.type === 'add' ? 'overlayadd' : 'overlayremove') : + (e.type === 'add' ? 'baselayerchange' : null); + + if (type) { + this._map.fire(type, obj); + } + }, + + // IE7 bugs out if you create a radio dynamically, so you have to do it this hacky way (see https://stackoverflow.com/a/119079) + _createRadioElement: function (name, checked) { + + var radioHtml = ''; + + var radioFragment = document.createElement('div'); + radioFragment.innerHTML = radioHtml; + + return radioFragment.firstChild; + }, + + _addItem: function (obj) { + var label = document.createElement('label'), + checked = this._map.hasLayer(obj.layer), + input; + + if (obj.overlay) { + input = document.createElement('input'); + input.type = 'checkbox'; + input.className = 'leaflet-control-layers-selector'; + input.defaultChecked = checked; + } else { + input = this._createRadioElement('leaflet-base-layers_' + stamp(this), checked); + } + + this._layerControlInputs.push(input); + input.layerId = stamp(obj.layer); + + on(input, 'click', this._onInputClick, this); + + var name = document.createElement('span'); + name.innerHTML = ' ' + obj.name; + + // Helps from preventing layer control flicker when checkboxes are disabled + // https://github.com/Leaflet/Leaflet/issues/2771 + var holder = document.createElement('span'); + + label.appendChild(holder); + holder.appendChild(input); + holder.appendChild(name); + + var container = obj.overlay ? this._overlaysList : this._baseLayersList; + container.appendChild(label); + + this._checkDisabledLayers(); + return label; + }, + + _onInputClick: function () { + // expanding the control on mobile with a click can cause adding a layer - we don't want this + if (this._preventClick) { + return; + } + + var inputs = this._layerControlInputs, + input, layer; + var addedLayers = [], + removedLayers = []; + + this._handlingClick = true; + + for (var i = inputs.length - 1; i >= 0; i--) { + input = inputs[i]; + layer = this._getLayer(input.layerId).layer; + + if (input.checked) { + addedLayers.push(layer); + } else if (!input.checked) { + removedLayers.push(layer); + } + } + + // Bugfix issue 2318: Should remove all old layers before readding new ones + for (i = 0; i < removedLayers.length; i++) { + if (this._map.hasLayer(removedLayers[i])) { + this._map.removeLayer(removedLayers[i]); + } + } + for (i = 0; i < addedLayers.length; i++) { + if (!this._map.hasLayer(addedLayers[i])) { + this._map.addLayer(addedLayers[i]); + } + } + + this._handlingClick = false; + + this._refocusOnMap(); + }, + + _checkDisabledLayers: function () { + var inputs = this._layerControlInputs, + input, + layer, + zoom = this._map.getZoom(); + + for (var i = inputs.length - 1; i >= 0; i--) { + input = inputs[i]; + layer = this._getLayer(input.layerId).layer; + input.disabled = (layer.options.minZoom !== undefined && zoom < layer.options.minZoom) || + (layer.options.maxZoom !== undefined && zoom > layer.options.maxZoom); + + } + }, + + _expandIfNotCollapsed: function () { + if (this._map && !this.options.collapsed) { + this.expand(); + } + return this; + }, + + _expandSafely: function () { + var section = this._section; + this._preventClick = true; + on(section, 'click', preventDefault); + this.expand(); + var that = this; + setTimeout(function () { + off(section, 'click', preventDefault); + that._preventClick = false; + }); + } + +}); + + +// @factory L.control.layers(baselayers?: Object, overlays?: Object, options?: Control.Layers options) +// Creates a layers control with the given layers. Base layers will be switched with radio buttons, while overlays will be switched with checkboxes. Note that all base layers should be passed in the base layers object, but only one should be added to the map during map instantiation. +var layers = function (baseLayers, overlays, options) { + return new Layers(baseLayers, overlays, options); +}; + +/* + * @class Control.Zoom + * @aka L.Control.Zoom + * @inherits Control + * + * A basic zoom control with two buttons (zoom in and zoom out). It is put on the map by default unless you set its [`zoomControl` option](#map-zoomcontrol) to `false`. Extends `Control`. + */ + +var Zoom = Control.extend({ + // @section + // @aka Control.Zoom options + options: { + position: 'topleft', + + // @option zoomInText: String = '' + // The text set on the 'zoom in' button. + zoomInText: '', + + // @option zoomInTitle: String = 'Zoom in' + // The title set on the 'zoom in' button. + zoomInTitle: 'Zoom in', + + // @option zoomOutText: String = '' + // The text set on the 'zoom out' button. + zoomOutText: '', + + // @option zoomOutTitle: String = 'Zoom out' + // The title set on the 'zoom out' button. + zoomOutTitle: 'Zoom out' + }, + + onAdd: function (map) { + var zoomName = 'leaflet-control-zoom', + container = create$1('div', zoomName + ' leaflet-bar'), + options = this.options; + + this._zoomInButton = this._createButton(options.zoomInText, options.zoomInTitle, + zoomName + '-in', container, this._zoomIn); + this._zoomOutButton = this._createButton(options.zoomOutText, options.zoomOutTitle, + zoomName + '-out', container, this._zoomOut); + + this._updateDisabled(); + map.on('zoomend zoomlevelschange', this._updateDisabled, this); + + return container; + }, + + onRemove: function (map) { + map.off('zoomend zoomlevelschange', this._updateDisabled, this); + }, + + disable: function () { + this._disabled = true; + this._updateDisabled(); + return this; + }, + + enable: function () { + this._disabled = false; + this._updateDisabled(); + return this; + }, + + _zoomIn: function (e) { + if (!this._disabled && this._map._zoom < this._map.getMaxZoom()) { + this._map.zoomIn(this._map.options.zoomDelta * (e.shiftKey ? 3 : 1)); + } + }, + + _zoomOut: function (e) { + if (!this._disabled && this._map._zoom > this._map.getMinZoom()) { + this._map.zoomOut(this._map.options.zoomDelta * (e.shiftKey ? 3 : 1)); + } + }, + + _createButton: function (html, title, className, container, fn) { + var link = create$1('a', className, container); + link.innerHTML = html; + link.href = '#'; + link.title = title; + + /* + * Will force screen readers like VoiceOver to read this as "Zoom in - button" + */ + link.setAttribute('role', 'button'); + link.setAttribute('aria-label', title); + + disableClickPropagation(link); + on(link, 'click', stop); + on(link, 'click', fn, this); + on(link, 'click', this._refocusOnMap, this); + + return link; + }, + + _updateDisabled: function () { + var map = this._map, + className = 'leaflet-disabled'; + + removeClass(this._zoomInButton, className); + removeClass(this._zoomOutButton, className); + this._zoomInButton.setAttribute('aria-disabled', 'false'); + this._zoomOutButton.setAttribute('aria-disabled', 'false'); + + if (this._disabled || map._zoom === map.getMinZoom()) { + addClass(this._zoomOutButton, className); + this._zoomOutButton.setAttribute('aria-disabled', 'true'); + } + if (this._disabled || map._zoom === map.getMaxZoom()) { + addClass(this._zoomInButton, className); + this._zoomInButton.setAttribute('aria-disabled', 'true'); + } + } +}); + +// @namespace Map +// @section Control options +// @option zoomControl: Boolean = true +// Whether a [zoom control](#control-zoom) is added to the map by default. +Map.mergeOptions({ + zoomControl: true +}); + +Map.addInitHook(function () { + if (this.options.zoomControl) { + // @section Controls + // @property zoomControl: Control.Zoom + // The default zoom control (only available if the + // [`zoomControl` option](#map-zoomcontrol) was `true` when creating the map). + this.zoomControl = new Zoom(); + this.addControl(this.zoomControl); + } +}); + +// @namespace Control.Zoom +// @factory L.control.zoom(options: Control.Zoom options) +// Creates a zoom control +var zoom = function (options) { + return new Zoom(options); +}; + +/* + * @class Control.Scale + * @aka L.Control.Scale + * @inherits Control + * + * A simple scale control that shows the scale of the current center of screen in metric (m/km) and imperial (mi/ft) systems. Extends `Control`. + * + * @example + * + * ```js + * L.control.scale().addTo(map); + * ``` + */ + +var Scale = Control.extend({ + // @section + // @aka Control.Scale options + options: { + position: 'bottomleft', + + // @option maxWidth: Number = 100 + // Maximum width of the control in pixels. The width is set dynamically to show round values (e.g. 100, 200, 500). + maxWidth: 100, + + // @option metric: Boolean = True + // Whether to show the metric scale line (m/km). + metric: true, + + // @option imperial: Boolean = True + // Whether to show the imperial scale line (mi/ft). + imperial: true + + // @option updateWhenIdle: Boolean = false + // If `true`, the control is updated on [`moveend`](#map-moveend), otherwise it's always up-to-date (updated on [`move`](#map-move)). + }, + + onAdd: function (map) { + var className = 'leaflet-control-scale', + container = create$1('div', className), + options = this.options; + + this._addScales(options, className + '-line', container); + + map.on(options.updateWhenIdle ? 'moveend' : 'move', this._update, this); + map.whenReady(this._update, this); + + return container; + }, + + onRemove: function (map) { + map.off(this.options.updateWhenIdle ? 'moveend' : 'move', this._update, this); + }, + + _addScales: function (options, className, container) { + if (options.metric) { + this._mScale = create$1('div', className, container); + } + if (options.imperial) { + this._iScale = create$1('div', className, container); + } + }, + + _update: function () { + var map = this._map, + y = map.getSize().y / 2; + + var maxMeters = map.distance( + map.containerPointToLatLng([0, y]), + map.containerPointToLatLng([this.options.maxWidth, y])); + + this._updateScales(maxMeters); + }, + + _updateScales: function (maxMeters) { + if (this.options.metric && maxMeters) { + this._updateMetric(maxMeters); + } + if (this.options.imperial && maxMeters) { + this._updateImperial(maxMeters); + } + }, + + _updateMetric: function (maxMeters) { + var meters = this._getRoundNum(maxMeters), + label = meters < 1000 ? meters + ' m' : (meters / 1000) + ' km'; + + this._updateScale(this._mScale, label, meters / maxMeters); + }, + + _updateImperial: function (maxMeters) { + var maxFeet = maxMeters * 3.2808399, + maxMiles, miles, feet; + + if (maxFeet > 5280) { + maxMiles = maxFeet / 5280; + miles = this._getRoundNum(maxMiles); + this._updateScale(this._iScale, miles + ' mi', miles / maxMiles); + + } else { + feet = this._getRoundNum(maxFeet); + this._updateScale(this._iScale, feet + ' ft', feet / maxFeet); + } + }, + + _updateScale: function (scale, text, ratio) { + scale.style.width = Math.round(this.options.maxWidth * ratio) + 'px'; + scale.innerHTML = text; + }, + + _getRoundNum: function (num) { + var pow10 = Math.pow(10, (Math.floor(num) + '').length - 1), + d = num / pow10; + + d = d >= 10 ? 10 : + d >= 5 ? 5 : + d >= 3 ? 3 : + d >= 2 ? 2 : 1; + + return pow10 * d; + } +}); + + +// @factory L.control.scale(options?: Control.Scale options) +// Creates an scale control with the given options. +var scale = function (options) { + return new Scale(options); +}; + +var ukrainianFlag = ''; + + +/* + * @class Control.Attribution + * @aka L.Control.Attribution + * @inherits Control + * + * The attribution control allows you to display attribution data in a small text box on a map. It is put on the map by default unless you set its [`attributionControl` option](#map-attributioncontrol) to `false`, and it fetches attribution texts from layers with the [`getAttribution` method](#layer-getattribution) automatically. Extends Control. + */ + +var Attribution = Control.extend({ + // @section + // @aka Control.Attribution options + options: { + position: 'bottomright', + + // @option prefix: String|false = 'Leaflet' + // The HTML text shown before the attributions. Pass `false` to disable. + prefix: '' + (Browser.inlineSvg ? ukrainianFlag + ' ' : '') + 'Leaflet' + }, + + initialize: function (options) { + setOptions(this, options); + + this._attributions = {}; + }, + + onAdd: function (map) { + map.attributionControl = this; + this._container = create$1('div', 'leaflet-control-attribution'); + disableClickPropagation(this._container); + + // TODO ugly, refactor + for (var i in map._layers) { + if (map._layers[i].getAttribution) { + this.addAttribution(map._layers[i].getAttribution()); + } + } + + this._update(); + + map.on('layeradd', this._addAttribution, this); + + return this._container; + }, + + onRemove: function (map) { + map.off('layeradd', this._addAttribution, this); + }, + + _addAttribution: function (ev) { + if (ev.layer.getAttribution) { + this.addAttribution(ev.layer.getAttribution()); + ev.layer.once('remove', function () { + this.removeAttribution(ev.layer.getAttribution()); + }, this); + } + }, + + // @method setPrefix(prefix: String|false): this + // The HTML text shown before the attributions. Pass `false` to disable. + setPrefix: function (prefix) { + this.options.prefix = prefix; + this._update(); + return this; + }, + + // @method addAttribution(text: String): this + // Adds an attribution text (e.g. `'© OpenStreetMap contributors'`). + addAttribution: function (text) { + if (!text) { return this; } + + if (!this._attributions[text]) { + this._attributions[text] = 0; + } + this._attributions[text]++; + + this._update(); + + return this; + }, + + // @method removeAttribution(text: String): this + // Removes an attribution text. + removeAttribution: function (text) { + if (!text) { return this; } + + if (this._attributions[text]) { + this._attributions[text]--; + this._update(); + } + + return this; + }, + + _update: function () { + if (!this._map) { return; } + + var attribs = []; + + for (var i in this._attributions) { + if (this._attributions[i]) { + attribs.push(i); + } + } + + var prefixAndAttribs = []; + + if (this.options.prefix) { + prefixAndAttribs.push(this.options.prefix); + } + if (attribs.length) { + prefixAndAttribs.push(attribs.join(', ')); + } + + this._container.innerHTML = prefixAndAttribs.join(' '); + } +}); + +// @namespace Map +// @section Control options +// @option attributionControl: Boolean = true +// Whether a [attribution control](#control-attribution) is added to the map by default. +Map.mergeOptions({ + attributionControl: true +}); + +Map.addInitHook(function () { + if (this.options.attributionControl) { + new Attribution().addTo(this); + } +}); + +// @namespace Control.Attribution +// @factory L.control.attribution(options: Control.Attribution options) +// Creates an attribution control. +var attribution = function (options) { + return new Attribution(options); +}; + +Control.Layers = Layers; +Control.Zoom = Zoom; +Control.Scale = Scale; +Control.Attribution = Attribution; + +control.layers = layers; +control.zoom = zoom; +control.scale = scale; +control.attribution = attribution; + +/* + L.Handler is a base class for handler classes that are used internally to inject + interaction features like dragging to classes like Map and Marker. +*/ + +// @class Handler +// @aka L.Handler +// Abstract class for map interaction handlers + +var Handler = Class.extend({ + initialize: function (map) { + this._map = map; + }, + + // @method enable(): this + // Enables the handler + enable: function () { + if (this._enabled) { return this; } + + this._enabled = true; + this.addHooks(); + return this; + }, + + // @method disable(): this + // Disables the handler + disable: function () { + if (!this._enabled) { return this; } + + this._enabled = false; + this.removeHooks(); + return this; + }, + + // @method enabled(): Boolean + // Returns `true` if the handler is enabled + enabled: function () { + return !!this._enabled; + } + + // @section Extension methods + // Classes inheriting from `Handler` must implement the two following methods: + // @method addHooks() + // Called when the handler is enabled, should add event hooks. + // @method removeHooks() + // Called when the handler is disabled, should remove the event hooks added previously. +}); + +// @section There is static function which can be called without instantiating L.Handler: +// @function addTo(map: Map, name: String): this +// Adds a new Handler to the given map with the given name. +Handler.addTo = function (map, name) { + map.addHandler(name, this); + return this; +}; + +var Mixin = {Events: Events}; + +/* + * @class Draggable + * @aka L.Draggable + * @inherits Evented + * + * A class for making DOM elements draggable (including touch support). + * Used internally for map and marker dragging. Only works for elements + * that were positioned with [`L.DomUtil.setPosition`](#domutil-setposition). + * + * @example + * ```js + * var draggable = new L.Draggable(elementToDrag); + * draggable.enable(); + * ``` + */ + +var START = Browser.touch ? 'touchstart mousedown' : 'mousedown'; + +var Draggable = Evented.extend({ + + options: { + // @section + // @aka Draggable options + // @option clickTolerance: Number = 3 + // The max number of pixels a user can shift the mouse pointer during a click + // for it to be considered a valid click (as opposed to a mouse drag). + clickTolerance: 3 + }, + + // @constructor L.Draggable(el: HTMLElement, dragHandle?: HTMLElement, preventOutline?: Boolean, options?: Draggable options) + // Creates a `Draggable` object for moving `el` when you start dragging the `dragHandle` element (equals `el` itself by default). + initialize: function (element, dragStartTarget, preventOutline, options) { + setOptions(this, options); + + this._element = element; + this._dragStartTarget = dragStartTarget || element; + this._preventOutline = preventOutline; + }, + + // @method enable() + // Enables the dragging ability + enable: function () { + if (this._enabled) { return; } + + on(this._dragStartTarget, START, this._onDown, this); + + this._enabled = true; + }, + + // @method disable() + // Disables the dragging ability + disable: function () { + if (!this._enabled) { return; } + + // If we're currently dragging this draggable, + // disabling it counts as first ending the drag. + if (Draggable._dragging === this) { + this.finishDrag(true); + } + + off(this._dragStartTarget, START, this._onDown, this); + + this._enabled = false; + this._moved = false; + }, + + _onDown: function (e) { + // Ignore the event if disabled; this happens in IE11 + // under some circumstances, see #3666. + if (!this._enabled) { return; } + + this._moved = false; + + if (hasClass(this._element, 'leaflet-zoom-anim')) { return; } + + if (e.touches && e.touches.length !== 1) { + // Finish dragging to avoid conflict with touchZoom + if (Draggable._dragging === this) { + this.finishDrag(); + } + return; + } + + if (Draggable._dragging || e.shiftKey || ((e.which !== 1) && (e.button !== 1) && !e.touches)) { return; } + Draggable._dragging = this; // Prevent dragging multiple objects at once. + + if (this._preventOutline) { + preventOutline(this._element); + } + + disableImageDrag(); + disableTextSelection(); + + if (this._moving) { return; } + + // @event down: Event + // Fired when a drag is about to start. + this.fire('down'); + + var first = e.touches ? e.touches[0] : e, + sizedParent = getSizedParentNode(this._element); + + this._startPoint = new Point(first.clientX, first.clientY); + this._startPos = getPosition(this._element); + + // Cache the scale, so that we can continuously compensate for it during drag (_onMove). + this._parentScale = getScale(sizedParent); + + var mouseevent = e.type === 'mousedown'; + on(document, mouseevent ? 'mousemove' : 'touchmove', this._onMove, this); + on(document, mouseevent ? 'mouseup' : 'touchend touchcancel', this._onUp, this); + }, + + _onMove: function (e) { + // Ignore the event if disabled; this happens in IE11 + // under some circumstances, see #3666. + if (!this._enabled) { return; } + + if (e.touches && e.touches.length > 1) { + this._moved = true; + return; + } + + var first = (e.touches && e.touches.length === 1 ? e.touches[0] : e), + offset = new Point(first.clientX, first.clientY)._subtract(this._startPoint); + + if (!offset.x && !offset.y) { return; } + if (Math.abs(offset.x) + Math.abs(offset.y) < this.options.clickTolerance) { return; } + + // We assume that the parent container's position, border and scale do not change for the duration of the drag. + // Therefore there is no need to account for the position and border (they are eliminated by the subtraction) + // and we can use the cached value for the scale. + offset.x /= this._parentScale.x; + offset.y /= this._parentScale.y; + + preventDefault(e); + + if (!this._moved) { + // @event dragstart: Event + // Fired when a drag starts + this.fire('dragstart'); + + this._moved = true; + + addClass(document.body, 'leaflet-dragging'); + + this._lastTarget = e.target || e.srcElement; + // IE and Edge do not give the element, so fetch it + // if necessary + if (window.SVGElementInstance && this._lastTarget instanceof window.SVGElementInstance) { + this._lastTarget = this._lastTarget.correspondingUseElement; + } + addClass(this._lastTarget, 'leaflet-drag-target'); + } + + this._newPos = this._startPos.add(offset); + this._moving = true; + + this._lastEvent = e; + this._updatePosition(); + }, + + _updatePosition: function () { + var e = {originalEvent: this._lastEvent}; + + // @event predrag: Event + // Fired continuously during dragging *before* each corresponding + // update of the element's position. + this.fire('predrag', e); + setPosition(this._element, this._newPos); + + // @event drag: Event + // Fired continuously during dragging. + this.fire('drag', e); + }, + + _onUp: function () { + // Ignore the event if disabled; this happens in IE11 + // under some circumstances, see #3666. + if (!this._enabled) { return; } + this.finishDrag(); + }, + + finishDrag: function (noInertia) { + removeClass(document.body, 'leaflet-dragging'); + + if (this._lastTarget) { + removeClass(this._lastTarget, 'leaflet-drag-target'); + this._lastTarget = null; + } + + off(document, 'mousemove touchmove', this._onMove, this); + off(document, 'mouseup touchend touchcancel', this._onUp, this); + + enableImageDrag(); + enableTextSelection(); + + var fireDragend = this._moved && this._moving; + + this._moving = false; + Draggable._dragging = false; + + if (fireDragend) { + // @event dragend: DragEndEvent + // Fired when the drag ends. + this.fire('dragend', { + noInertia: noInertia, + distance: this._newPos.distanceTo(this._startPos) + }); + } + } + +}); + +/* + * @namespace PolyUtil + * Various utility functions for polygon geometries. + */ + +/* @function clipPolygon(points: Point[], bounds: Bounds, round?: Boolean): Point[] + * Clips the polygon geometry defined by the given `points` by the given bounds (using the [Sutherland-Hodgman algorithm](https://en.wikipedia.org/wiki/Sutherland%E2%80%93Hodgman_algorithm)). + * Used by Leaflet to only show polygon points that are on the screen or near, increasing + * performance. Note that polygon points needs different algorithm for clipping + * than polyline, so there's a separate method for it. + */ +function clipPolygon(points, bounds, round) { + var clippedPoints, + edges = [1, 4, 2, 8], + i, j, k, + a, b, + len, edge, p; + + for (i = 0, len = points.length; i < len; i++) { + points[i]._code = _getBitCode(points[i], bounds); + } + + // for each edge (left, bottom, right, top) + for (k = 0; k < 4; k++) { + edge = edges[k]; + clippedPoints = []; + + for (i = 0, len = points.length, j = len - 1; i < len; j = i++) { + a = points[i]; + b = points[j]; + + // if a is inside the clip window + if (!(a._code & edge)) { + // if b is outside the clip window (a->b goes out of screen) + if (b._code & edge) { + p = _getEdgeIntersection(b, a, edge, bounds, round); + p._code = _getBitCode(p, bounds); + clippedPoints.push(p); + } + clippedPoints.push(a); + + // else if b is inside the clip window (a->b enters the screen) + } else if (!(b._code & edge)) { + p = _getEdgeIntersection(b, a, edge, bounds, round); + p._code = _getBitCode(p, bounds); + clippedPoints.push(p); + } + } + points = clippedPoints; + } + + return points; +} + +/* @function polygonCenter(latlngs: LatLng[], crs: CRS): LatLng + * Returns the center ([centroid](http://en.wikipedia.org/wiki/Centroid)) of the passed LatLngs (first ring) from a polygon. + */ +function polygonCenter(latlngs, crs) { + var i, j, p1, p2, f, area, x, y, center; + + if (!latlngs || latlngs.length === 0) { + throw new Error('latlngs not passed'); + } + + if (!isFlat(latlngs)) { + console.warn('latlngs are not flat! Only the first ring will be used'); + latlngs = latlngs[0]; + } + + var centroidLatLng = toLatLng([0, 0]); + + var bounds = toLatLngBounds(latlngs); + var areaBounds = bounds.getNorthWest().distanceTo(bounds.getSouthWest()) * bounds.getNorthEast().distanceTo(bounds.getNorthWest()); + // tests showed that below 1700 rounding errors are happening + if (areaBounds < 1700) { + // getting a inexact center, to move the latlngs near to [0, 0] to prevent rounding errors + centroidLatLng = centroid(latlngs); + } + + var len = latlngs.length; + var points = []; + for (i = 0; i < len; i++) { + var latlng = toLatLng(latlngs[i]); + points.push(crs.project(toLatLng([latlng.lat - centroidLatLng.lat, latlng.lng - centroidLatLng.lng]))); + } + + area = x = y = 0; + + // polygon centroid algorithm; + for (i = 0, j = len - 1; i < len; j = i++) { + p1 = points[i]; + p2 = points[j]; + + f = p1.y * p2.x - p2.y * p1.x; + x += (p1.x + p2.x) * f; + y += (p1.y + p2.y) * f; + area += f * 3; + } + + if (area === 0) { + // Polygon is so small that all points are on same pixel. + center = points[0]; + } else { + center = [x / area, y / area]; + } + + var latlngCenter = crs.unproject(toPoint(center)); + return toLatLng([latlngCenter.lat + centroidLatLng.lat, latlngCenter.lng + centroidLatLng.lng]); +} + +/* @function centroid(latlngs: LatLng[]): LatLng + * Returns the 'center of mass' of the passed LatLngs. + */ +function centroid(coords) { + var latSum = 0; + var lngSum = 0; + var len = 0; + for (var i = 0; i < coords.length; i++) { + var latlng = toLatLng(coords[i]); + latSum += latlng.lat; + lngSum += latlng.lng; + len++; + } + return toLatLng([latSum / len, lngSum / len]); +} + +var PolyUtil = { + __proto__: null, + clipPolygon: clipPolygon, + polygonCenter: polygonCenter, + centroid: centroid +}; + +/* + * @namespace LineUtil + * + * Various utility functions for polyline points processing, used by Leaflet internally to make polylines lightning-fast. + */ + +// Simplify polyline with vertex reduction and Douglas-Peucker simplification. +// Improves rendering performance dramatically by lessening the number of points to draw. + +// @function simplify(points: Point[], tolerance: Number): Point[] +// Dramatically reduces the number of points in a polyline while retaining +// its shape and returns a new array of simplified points, using the +// [Ramer-Douglas-Peucker algorithm](https://en.wikipedia.org/wiki/Ramer-Douglas-Peucker_algorithm). +// Used for a huge performance boost when processing/displaying Leaflet polylines for +// each zoom level and also reducing visual noise. tolerance affects the amount of +// simplification (lesser value means higher quality but slower and with more points). +// Also released as a separated micro-library [Simplify.js](https://mourner.github.io/simplify-js/). +function simplify(points, tolerance) { + if (!tolerance || !points.length) { + return points.slice(); + } + + var sqTolerance = tolerance * tolerance; + + // stage 1: vertex reduction + points = _reducePoints(points, sqTolerance); + + // stage 2: Douglas-Peucker simplification + points = _simplifyDP(points, sqTolerance); + + return points; +} + +// @function pointToSegmentDistance(p: Point, p1: Point, p2: Point): Number +// Returns the distance between point `p` and segment `p1` to `p2`. +function pointToSegmentDistance(p, p1, p2) { + return Math.sqrt(_sqClosestPointOnSegment(p, p1, p2, true)); +} + +// @function closestPointOnSegment(p: Point, p1: Point, p2: Point): Number +// Returns the closest point from a point `p` on a segment `p1` to `p2`. +function closestPointOnSegment(p, p1, p2) { + return _sqClosestPointOnSegment(p, p1, p2); +} + +// Ramer-Douglas-Peucker simplification, see https://en.wikipedia.org/wiki/Ramer-Douglas-Peucker_algorithm +function _simplifyDP(points, sqTolerance) { + + var len = points.length, + ArrayConstructor = typeof Uint8Array !== undefined + '' ? Uint8Array : Array, + markers = new ArrayConstructor(len); + + markers[0] = markers[len - 1] = 1; + + _simplifyDPStep(points, markers, sqTolerance, 0, len - 1); + + var i, + newPoints = []; + + for (i = 0; i < len; i++) { + if (markers[i]) { + newPoints.push(points[i]); + } + } + + return newPoints; +} + +function _simplifyDPStep(points, markers, sqTolerance, first, last) { + + var maxSqDist = 0, + index, i, sqDist; + + for (i = first + 1; i <= last - 1; i++) { + sqDist = _sqClosestPointOnSegment(points[i], points[first], points[last], true); + + if (sqDist > maxSqDist) { + index = i; + maxSqDist = sqDist; + } + } + + if (maxSqDist > sqTolerance) { + markers[index] = 1; + + _simplifyDPStep(points, markers, sqTolerance, first, index); + _simplifyDPStep(points, markers, sqTolerance, index, last); + } +} + +// reduce points that are too close to each other to a single point +function _reducePoints(points, sqTolerance) { + var reducedPoints = [points[0]]; + + for (var i = 1, prev = 0, len = points.length; i < len; i++) { + if (_sqDist(points[i], points[prev]) > sqTolerance) { + reducedPoints.push(points[i]); + prev = i; + } + } + if (prev < len - 1) { + reducedPoints.push(points[len - 1]); + } + return reducedPoints; +} + +var _lastCode; + +// @function clipSegment(a: Point, b: Point, bounds: Bounds, useLastCode?: Boolean, round?: Boolean): Point[]|Boolean +// Clips the segment a to b by rectangular bounds with the +// [Cohen-Sutherland algorithm](https://en.wikipedia.org/wiki/Cohen%E2%80%93Sutherland_algorithm) +// (modifying the segment points directly!). Used by Leaflet to only show polyline +// points that are on the screen or near, increasing performance. +function clipSegment(a, b, bounds, useLastCode, round) { + var codeA = useLastCode ? _lastCode : _getBitCode(a, bounds), + codeB = _getBitCode(b, bounds), + + codeOut, p, newCode; + + // save 2nd code to avoid calculating it on the next segment + _lastCode = codeB; + + while (true) { + // if a,b is inside the clip window (trivial accept) + if (!(codeA | codeB)) { + return [a, b]; + } + + // if a,b is outside the clip window (trivial reject) + if (codeA & codeB) { + return false; + } + + // other cases + codeOut = codeA || codeB; + p = _getEdgeIntersection(a, b, codeOut, bounds, round); + newCode = _getBitCode(p, bounds); + + if (codeOut === codeA) { + a = p; + codeA = newCode; + } else { + b = p; + codeB = newCode; + } + } +} + +function _getEdgeIntersection(a, b, code, bounds, round) { + var dx = b.x - a.x, + dy = b.y - a.y, + min = bounds.min, + max = bounds.max, + x, y; + + if (code & 8) { // top + x = a.x + dx * (max.y - a.y) / dy; + y = max.y; + + } else if (code & 4) { // bottom + x = a.x + dx * (min.y - a.y) / dy; + y = min.y; + + } else if (code & 2) { // right + x = max.x; + y = a.y + dy * (max.x - a.x) / dx; + + } else if (code & 1) { // left + x = min.x; + y = a.y + dy * (min.x - a.x) / dx; + } + + return new Point(x, y, round); +} + +function _getBitCode(p, bounds) { + var code = 0; + + if (p.x < bounds.min.x) { // left + code |= 1; + } else if (p.x > bounds.max.x) { // right + code |= 2; + } + + if (p.y < bounds.min.y) { // bottom + code |= 4; + } else if (p.y > bounds.max.y) { // top + code |= 8; + } + + return code; +} + +// square distance (to avoid unnecessary Math.sqrt calls) +function _sqDist(p1, p2) { + var dx = p2.x - p1.x, + dy = p2.y - p1.y; + return dx * dx + dy * dy; +} + +// return closest point on segment or distance to that point +function _sqClosestPointOnSegment(p, p1, p2, sqDist) { + var x = p1.x, + y = p1.y, + dx = p2.x - x, + dy = p2.y - y, + dot = dx * dx + dy * dy, + t; + + if (dot > 0) { + t = ((p.x - x) * dx + (p.y - y) * dy) / dot; + + if (t > 1) { + x = p2.x; + y = p2.y; + } else if (t > 0) { + x += dx * t; + y += dy * t; + } + } + + dx = p.x - x; + dy = p.y - y; + + return sqDist ? dx * dx + dy * dy : new Point(x, y); +} + + +// @function isFlat(latlngs: LatLng[]): Boolean +// Returns true if `latlngs` is a flat array, false is nested. +function isFlat(latlngs) { + return !isArray(latlngs[0]) || (typeof latlngs[0][0] !== 'object' && typeof latlngs[0][0] !== 'undefined'); +} + +function _flat(latlngs) { + console.warn('Deprecated use of _flat, please use L.LineUtil.isFlat instead.'); + return isFlat(latlngs); +} + +/* @function polylineCenter(latlngs: LatLng[], crs: CRS): LatLng + * Returns the center ([centroid](http://en.wikipedia.org/wiki/Centroid)) of the passed LatLngs (first ring) from a polyline. + */ +function polylineCenter(latlngs, crs) { + var i, halfDist, segDist, dist, p1, p2, ratio, center; + + if (!latlngs || latlngs.length === 0) { + throw new Error('latlngs not passed'); + } + + if (!isFlat(latlngs)) { + console.warn('latlngs are not flat! Only the first ring will be used'); + latlngs = latlngs[0]; + } + + var centroidLatLng = toLatLng([0, 0]); + + var bounds = toLatLngBounds(latlngs); + var areaBounds = bounds.getNorthWest().distanceTo(bounds.getSouthWest()) * bounds.getNorthEast().distanceTo(bounds.getNorthWest()); + // tests showed that below 1700 rounding errors are happening + if (areaBounds < 1700) { + // getting a inexact center, to move the latlngs near to [0, 0] to prevent rounding errors + centroidLatLng = centroid(latlngs); + } + + var len = latlngs.length; + var points = []; + for (i = 0; i < len; i++) { + var latlng = toLatLng(latlngs[i]); + points.push(crs.project(toLatLng([latlng.lat - centroidLatLng.lat, latlng.lng - centroidLatLng.lng]))); + } + + for (i = 0, halfDist = 0; i < len - 1; i++) { + halfDist += points[i].distanceTo(points[i + 1]) / 2; + } + + // The line is so small in the current view that all points are on the same pixel. + if (halfDist === 0) { + center = points[0]; + } else { + for (i = 0, dist = 0; i < len - 1; i++) { + p1 = points[i]; + p2 = points[i + 1]; + segDist = p1.distanceTo(p2); + dist += segDist; + + if (dist > halfDist) { + ratio = (dist - halfDist) / segDist; + center = [ + p2.x - ratio * (p2.x - p1.x), + p2.y - ratio * (p2.y - p1.y) + ]; + break; + } + } + } + + var latlngCenter = crs.unproject(toPoint(center)); + return toLatLng([latlngCenter.lat + centroidLatLng.lat, latlngCenter.lng + centroidLatLng.lng]); +} + +var LineUtil = { + __proto__: null, + simplify: simplify, + pointToSegmentDistance: pointToSegmentDistance, + closestPointOnSegment: closestPointOnSegment, + clipSegment: clipSegment, + _getEdgeIntersection: _getEdgeIntersection, + _getBitCode: _getBitCode, + _sqClosestPointOnSegment: _sqClosestPointOnSegment, + isFlat: isFlat, + _flat: _flat, + polylineCenter: polylineCenter +}; + +/* + * @namespace Projection + * @section + * Leaflet comes with a set of already defined Projections out of the box: + * + * @projection L.Projection.LonLat + * + * Equirectangular, or Plate Carree projection — the most simple projection, + * mostly used by GIS enthusiasts. Directly maps `x` as longitude, and `y` as + * latitude. Also suitable for flat worlds, e.g. game maps. Used by the + * `EPSG:4326` and `Simple` CRS. + */ + +var LonLat = { + project: function (latlng) { + return new Point(latlng.lng, latlng.lat); + }, + + unproject: function (point) { + return new LatLng(point.y, point.x); + }, + + bounds: new Bounds([-180, -90], [180, 90]) +}; + +/* + * @namespace Projection + * @projection L.Projection.Mercator + * + * Elliptical Mercator projection — more complex than Spherical Mercator. Assumes that Earth is an ellipsoid. Used by the EPSG:3395 CRS. + */ + +var Mercator = { + R: 6378137, + R_MINOR: 6356752.314245179, + + bounds: new Bounds([-20037508.34279, -15496570.73972], [20037508.34279, 18764656.23138]), + + project: function (latlng) { + var d = Math.PI / 180, + r = this.R, + y = latlng.lat * d, + tmp = this.R_MINOR / r, + e = Math.sqrt(1 - tmp * tmp), + con = e * Math.sin(y); + + var ts = Math.tan(Math.PI / 4 - y / 2) / Math.pow((1 - con) / (1 + con), e / 2); + y = -r * Math.log(Math.max(ts, 1E-10)); + + return new Point(latlng.lng * d * r, y); + }, + + unproject: function (point) { + var d = 180 / Math.PI, + r = this.R, + tmp = this.R_MINOR / r, + e = Math.sqrt(1 - tmp * tmp), + ts = Math.exp(-point.y / r), + phi = Math.PI / 2 - 2 * Math.atan(ts); + + for (var i = 0, dphi = 0.1, con; i < 15 && Math.abs(dphi) > 1e-7; i++) { + con = e * Math.sin(phi); + con = Math.pow((1 - con) / (1 + con), e / 2); + dphi = Math.PI / 2 - 2 * Math.atan(ts * con) - phi; + phi += dphi; + } + + return new LatLng(phi * d, point.x * d / r); + } +}; + +/* + * @class Projection + + * An object with methods for projecting geographical coordinates of the world onto + * a flat surface (and back). See [Map projection](https://en.wikipedia.org/wiki/Map_projection). + + * @property bounds: Bounds + * The bounds (specified in CRS units) where the projection is valid + + * @method project(latlng: LatLng): Point + * Projects geographical coordinates into a 2D point. + * Only accepts actual `L.LatLng` instances, not arrays. + + * @method unproject(point: Point): LatLng + * The inverse of `project`. Projects a 2D point into a geographical location. + * Only accepts actual `L.Point` instances, not arrays. + + * Note that the projection instances do not inherit from Leaflet's `Class` object, + * and can't be instantiated. Also, new classes can't inherit from them, + * and methods can't be added to them with the `include` function. + + */ + +var index = { + __proto__: null, + LonLat: LonLat, + Mercator: Mercator, + SphericalMercator: SphericalMercator +}; + +/* + * @namespace CRS + * @crs L.CRS.EPSG3395 + * + * Rarely used by some commercial tile providers. Uses Elliptical Mercator projection. + */ +var EPSG3395 = extend({}, Earth, { + code: 'EPSG:3395', + projection: Mercator, + + transformation: (function () { + var scale = 0.5 / (Math.PI * Mercator.R); + return toTransformation(scale, 0.5, -scale, 0.5); + }()) +}); + +/* + * @namespace CRS + * @crs L.CRS.EPSG4326 + * + * A common CRS among GIS enthusiasts. Uses simple Equirectangular projection. + * + * Leaflet 1.0.x complies with the [TMS coordinate scheme for EPSG:4326](https://wiki.osgeo.org/wiki/Tile_Map_Service_Specification#global-geodetic), + * which is a breaking change from 0.7.x behaviour. If you are using a `TileLayer` + * with this CRS, ensure that there are two 256x256 pixel tiles covering the + * whole earth at zoom level zero, and that the tile coordinate origin is (-180,+90), + * or (-180,-90) for `TileLayer`s with [the `tms` option](#tilelayer-tms) set. + */ + +var EPSG4326 = extend({}, Earth, { + code: 'EPSG:4326', + projection: LonLat, + transformation: toTransformation(1 / 180, 1, -1 / 180, 0.5) +}); + +/* + * @namespace CRS + * @crs L.CRS.Simple + * + * A simple CRS that maps longitude and latitude into `x` and `y` directly. + * May be used for maps of flat surfaces (e.g. game maps). Note that the `y` + * axis should still be inverted (going from bottom to top). `distance()` returns + * simple euclidean distance. + */ + +var Simple = extend({}, CRS, { + projection: LonLat, + transformation: toTransformation(1, 0, -1, 0), + + scale: function (zoom) { + return Math.pow(2, zoom); + }, + + zoom: function (scale) { + return Math.log(scale) / Math.LN2; + }, + + distance: function (latlng1, latlng2) { + var dx = latlng2.lng - latlng1.lng, + dy = latlng2.lat - latlng1.lat; + + return Math.sqrt(dx * dx + dy * dy); + }, + + infinite: true +}); + +CRS.Earth = Earth; +CRS.EPSG3395 = EPSG3395; +CRS.EPSG3857 = EPSG3857; +CRS.EPSG900913 = EPSG900913; +CRS.EPSG4326 = EPSG4326; +CRS.Simple = Simple; + +/* + * @class Layer + * @inherits Evented + * @aka L.Layer + * @aka ILayer + * + * A set of methods from the Layer base class that all Leaflet layers use. + * Inherits all methods, options and events from `L.Evented`. + * + * @example + * + * ```js + * var layer = L.marker(latlng).addTo(map); + * layer.addTo(map); + * layer.remove(); + * ``` + * + * @event add: Event + * Fired after the layer is added to a map + * + * @event remove: Event + * Fired after the layer is removed from a map + */ + + +var Layer = Evented.extend({ + + // Classes extending `L.Layer` will inherit the following options: + options: { + // @option pane: String = 'overlayPane' + // By default the layer will be added to the map's [overlay pane](#map-overlaypane). Overriding this option will cause the layer to be placed on another pane by default. + pane: 'overlayPane', + + // @option attribution: String = null + // String to be shown in the attribution control, e.g. "© OpenStreetMap contributors". It describes the layer data and is often a legal obligation towards copyright holders and tile providers. + attribution: null, + + bubblingMouseEvents: true + }, + + /* @section + * Classes extending `L.Layer` will inherit the following methods: + * + * @method addTo(map: Map|LayerGroup): this + * Adds the layer to the given map or layer group. + */ + addTo: function (map) { + map.addLayer(this); + return this; + }, + + // @method remove: this + // Removes the layer from the map it is currently active on. + remove: function () { + return this.removeFrom(this._map || this._mapToAdd); + }, + + // @method removeFrom(map: Map): this + // Removes the layer from the given map + // + // @alternative + // @method removeFrom(group: LayerGroup): this + // Removes the layer from the given `LayerGroup` + removeFrom: function (obj) { + if (obj) { + obj.removeLayer(this); + } + return this; + }, + + // @method getPane(name? : String): HTMLElement + // Returns the `HTMLElement` representing the named pane on the map. If `name` is omitted, returns the pane for this layer. + getPane: function (name) { + return this._map.getPane(name ? (this.options[name] || name) : this.options.pane); + }, + + addInteractiveTarget: function (targetEl) { + this._map._targets[stamp(targetEl)] = this; + return this; + }, + + removeInteractiveTarget: function (targetEl) { + delete this._map._targets[stamp(targetEl)]; + return this; + }, + + // @method getAttribution: String + // Used by the `attribution control`, returns the [attribution option](#gridlayer-attribution). + getAttribution: function () { + return this.options.attribution; + }, + + _layerAdd: function (e) { + var map = e.target; + + // check in case layer gets added and then removed before the map is ready + if (!map.hasLayer(this)) { return; } + + this._map = map; + this._zoomAnimated = map._zoomAnimated; + + if (this.getEvents) { + var events = this.getEvents(); + map.on(events, this); + this.once('remove', function () { + map.off(events, this); + }, this); + } + + this.onAdd(map); + + this.fire('add'); + map.fire('layeradd', {layer: this}); + } +}); + +/* @section Extension methods + * @uninheritable + * + * Every layer should extend from `L.Layer` and (re-)implement the following methods. + * + * @method onAdd(map: Map): this + * Should contain code that creates DOM elements for the layer, adds them to `map panes` where they should belong and puts listeners on relevant map events. Called on [`map.addLayer(layer)`](#map-addlayer). + * + * @method onRemove(map: Map): this + * Should contain all clean up code that removes the layer's elements from the DOM and removes listeners previously added in [`onAdd`](#layer-onadd). Called on [`map.removeLayer(layer)`](#map-removelayer). + * + * @method getEvents(): Object + * This optional method should return an object like `{ viewreset: this._reset }` for [`addEventListener`](#evented-addeventlistener). The event handlers in this object will be automatically added and removed from the map with your layer. + * + * @method getAttribution(): String + * This optional method should return a string containing HTML to be shown on the `Attribution control` whenever the layer is visible. + * + * @method beforeAdd(map: Map): this + * Optional method. Called on [`map.addLayer(layer)`](#map-addlayer), before the layer is added to the map, before events are initialized, without waiting until the map is in a usable state. Use for early initialization only. + */ + + +/* @namespace Map + * @section Layer events + * + * @event layeradd: LayerEvent + * Fired when a new layer is added to the map. + * + * @event layerremove: LayerEvent + * Fired when some layer is removed from the map + * + * @section Methods for Layers and Controls + */ +Map.include({ + // @method addLayer(layer: Layer): this + // Adds the given layer to the map + addLayer: function (layer) { + if (!layer._layerAdd) { + throw new Error('The provided object is not a Layer.'); + } + + var id = stamp(layer); + if (this._layers[id]) { return this; } + this._layers[id] = layer; + + layer._mapToAdd = this; + + if (layer.beforeAdd) { + layer.beforeAdd(this); + } + + this.whenReady(layer._layerAdd, layer); + + return this; + }, + + // @method removeLayer(layer: Layer): this + // Removes the given layer from the map. + removeLayer: function (layer) { + var id = stamp(layer); + + if (!this._layers[id]) { return this; } + + if (this._loaded) { + layer.onRemove(this); + } + + delete this._layers[id]; + + if (this._loaded) { + this.fire('layerremove', {layer: layer}); + layer.fire('remove'); + } + + layer._map = layer._mapToAdd = null; + + return this; + }, + + // @method hasLayer(layer: Layer): Boolean + // Returns `true` if the given layer is currently added to the map + hasLayer: function (layer) { + return stamp(layer) in this._layers; + }, + + /* @method eachLayer(fn: Function, context?: Object): this + * Iterates over the layers of the map, optionally specifying context of the iterator function. + * ``` + * map.eachLayer(function(layer){ + * layer.bindPopup('Hello'); + * }); + * ``` + */ + eachLayer: function (method, context) { + for (var i in this._layers) { + method.call(context, this._layers[i]); + } + return this; + }, + + _addLayers: function (layers) { + layers = layers ? (isArray(layers) ? layers : [layers]) : []; + + for (var i = 0, len = layers.length; i < len; i++) { + this.addLayer(layers[i]); + } + }, + + _addZoomLimit: function (layer) { + if (!isNaN(layer.options.maxZoom) || !isNaN(layer.options.minZoom)) { + this._zoomBoundLayers[stamp(layer)] = layer; + this._updateZoomLevels(); + } + }, + + _removeZoomLimit: function (layer) { + var id = stamp(layer); + + if (this._zoomBoundLayers[id]) { + delete this._zoomBoundLayers[id]; + this._updateZoomLevels(); + } + }, + + _updateZoomLevels: function () { + var minZoom = Infinity, + maxZoom = -Infinity, + oldZoomSpan = this._getZoomSpan(); + + for (var i in this._zoomBoundLayers) { + var options = this._zoomBoundLayers[i].options; + + minZoom = options.minZoom === undefined ? minZoom : Math.min(minZoom, options.minZoom); + maxZoom = options.maxZoom === undefined ? maxZoom : Math.max(maxZoom, options.maxZoom); + } + + this._layersMaxZoom = maxZoom === -Infinity ? undefined : maxZoom; + this._layersMinZoom = minZoom === Infinity ? undefined : minZoom; + + // @section Map state change events + // @event zoomlevelschange: Event + // Fired when the number of zoomlevels on the map is changed due + // to adding or removing a layer. + if (oldZoomSpan !== this._getZoomSpan()) { + this.fire('zoomlevelschange'); + } + + if (this.options.maxZoom === undefined && this._layersMaxZoom && this.getZoom() > this._layersMaxZoom) { + this.setZoom(this._layersMaxZoom); + } + if (this.options.minZoom === undefined && this._layersMinZoom && this.getZoom() < this._layersMinZoom) { + this.setZoom(this._layersMinZoom); + } + } +}); + +/* + * @class LayerGroup + * @aka L.LayerGroup + * @inherits Interactive layer + * + * Used to group several layers and handle them as one. If you add it to the map, + * any layers added or removed from the group will be added/removed on the map as + * well. Extends `Layer`. + * + * @example + * + * ```js + * L.layerGroup([marker1, marker2]) + * .addLayer(polyline) + * .addTo(map); + * ``` + */ + +var LayerGroup = Layer.extend({ + + initialize: function (layers, options) { + setOptions(this, options); + + this._layers = {}; + + var i, len; + + if (layers) { + for (i = 0, len = layers.length; i < len; i++) { + this.addLayer(layers[i]); + } + } + }, + + // @method addLayer(layer: Layer): this + // Adds the given layer to the group. + addLayer: function (layer) { + var id = this.getLayerId(layer); + + this._layers[id] = layer; + + if (this._map) { + this._map.addLayer(layer); + } + + return this; + }, + + // @method removeLayer(layer: Layer): this + // Removes the given layer from the group. + // @alternative + // @method removeLayer(id: Number): this + // Removes the layer with the given internal ID from the group. + removeLayer: function (layer) { + var id = layer in this._layers ? layer : this.getLayerId(layer); + + if (this._map && this._layers[id]) { + this._map.removeLayer(this._layers[id]); + } + + delete this._layers[id]; + + return this; + }, + + // @method hasLayer(layer: Layer): Boolean + // Returns `true` if the given layer is currently added to the group. + // @alternative + // @method hasLayer(id: Number): Boolean + // Returns `true` if the given internal ID is currently added to the group. + hasLayer: function (layer) { + var layerId = typeof layer === 'number' ? layer : this.getLayerId(layer); + return layerId in this._layers; + }, + + // @method clearLayers(): this + // Removes all the layers from the group. + clearLayers: function () { + return this.eachLayer(this.removeLayer, this); + }, + + // @method invoke(methodName: String, …): this + // Calls `methodName` on every layer contained in this group, passing any + // additional parameters. Has no effect if the layers contained do not + // implement `methodName`. + invoke: function (methodName) { + var args = Array.prototype.slice.call(arguments, 1), + i, layer; + + for (i in this._layers) { + layer = this._layers[i]; + + if (layer[methodName]) { + layer[methodName].apply(layer, args); + } + } + + return this; + }, + + onAdd: function (map) { + this.eachLayer(map.addLayer, map); + }, + + onRemove: function (map) { + this.eachLayer(map.removeLayer, map); + }, + + // @method eachLayer(fn: Function, context?: Object): this + // Iterates over the layers of the group, optionally specifying context of the iterator function. + // ```js + // group.eachLayer(function (layer) { + // layer.bindPopup('Hello'); + // }); + // ``` + eachLayer: function (method, context) { + for (var i in this._layers) { + method.call(context, this._layers[i]); + } + return this; + }, + + // @method getLayer(id: Number): Layer + // Returns the layer with the given internal ID. + getLayer: function (id) { + return this._layers[id]; + }, + + // @method getLayers(): Layer[] + // Returns an array of all the layers added to the group. + getLayers: function () { + var layers = []; + this.eachLayer(layers.push, layers); + return layers; + }, + + // @method setZIndex(zIndex: Number): this + // Calls `setZIndex` on every layer contained in this group, passing the z-index. + setZIndex: function (zIndex) { + return this.invoke('setZIndex', zIndex); + }, + + // @method getLayerId(layer: Layer): Number + // Returns the internal ID for a layer + getLayerId: function (layer) { + return stamp(layer); + } +}); + + +// @factory L.layerGroup(layers?: Layer[], options?: Object) +// Create a layer group, optionally given an initial set of layers and an `options` object. +var layerGroup = function (layers, options) { + return new LayerGroup(layers, options); +}; + +/* + * @class FeatureGroup + * @aka L.FeatureGroup + * @inherits LayerGroup + * + * Extended `LayerGroup` that makes it easier to do the same thing to all its member layers: + * * [`bindPopup`](#layer-bindpopup) binds a popup to all of the layers at once (likewise with [`bindTooltip`](#layer-bindtooltip)) + * * Events are propagated to the `FeatureGroup`, so if the group has an event + * handler, it will handle events from any of the layers. This includes mouse events + * and custom events. + * * Has `layeradd` and `layerremove` events + * + * @example + * + * ```js + * L.featureGroup([marker1, marker2, polyline]) + * .bindPopup('Hello world!') + * .on('click', function() { alert('Clicked on a member of the group!'); }) + * .addTo(map); + * ``` + */ + +var FeatureGroup = LayerGroup.extend({ + + addLayer: function (layer) { + if (this.hasLayer(layer)) { + return this; + } + + layer.addEventParent(this); + + LayerGroup.prototype.addLayer.call(this, layer); + + // @event layeradd: LayerEvent + // Fired when a layer is added to this `FeatureGroup` + return this.fire('layeradd', {layer: layer}); + }, + + removeLayer: function (layer) { + if (!this.hasLayer(layer)) { + return this; + } + if (layer in this._layers) { + layer = this._layers[layer]; + } + + layer.removeEventParent(this); + + LayerGroup.prototype.removeLayer.call(this, layer); + + // @event layerremove: LayerEvent + // Fired when a layer is removed from this `FeatureGroup` + return this.fire('layerremove', {layer: layer}); + }, + + // @method setStyle(style: Path options): this + // Sets the given path options to each layer of the group that has a `setStyle` method. + setStyle: function (style) { + return this.invoke('setStyle', style); + }, + + // @method bringToFront(): this + // Brings the layer group to the top of all other layers + bringToFront: function () { + return this.invoke('bringToFront'); + }, + + // @method bringToBack(): this + // Brings the layer group to the back of all other layers + bringToBack: function () { + return this.invoke('bringToBack'); + }, + + // @method getBounds(): LatLngBounds + // Returns the LatLngBounds of the Feature Group (created from bounds and coordinates of its children). + getBounds: function () { + var bounds = new LatLngBounds(); + + for (var id in this._layers) { + var layer = this._layers[id]; + bounds.extend(layer.getBounds ? layer.getBounds() : layer.getLatLng()); + } + return bounds; + } +}); + +// @factory L.featureGroup(layers?: Layer[], options?: Object) +// Create a feature group, optionally given an initial set of layers and an `options` object. +var featureGroup = function (layers, options) { + return new FeatureGroup(layers, options); +}; + +/* + * @class Icon + * @aka L.Icon + * + * Represents an icon to provide when creating a marker. + * + * @example + * + * ```js + * var myIcon = L.icon({ + * iconUrl: 'my-icon.png', + * iconRetinaUrl: 'my-icon@2x.png', + * iconSize: [38, 95], + * iconAnchor: [22, 94], + * popupAnchor: [-3, -76], + * shadowUrl: 'my-icon-shadow.png', + * shadowRetinaUrl: 'my-icon-shadow@2x.png', + * shadowSize: [68, 95], + * shadowAnchor: [22, 94] + * }); + * + * L.marker([50.505, 30.57], {icon: myIcon}).addTo(map); + * ``` + * + * `L.Icon.Default` extends `L.Icon` and is the blue icon Leaflet uses for markers by default. + * + */ + +var Icon = Class.extend({ + + /* @section + * @aka Icon options + * + * @option iconUrl: String = null + * **(required)** The URL to the icon image (absolute or relative to your script path). + * + * @option iconRetinaUrl: String = null + * The URL to a retina sized version of the icon image (absolute or relative to your + * script path). Used for Retina screen devices. + * + * @option iconSize: Point = null + * Size of the icon image in pixels. + * + * @option iconAnchor: Point = null + * The coordinates of the "tip" of the icon (relative to its top left corner). The icon + * will be aligned so that this point is at the marker's geographical location. Centered + * by default if size is specified, also can be set in CSS with negative margins. + * + * @option popupAnchor: Point = [0, 0] + * The coordinates of the point from which popups will "open", relative to the icon anchor. + * + * @option tooltipAnchor: Point = [0, 0] + * The coordinates of the point from which tooltips will "open", relative to the icon anchor. + * + * @option shadowUrl: String = null + * The URL to the icon shadow image. If not specified, no shadow image will be created. + * + * @option shadowRetinaUrl: String = null + * + * @option shadowSize: Point = null + * Size of the shadow image in pixels. + * + * @option shadowAnchor: Point = null + * The coordinates of the "tip" of the shadow (relative to its top left corner) (the same + * as iconAnchor if not specified). + * + * @option className: String = '' + * A custom class name to assign to both icon and shadow images. Empty by default. + */ + + options: { + popupAnchor: [0, 0], + tooltipAnchor: [0, 0], + + // @option crossOrigin: Boolean|String = false + // Whether the crossOrigin attribute will be added to the tiles. + // If a String is provided, all tiles will have their crossOrigin attribute set to the String provided. This is needed if you want to access tile pixel data. + // Refer to [CORS Settings](https://developer.mozilla.org/en-US/docs/Web/HTML/CORS_settings_attributes) for valid String values. + crossOrigin: false + }, + + initialize: function (options) { + setOptions(this, options); + }, + + // @method createIcon(oldIcon?: HTMLElement): HTMLElement + // Called internally when the icon has to be shown, returns a `` HTML element + // styled according to the options. + createIcon: function (oldIcon) { + return this._createIcon('icon', oldIcon); + }, + + // @method createShadow(oldIcon?: HTMLElement): HTMLElement + // As `createIcon`, but for the shadow beneath it. + createShadow: function (oldIcon) { + return this._createIcon('shadow', oldIcon); + }, + + _createIcon: function (name, oldIcon) { + var src = this._getIconUrl(name); + + if (!src) { + if (name === 'icon') { + throw new Error('iconUrl not set in Icon options (see the docs).'); + } + return null; + } + + var img = this._createImg(src, oldIcon && oldIcon.tagName === 'IMG' ? oldIcon : null); + this._setIconStyles(img, name); + + if (this.options.crossOrigin || this.options.crossOrigin === '') { + img.crossOrigin = this.options.crossOrigin === true ? '' : this.options.crossOrigin; + } + + return img; + }, + + _setIconStyles: function (img, name) { + var options = this.options; + var sizeOption = options[name + 'Size']; + + if (typeof sizeOption === 'number') { + sizeOption = [sizeOption, sizeOption]; + } + + var size = toPoint(sizeOption), + anchor = toPoint(name === 'shadow' && options.shadowAnchor || options.iconAnchor || + size && size.divideBy(2, true)); + + img.className = 'leaflet-marker-' + name + ' ' + (options.className || ''); + + if (anchor) { + img.style.marginLeft = (-anchor.x) + 'px'; + img.style.marginTop = (-anchor.y) + 'px'; + } + + if (size) { + img.style.width = size.x + 'px'; + img.style.height = size.y + 'px'; + } + }, + + _createImg: function (src, el) { + el = el || document.createElement('img'); + el.src = src; + return el; + }, + + _getIconUrl: function (name) { + return Browser.retina && this.options[name + 'RetinaUrl'] || this.options[name + 'Url']; + } +}); + + +// @factory L.icon(options: Icon options) +// Creates an icon instance with the given options. +function icon(options) { + return new Icon(options); +} + +/* + * @miniclass Icon.Default (Icon) + * @aka L.Icon.Default + * @section + * + * A trivial subclass of `Icon`, represents the icon to use in `Marker`s when + * no icon is specified. Points to the blue marker image distributed with Leaflet + * releases. + * + * In order to customize the default icon, just change the properties of `L.Icon.Default.prototype.options` + * (which is a set of `Icon options`). + * + * If you want to _completely_ replace the default icon, override the + * `L.Marker.prototype.options.icon` with your own icon instead. + */ + +var IconDefault = Icon.extend({ + + options: { + iconUrl: 'marker-icon.png', + iconRetinaUrl: 'marker-icon-2x.png', + shadowUrl: 'marker-shadow.png', + iconSize: [25, 41], + iconAnchor: [12, 41], + popupAnchor: [1, -34], + tooltipAnchor: [16, -28], + shadowSize: [41, 41] + }, + + _getIconUrl: function (name) { + if (typeof IconDefault.imagePath !== 'string') { // Deprecated, backwards-compatibility only + IconDefault.imagePath = this._detectIconPath(); + } + + // @option imagePath: String + // `Icon.Default` will try to auto-detect the location of the + // blue icon images. If you are placing these images in a non-standard + // way, set this option to point to the right path. + return (this.options.imagePath || IconDefault.imagePath) + Icon.prototype._getIconUrl.call(this, name); + }, + + _stripUrl: function (path) { // separate function to use in tests + var strip = function (str, re, idx) { + var match = re.exec(str); + return match && match[idx]; + }; + path = strip(path, /^url\((['"])?(.+)\1\)$/, 2); + return path && strip(path, /^(.*)marker-icon\.png$/, 1); + }, + + _detectIconPath: function () { + var el = create$1('div', 'leaflet-default-icon-path', document.body); + var path = getStyle(el, 'background-image') || + getStyle(el, 'backgroundImage'); // IE8 + + document.body.removeChild(el); + path = this._stripUrl(path); + if (path) { return path; } + var link = document.querySelector('link[href$="leaflet.css"]'); + if (!link) { return ''; } + return link.href.substring(0, link.href.length - 'leaflet.css'.length - 1); + } +}); + +/* + * L.Handler.MarkerDrag is used internally by L.Marker to make the markers draggable. + */ + + +/* @namespace Marker + * @section Interaction handlers + * + * Interaction handlers are properties of a marker instance that allow you to control interaction behavior in runtime, enabling or disabling certain features such as dragging (see `Handler` methods). Example: + * + * ```js + * marker.dragging.disable(); + * ``` + * + * @property dragging: Handler + * Marker dragging handler (by both mouse and touch). Only valid when the marker is on the map (Otherwise set [`marker.options.draggable`](#marker-draggable)). + */ + +var MarkerDrag = Handler.extend({ + initialize: function (marker) { + this._marker = marker; + }, + + addHooks: function () { + var icon = this._marker._icon; + + if (!this._draggable) { + this._draggable = new Draggable(icon, icon, true); + } + + this._draggable.on({ + dragstart: this._onDragStart, + predrag: this._onPreDrag, + drag: this._onDrag, + dragend: this._onDragEnd + }, this).enable(); + + addClass(icon, 'leaflet-marker-draggable'); + }, + + removeHooks: function () { + this._draggable.off({ + dragstart: this._onDragStart, + predrag: this._onPreDrag, + drag: this._onDrag, + dragend: this._onDragEnd + }, this).disable(); + + if (this._marker._icon) { + removeClass(this._marker._icon, 'leaflet-marker-draggable'); + } + }, + + moved: function () { + return this._draggable && this._draggable._moved; + }, + + _adjustPan: function (e) { + var marker = this._marker, + map = marker._map, + speed = this._marker.options.autoPanSpeed, + padding = this._marker.options.autoPanPadding, + iconPos = getPosition(marker._icon), + bounds = map.getPixelBounds(), + origin = map.getPixelOrigin(); + + var panBounds = toBounds( + bounds.min._subtract(origin).add(padding), + bounds.max._subtract(origin).subtract(padding) + ); + + if (!panBounds.contains(iconPos)) { + // Compute incremental movement + var movement = toPoint( + (Math.max(panBounds.max.x, iconPos.x) - panBounds.max.x) / (bounds.max.x - panBounds.max.x) - + (Math.min(panBounds.min.x, iconPos.x) - panBounds.min.x) / (bounds.min.x - panBounds.min.x), + + (Math.max(panBounds.max.y, iconPos.y) - panBounds.max.y) / (bounds.max.y - panBounds.max.y) - + (Math.min(panBounds.min.y, iconPos.y) - panBounds.min.y) / (bounds.min.y - panBounds.min.y) + ).multiplyBy(speed); + + map.panBy(movement, {animate: false}); + + this._draggable._newPos._add(movement); + this._draggable._startPos._add(movement); + + setPosition(marker._icon, this._draggable._newPos); + this._onDrag(e); + + this._panRequest = requestAnimFrame(this._adjustPan.bind(this, e)); + } + }, + + _onDragStart: function () { + // @section Dragging events + // @event dragstart: Event + // Fired when the user starts dragging the marker. + + // @event movestart: Event + // Fired when the marker starts moving (because of dragging). + + this._oldLatLng = this._marker.getLatLng(); + + // When using ES6 imports it could not be set when `Popup` was not imported as well + this._marker.closePopup && this._marker.closePopup(); + + this._marker + .fire('movestart') + .fire('dragstart'); + }, + + _onPreDrag: function (e) { + if (this._marker.options.autoPan) { + cancelAnimFrame(this._panRequest); + this._panRequest = requestAnimFrame(this._adjustPan.bind(this, e)); + } + }, + + _onDrag: function (e) { + var marker = this._marker, + shadow = marker._shadow, + iconPos = getPosition(marker._icon), + latlng = marker._map.layerPointToLatLng(iconPos); + + // update shadow position + if (shadow) { + setPosition(shadow, iconPos); + } + + marker._latlng = latlng; + e.latlng = latlng; + e.oldLatLng = this._oldLatLng; + + // @event drag: Event + // Fired repeatedly while the user drags the marker. + marker + .fire('move', e) + .fire('drag', e); + }, + + _onDragEnd: function (e) { + // @event dragend: DragEndEvent + // Fired when the user stops dragging the marker. + + cancelAnimFrame(this._panRequest); + + // @event moveend: Event + // Fired when the marker stops moving (because of dragging). + delete this._oldLatLng; + this._marker + .fire('moveend') + .fire('dragend', e); + } +}); + +/* + * @class Marker + * @inherits Interactive layer + * @aka L.Marker + * L.Marker is used to display clickable/draggable icons on the map. Extends `Layer`. + * + * @example + * + * ```js + * L.marker([50.5, 30.5]).addTo(map); + * ``` + */ + +var Marker = Layer.extend({ + + // @section + // @aka Marker options + options: { + // @option icon: Icon = * + // Icon instance to use for rendering the marker. + // See [Icon documentation](#L.Icon) for details on how to customize the marker icon. + // If not specified, a common instance of `L.Icon.Default` is used. + icon: new IconDefault(), + + // Option inherited from "Interactive layer" abstract class + interactive: true, + + // @option keyboard: Boolean = true + // Whether the marker can be tabbed to with a keyboard and clicked by pressing enter. + keyboard: true, + + // @option title: String = '' + // Text for the browser tooltip that appear on marker hover (no tooltip by default). + // [Useful for accessibility](https://leafletjs.com/examples/accessibility/#markers-must-be-labelled). + title: '', + + // @option alt: String = 'Marker' + // Text for the `alt` attribute of the icon image. + // [Useful for accessibility](https://leafletjs.com/examples/accessibility/#markers-must-be-labelled). + alt: 'Marker', + + // @option zIndexOffset: Number = 0 + // By default, marker images zIndex is set automatically based on its latitude. Use this option if you want to put the marker on top of all others (or below), specifying a high value like `1000` (or high negative value, respectively). + zIndexOffset: 0, + + // @option opacity: Number = 1.0 + // The opacity of the marker. + opacity: 1, + + // @option riseOnHover: Boolean = false + // If `true`, the marker will get on top of others when you hover the mouse over it. + riseOnHover: false, + + // @option riseOffset: Number = 250 + // The z-index offset used for the `riseOnHover` feature. + riseOffset: 250, + + // @option pane: String = 'markerPane' + // `Map pane` where the markers icon will be added. + pane: 'markerPane', + + // @option shadowPane: String = 'shadowPane' + // `Map pane` where the markers shadow will be added. + shadowPane: 'shadowPane', + + // @option bubblingMouseEvents: Boolean = false + // When `true`, a mouse event on this marker will trigger the same event on the map + // (unless [`L.DomEvent.stopPropagation`](#domevent-stoppropagation) is used). + bubblingMouseEvents: false, + + // @option autoPanOnFocus: Boolean = true + // When `true`, the map will pan whenever the marker is focused (via + // e.g. pressing `tab` on the keyboard) to ensure the marker is + // visible within the map's bounds + autoPanOnFocus: true, + + // @section Draggable marker options + // @option draggable: Boolean = false + // Whether the marker is draggable with mouse/touch or not. + draggable: false, + + // @option autoPan: Boolean = false + // Whether to pan the map when dragging this marker near its edge or not. + autoPan: false, + + // @option autoPanPadding: Point = Point(50, 50) + // Distance (in pixels to the left/right and to the top/bottom) of the + // map edge to start panning the map. + autoPanPadding: [50, 50], + + // @option autoPanSpeed: Number = 10 + // Number of pixels the map should pan by. + autoPanSpeed: 10 + }, + + /* @section + * + * In addition to [shared layer methods](#Layer) like `addTo()` and `remove()` and [popup methods](#Popup) like bindPopup() you can also use the following methods: + */ + + initialize: function (latlng, options) { + setOptions(this, options); + this._latlng = toLatLng(latlng); + }, + + onAdd: function (map) { + this._zoomAnimated = this._zoomAnimated && map.options.markerZoomAnimation; + + if (this._zoomAnimated) { + map.on('zoomanim', this._animateZoom, this); + } + + this._initIcon(); + this.update(); + }, + + onRemove: function (map) { + if (this.dragging && this.dragging.enabled()) { + this.options.draggable = true; + this.dragging.removeHooks(); + } + delete this.dragging; + + if (this._zoomAnimated) { + map.off('zoomanim', this._animateZoom, this); + } + + this._removeIcon(); + this._removeShadow(); + }, + + getEvents: function () { + return { + zoom: this.update, + viewreset: this.update + }; + }, + + // @method getLatLng: LatLng + // Returns the current geographical position of the marker. + getLatLng: function () { + return this._latlng; + }, + + // @method setLatLng(latlng: LatLng): this + // Changes the marker position to the given point. + setLatLng: function (latlng) { + var oldLatLng = this._latlng; + this._latlng = toLatLng(latlng); + this.update(); + + // @event move: Event + // Fired when the marker is moved via [`setLatLng`](#marker-setlatlng) or by [dragging](#marker-dragging). Old and new coordinates are included in event arguments as `oldLatLng`, `latlng`. + return this.fire('move', {oldLatLng: oldLatLng, latlng: this._latlng}); + }, + + // @method setZIndexOffset(offset: Number): this + // Changes the [zIndex offset](#marker-zindexoffset) of the marker. + setZIndexOffset: function (offset) { + this.options.zIndexOffset = offset; + return this.update(); + }, + + // @method getIcon: Icon + // Returns the current icon used by the marker + getIcon: function () { + return this.options.icon; + }, + + // @method setIcon(icon: Icon): this + // Changes the marker icon. + setIcon: function (icon) { + + this.options.icon = icon; + + if (this._map) { + this._initIcon(); + this.update(); + } + + if (this._popup) { + this.bindPopup(this._popup, this._popup.options); + } + + return this; + }, + + getElement: function () { + return this._icon; + }, + + update: function () { + + if (this._icon && this._map) { + var pos = this._map.latLngToLayerPoint(this._latlng).round(); + this._setPos(pos); + } + + return this; + }, + + _initIcon: function () { + var options = this.options, + classToAdd = 'leaflet-zoom-' + (this._zoomAnimated ? 'animated' : 'hide'); + + var icon = options.icon.createIcon(this._icon), + addIcon = false; + + // if we're not reusing the icon, remove the old one and init new one + if (icon !== this._icon) { + if (this._icon) { + this._removeIcon(); + } + addIcon = true; + + if (options.title) { + icon.title = options.title; + } + + if (icon.tagName === 'IMG') { + icon.alt = options.alt || ''; + } + } + + addClass(icon, classToAdd); + + if (options.keyboard) { + icon.tabIndex = '0'; + icon.setAttribute('role', 'button'); + } + + this._icon = icon; + + if (options.riseOnHover) { + this.on({ + mouseover: this._bringToFront, + mouseout: this._resetZIndex + }); + } + + if (this.options.autoPanOnFocus) { + on(icon, 'focus', this._panOnFocus, this); + } + + var newShadow = options.icon.createShadow(this._shadow), + addShadow = false; + + if (newShadow !== this._shadow) { + this._removeShadow(); + addShadow = true; + } + + if (newShadow) { + addClass(newShadow, classToAdd); + newShadow.alt = ''; + } + this._shadow = newShadow; + + + if (options.opacity < 1) { + this._updateOpacity(); + } + + + if (addIcon) { + this.getPane().appendChild(this._icon); + } + this._initInteraction(); + if (newShadow && addShadow) { + this.getPane(options.shadowPane).appendChild(this._shadow); + } + }, + + _removeIcon: function () { + if (this.options.riseOnHover) { + this.off({ + mouseover: this._bringToFront, + mouseout: this._resetZIndex + }); + } + + if (this.options.autoPanOnFocus) { + off(this._icon, 'focus', this._panOnFocus, this); + } + + remove(this._icon); + this.removeInteractiveTarget(this._icon); + + this._icon = null; + }, + + _removeShadow: function () { + if (this._shadow) { + remove(this._shadow); + } + this._shadow = null; + }, + + _setPos: function (pos) { + + if (this._icon) { + setPosition(this._icon, pos); + } + + if (this._shadow) { + setPosition(this._shadow, pos); + } + + this._zIndex = pos.y + this.options.zIndexOffset; + + this._resetZIndex(); + }, + + _updateZIndex: function (offset) { + if (this._icon) { + this._icon.style.zIndex = this._zIndex + offset; + } + }, + + _animateZoom: function (opt) { + var pos = this._map._latLngToNewLayerPoint(this._latlng, opt.zoom, opt.center).round(); + + this._setPos(pos); + }, + + _initInteraction: function () { + + if (!this.options.interactive) { return; } + + addClass(this._icon, 'leaflet-interactive'); + + this.addInteractiveTarget(this._icon); + + if (MarkerDrag) { + var draggable = this.options.draggable; + if (this.dragging) { + draggable = this.dragging.enabled(); + this.dragging.disable(); + } + + this.dragging = new MarkerDrag(this); + + if (draggable) { + this.dragging.enable(); + } + } + }, + + // @method setOpacity(opacity: Number): this + // Changes the opacity of the marker. + setOpacity: function (opacity) { + this.options.opacity = opacity; + if (this._map) { + this._updateOpacity(); + } + + return this; + }, + + _updateOpacity: function () { + var opacity = this.options.opacity; + + if (this._icon) { + setOpacity(this._icon, opacity); + } + + if (this._shadow) { + setOpacity(this._shadow, opacity); + } + }, + + _bringToFront: function () { + this._updateZIndex(this.options.riseOffset); + }, + + _resetZIndex: function () { + this._updateZIndex(0); + }, + + _panOnFocus: function () { + var map = this._map; + if (!map) { return; } + + var iconOpts = this.options.icon.options; + var size = iconOpts.iconSize ? toPoint(iconOpts.iconSize) : toPoint(0, 0); + var anchor = iconOpts.iconAnchor ? toPoint(iconOpts.iconAnchor) : toPoint(0, 0); + + map.panInside(this._latlng, { + paddingTopLeft: anchor, + paddingBottomRight: size.subtract(anchor) + }); + }, + + _getPopupAnchor: function () { + return this.options.icon.options.popupAnchor; + }, + + _getTooltipAnchor: function () { + return this.options.icon.options.tooltipAnchor; + } +}); + + +// factory L.marker(latlng: LatLng, options? : Marker options) + +// @factory L.marker(latlng: LatLng, options? : Marker options) +// Instantiates a Marker object given a geographical point and optionally an options object. +function marker(latlng, options) { + return new Marker(latlng, options); +} + +/* + * @class Path + * @aka L.Path + * @inherits Interactive layer + * + * An abstract class that contains options and constants shared between vector + * overlays (Polygon, Polyline, Circle). Do not use it directly. Extends `Layer`. + */ + +var Path = Layer.extend({ + + // @section + // @aka Path options + options: { + // @option stroke: Boolean = true + // Whether to draw stroke along the path. Set it to `false` to disable borders on polygons or circles. + stroke: true, + + // @option color: String = '#3388ff' + // Stroke color + color: '#3388ff', + + // @option weight: Number = 3 + // Stroke width in pixels + weight: 3, + + // @option opacity: Number = 1.0 + // Stroke opacity + opacity: 1, + + // @option lineCap: String= 'round' + // A string that defines [shape to be used at the end](https://developer.mozilla.org/docs/Web/SVG/Attribute/stroke-linecap) of the stroke. + lineCap: 'round', + + // @option lineJoin: String = 'round' + // A string that defines [shape to be used at the corners](https://developer.mozilla.org/docs/Web/SVG/Attribute/stroke-linejoin) of the stroke. + lineJoin: 'round', + + // @option dashArray: String = null + // A string that defines the stroke [dash pattern](https://developer.mozilla.org/docs/Web/SVG/Attribute/stroke-dasharray). Doesn't work on `Canvas`-powered layers in [some old browsers](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/setLineDash#Browser_compatibility). + dashArray: null, + + // @option dashOffset: String = null + // A string that defines the [distance into the dash pattern to start the dash](https://developer.mozilla.org/docs/Web/SVG/Attribute/stroke-dashoffset). Doesn't work on `Canvas`-powered layers in [some old browsers](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/setLineDash#Browser_compatibility). + dashOffset: null, + + // @option fill: Boolean = depends + // Whether to fill the path with color. Set it to `false` to disable filling on polygons or circles. + fill: false, + + // @option fillColor: String = * + // Fill color. Defaults to the value of the [`color`](#path-color) option + fillColor: null, + + // @option fillOpacity: Number = 0.2 + // Fill opacity. + fillOpacity: 0.2, + + // @option fillRule: String = 'evenodd' + // A string that defines [how the inside of a shape](https://developer.mozilla.org/docs/Web/SVG/Attribute/fill-rule) is determined. + fillRule: 'evenodd', + + // className: '', + + // Option inherited from "Interactive layer" abstract class + interactive: true, + + // @option bubblingMouseEvents: Boolean = true + // When `true`, a mouse event on this path will trigger the same event on the map + // (unless [`L.DomEvent.stopPropagation`](#domevent-stoppropagation) is used). + bubblingMouseEvents: true + }, + + beforeAdd: function (map) { + // Renderer is set here because we need to call renderer.getEvents + // before this.getEvents. + this._renderer = map.getRenderer(this); + }, + + onAdd: function () { + this._renderer._initPath(this); + this._reset(); + this._renderer._addPath(this); + }, + + onRemove: function () { + this._renderer._removePath(this); + }, + + // @method redraw(): this + // Redraws the layer. Sometimes useful after you changed the coordinates that the path uses. + redraw: function () { + if (this._map) { + this._renderer._updatePath(this); + } + return this; + }, + + // @method setStyle(style: Path options): this + // Changes the appearance of a Path based on the options in the `Path options` object. + setStyle: function (style) { + setOptions(this, style); + if (this._renderer) { + this._renderer._updateStyle(this); + if (this.options.stroke && style && Object.prototype.hasOwnProperty.call(style, 'weight')) { + this._updateBounds(); + } + } + return this; + }, + + // @method bringToFront(): this + // Brings the layer to the top of all path layers. + bringToFront: function () { + if (this._renderer) { + this._renderer._bringToFront(this); + } + return this; + }, + + // @method bringToBack(): this + // Brings the layer to the bottom of all path layers. + bringToBack: function () { + if (this._renderer) { + this._renderer._bringToBack(this); + } + return this; + }, + + getElement: function () { + return this._path; + }, + + _reset: function () { + // defined in child classes + this._project(); + this._update(); + }, + + _clickTolerance: function () { + // used when doing hit detection for Canvas layers + return (this.options.stroke ? this.options.weight / 2 : 0) + + (this._renderer.options.tolerance || 0); + } +}); + +/* + * @class CircleMarker + * @aka L.CircleMarker + * @inherits Path + * + * A circle of a fixed size with radius specified in pixels. Extends `Path`. + */ + +var CircleMarker = Path.extend({ + + // @section + // @aka CircleMarker options + options: { + fill: true, + + // @option radius: Number = 10 + // Radius of the circle marker, in pixels + radius: 10 + }, + + initialize: function (latlng, options) { + setOptions(this, options); + this._latlng = toLatLng(latlng); + this._radius = this.options.radius; + }, + + // @method setLatLng(latLng: LatLng): this + // Sets the position of a circle marker to a new location. + setLatLng: function (latlng) { + var oldLatLng = this._latlng; + this._latlng = toLatLng(latlng); + this.redraw(); + + // @event move: Event + // Fired when the marker is moved via [`setLatLng`](#circlemarker-setlatlng). Old and new coordinates are included in event arguments as `oldLatLng`, `latlng`. + return this.fire('move', {oldLatLng: oldLatLng, latlng: this._latlng}); + }, + + // @method getLatLng(): LatLng + // Returns the current geographical position of the circle marker + getLatLng: function () { + return this._latlng; + }, + + // @method setRadius(radius: Number): this + // Sets the radius of a circle marker. Units are in pixels. + setRadius: function (radius) { + this.options.radius = this._radius = radius; + return this.redraw(); + }, + + // @method getRadius(): Number + // Returns the current radius of the circle + getRadius: function () { + return this._radius; + }, + + setStyle : function (options) { + var radius = options && options.radius || this._radius; + Path.prototype.setStyle.call(this, options); + this.setRadius(radius); + return this; + }, + + _project: function () { + this._point = this._map.latLngToLayerPoint(this._latlng); + this._updateBounds(); + }, + + _updateBounds: function () { + var r = this._radius, + r2 = this._radiusY || r, + w = this._clickTolerance(), + p = [r + w, r2 + w]; + this._pxBounds = new Bounds(this._point.subtract(p), this._point.add(p)); + }, + + _update: function () { + if (this._map) { + this._updatePath(); + } + }, + + _updatePath: function () { + this._renderer._updateCircle(this); + }, + + _empty: function () { + return this._radius && !this._renderer._bounds.intersects(this._pxBounds); + }, + + // Needed by the `Canvas` renderer for interactivity + _containsPoint: function (p) { + return p.distanceTo(this._point) <= this._radius + this._clickTolerance(); + } +}); + + +// @factory L.circleMarker(latlng: LatLng, options?: CircleMarker options) +// Instantiates a circle marker object given a geographical point, and an optional options object. +function circleMarker(latlng, options) { + return new CircleMarker(latlng, options); +} + +/* + * @class Circle + * @aka L.Circle + * @inherits CircleMarker + * + * A class for drawing circle overlays on a map. Extends `CircleMarker`. + * + * It's an approximation and starts to diverge from a real circle closer to poles (due to projection distortion). + * + * @example + * + * ```js + * L.circle([50.5, 30.5], {radius: 200}).addTo(map); + * ``` + */ + +var Circle = CircleMarker.extend({ + + initialize: function (latlng, options, legacyOptions) { + if (typeof options === 'number') { + // Backwards compatibility with 0.7.x factory (latlng, radius, options?) + options = extend({}, legacyOptions, {radius: options}); + } + setOptions(this, options); + this._latlng = toLatLng(latlng); + + if (isNaN(this.options.radius)) { throw new Error('Circle radius cannot be NaN'); } + + // @section + // @aka Circle options + // @option radius: Number; Radius of the circle, in meters. + this._mRadius = this.options.radius; + }, + + // @method setRadius(radius: Number): this + // Sets the radius of a circle. Units are in meters. + setRadius: function (radius) { + this._mRadius = radius; + return this.redraw(); + }, + + // @method getRadius(): Number + // Returns the current radius of a circle. Units are in meters. + getRadius: function () { + return this._mRadius; + }, + + // @method getBounds(): LatLngBounds + // Returns the `LatLngBounds` of the path. + getBounds: function () { + var half = [this._radius, this._radiusY || this._radius]; + + return new LatLngBounds( + this._map.layerPointToLatLng(this._point.subtract(half)), + this._map.layerPointToLatLng(this._point.add(half))); + }, + + setStyle: Path.prototype.setStyle, + + _project: function () { + + var lng = this._latlng.lng, + lat = this._latlng.lat, + map = this._map, + crs = map.options.crs; + + if (crs.distance === Earth.distance) { + var d = Math.PI / 180, + latR = (this._mRadius / Earth.R) / d, + top = map.project([lat + latR, lng]), + bottom = map.project([lat - latR, lng]), + p = top.add(bottom).divideBy(2), + lat2 = map.unproject(p).lat, + lngR = Math.acos((Math.cos(latR * d) - Math.sin(lat * d) * Math.sin(lat2 * d)) / + (Math.cos(lat * d) * Math.cos(lat2 * d))) / d; + + if (isNaN(lngR) || lngR === 0) { + lngR = latR / Math.cos(Math.PI / 180 * lat); // Fallback for edge case, #2425 + } + + this._point = p.subtract(map.getPixelOrigin()); + this._radius = isNaN(lngR) ? 0 : p.x - map.project([lat2, lng - lngR]).x; + this._radiusY = p.y - top.y; + + } else { + var latlng2 = crs.unproject(crs.project(this._latlng).subtract([this._mRadius, 0])); + + this._point = map.latLngToLayerPoint(this._latlng); + this._radius = this._point.x - map.latLngToLayerPoint(latlng2).x; + } + + this._updateBounds(); + } +}); + +// @factory L.circle(latlng: LatLng, options?: Circle options) +// Instantiates a circle object given a geographical point, and an options object +// which contains the circle radius. +// @alternative +// @factory L.circle(latlng: LatLng, radius: Number, options?: Circle options) +// Obsolete way of instantiating a circle, for compatibility with 0.7.x code. +// Do not use in new applications or plugins. +function circle(latlng, options, legacyOptions) { + return new Circle(latlng, options, legacyOptions); +} + +/* + * @class Polyline + * @aka L.Polyline + * @inherits Path + * + * A class for drawing polyline overlays on a map. Extends `Path`. + * + * @example + * + * ```js + * // create a red polyline from an array of LatLng points + * var latlngs = [ + * [45.51, -122.68], + * [37.77, -122.43], + * [34.04, -118.2] + * ]; + * + * var polyline = L.polyline(latlngs, {color: 'red'}).addTo(map); + * + * // zoom the map to the polyline + * map.fitBounds(polyline.getBounds()); + * ``` + * + * You can also pass a multi-dimensional array to represent a `MultiPolyline` shape: + * + * ```js + * // create a red polyline from an array of arrays of LatLng points + * var latlngs = [ + * [[45.51, -122.68], + * [37.77, -122.43], + * [34.04, -118.2]], + * [[40.78, -73.91], + * [41.83, -87.62], + * [32.76, -96.72]] + * ]; + * ``` + */ + + +var Polyline = Path.extend({ + + // @section + // @aka Polyline options + options: { + // @option smoothFactor: Number = 1.0 + // How much to simplify the polyline on each zoom level. More means + // better performance and smoother look, and less means more accurate representation. + smoothFactor: 1.0, + + // @option noClip: Boolean = false + // Disable polyline clipping. + noClip: false + }, + + initialize: function (latlngs, options) { + setOptions(this, options); + this._setLatLngs(latlngs); + }, + + // @method getLatLngs(): LatLng[] + // Returns an array of the points in the path, or nested arrays of points in case of multi-polyline. + getLatLngs: function () { + return this._latlngs; + }, + + // @method setLatLngs(latlngs: LatLng[]): this + // Replaces all the points in the polyline with the given array of geographical points. + setLatLngs: function (latlngs) { + this._setLatLngs(latlngs); + return this.redraw(); + }, + + // @method isEmpty(): Boolean + // Returns `true` if the Polyline has no LatLngs. + isEmpty: function () { + return !this._latlngs.length; + }, + + // @method closestLayerPoint(p: Point): Point + // Returns the point closest to `p` on the Polyline. + closestLayerPoint: function (p) { + var minDistance = Infinity, + minPoint = null, + closest = _sqClosestPointOnSegment, + p1, p2; + + for (var j = 0, jLen = this._parts.length; j < jLen; j++) { + var points = this._parts[j]; + + for (var i = 1, len = points.length; i < len; i++) { + p1 = points[i - 1]; + p2 = points[i]; + + var sqDist = closest(p, p1, p2, true); + + if (sqDist < minDistance) { + minDistance = sqDist; + minPoint = closest(p, p1, p2); + } + } + } + if (minPoint) { + minPoint.distance = Math.sqrt(minDistance); + } + return minPoint; + }, + + // @method getCenter(): LatLng + // Returns the center ([centroid](https://en.wikipedia.org/wiki/Centroid)) of the polyline. + getCenter: function () { + // throws error when not yet added to map as this center calculation requires projected coordinates + if (!this._map) { + throw new Error('Must add layer to map before using getCenter()'); + } + return polylineCenter(this._defaultShape(), this._map.options.crs); + }, + + // @method getBounds(): LatLngBounds + // Returns the `LatLngBounds` of the path. + getBounds: function () { + return this._bounds; + }, + + // @method addLatLng(latlng: LatLng, latlngs?: LatLng[]): this + // Adds a given point to the polyline. By default, adds to the first ring of + // the polyline in case of a multi-polyline, but can be overridden by passing + // a specific ring as a LatLng array (that you can earlier access with [`getLatLngs`](#polyline-getlatlngs)). + addLatLng: function (latlng, latlngs) { + latlngs = latlngs || this._defaultShape(); + latlng = toLatLng(latlng); + latlngs.push(latlng); + this._bounds.extend(latlng); + return this.redraw(); + }, + + _setLatLngs: function (latlngs) { + this._bounds = new LatLngBounds(); + this._latlngs = this._convertLatLngs(latlngs); + }, + + _defaultShape: function () { + return isFlat(this._latlngs) ? this._latlngs : this._latlngs[0]; + }, + + // recursively convert latlngs input into actual LatLng instances; calculate bounds along the way + _convertLatLngs: function (latlngs) { + var result = [], + flat = isFlat(latlngs); + + for (var i = 0, len = latlngs.length; i < len; i++) { + if (flat) { + result[i] = toLatLng(latlngs[i]); + this._bounds.extend(result[i]); + } else { + result[i] = this._convertLatLngs(latlngs[i]); + } + } + + return result; + }, + + _project: function () { + var pxBounds = new Bounds(); + this._rings = []; + this._projectLatlngs(this._latlngs, this._rings, pxBounds); + + if (this._bounds.isValid() && pxBounds.isValid()) { + this._rawPxBounds = pxBounds; + this._updateBounds(); + } + }, + + _updateBounds: function () { + var w = this._clickTolerance(), + p = new Point(w, w); + + if (!this._rawPxBounds) { + return; + } + + this._pxBounds = new Bounds([ + this._rawPxBounds.min.subtract(p), + this._rawPxBounds.max.add(p) + ]); + }, + + // recursively turns latlngs into a set of rings with projected coordinates + _projectLatlngs: function (latlngs, result, projectedBounds) { + var flat = latlngs[0] instanceof LatLng, + len = latlngs.length, + i, ring; + + if (flat) { + ring = []; + for (i = 0; i < len; i++) { + ring[i] = this._map.latLngToLayerPoint(latlngs[i]); + projectedBounds.extend(ring[i]); + } + result.push(ring); + } else { + for (i = 0; i < len; i++) { + this._projectLatlngs(latlngs[i], result, projectedBounds); + } + } + }, + + // clip polyline by renderer bounds so that we have less to render for performance + _clipPoints: function () { + var bounds = this._renderer._bounds; + + this._parts = []; + if (!this._pxBounds || !this._pxBounds.intersects(bounds)) { + return; + } + + if (this.options.noClip) { + this._parts = this._rings; + return; + } + + var parts = this._parts, + i, j, k, len, len2, segment, points; + + for (i = 0, k = 0, len = this._rings.length; i < len; i++) { + points = this._rings[i]; + + for (j = 0, len2 = points.length; j < len2 - 1; j++) { + segment = clipSegment(points[j], points[j + 1], bounds, j, true); + + if (!segment) { continue; } + + parts[k] = parts[k] || []; + parts[k].push(segment[0]); + + // if segment goes out of screen, or it's the last one, it's the end of the line part + if ((segment[1] !== points[j + 1]) || (j === len2 - 2)) { + parts[k].push(segment[1]); + k++; + } + } + } + }, + + // simplify each clipped part of the polyline for performance + _simplifyPoints: function () { + var parts = this._parts, + tolerance = this.options.smoothFactor; + + for (var i = 0, len = parts.length; i < len; i++) { + parts[i] = simplify(parts[i], tolerance); + } + }, + + _update: function () { + if (!this._map) { return; } + + this._clipPoints(); + this._simplifyPoints(); + this._updatePath(); + }, + + _updatePath: function () { + this._renderer._updatePoly(this); + }, + + // Needed by the `Canvas` renderer for interactivity + _containsPoint: function (p, closed) { + var i, j, k, len, len2, part, + w = this._clickTolerance(); + + if (!this._pxBounds || !this._pxBounds.contains(p)) { return false; } + + // hit detection for polylines + for (i = 0, len = this._parts.length; i < len; i++) { + part = this._parts[i]; + + for (j = 0, len2 = part.length, k = len2 - 1; j < len2; k = j++) { + if (!closed && (j === 0)) { continue; } + + if (pointToSegmentDistance(p, part[k], part[j]) <= w) { + return true; + } + } + } + return false; + } +}); + +// @factory L.polyline(latlngs: LatLng[], options?: Polyline options) +// Instantiates a polyline object given an array of geographical points and +// optionally an options object. You can create a `Polyline` object with +// multiple separate lines (`MultiPolyline`) by passing an array of arrays +// of geographic points. +function polyline(latlngs, options) { + return new Polyline(latlngs, options); +} + +// Retrocompat. Allow plugins to support Leaflet versions before and after 1.1. +Polyline._flat = _flat; + +/* + * @class Polygon + * @aka L.Polygon + * @inherits Polyline + * + * A class for drawing polygon overlays on a map. Extends `Polyline`. + * + * Note that points you pass when creating a polygon shouldn't have an additional last point equal to the first one — it's better to filter out such points. + * + * + * @example + * + * ```js + * // create a red polygon from an array of LatLng points + * var latlngs = [[37, -109.05],[41, -109.03],[41, -102.05],[37, -102.04]]; + * + * var polygon = L.polygon(latlngs, {color: 'red'}).addTo(map); + * + * // zoom the map to the polygon + * map.fitBounds(polygon.getBounds()); + * ``` + * + * You can also pass an array of arrays of latlngs, with the first array representing the outer shape and the other arrays representing holes in the outer shape: + * + * ```js + * var latlngs = [ + * [[37, -109.05],[41, -109.03],[41, -102.05],[37, -102.04]], // outer ring + * [[37.29, -108.58],[40.71, -108.58],[40.71, -102.50],[37.29, -102.50]] // hole + * ]; + * ``` + * + * Additionally, you can pass a multi-dimensional array to represent a MultiPolygon shape. + * + * ```js + * var latlngs = [ + * [ // first polygon + * [[37, -109.05],[41, -109.03],[41, -102.05],[37, -102.04]], // outer ring + * [[37.29, -108.58],[40.71, -108.58],[40.71, -102.50],[37.29, -102.50]] // hole + * ], + * [ // second polygon + * [[41, -111.03],[45, -111.04],[45, -104.05],[41, -104.05]] + * ] + * ]; + * ``` + */ + +var Polygon = Polyline.extend({ + + options: { + fill: true + }, + + isEmpty: function () { + return !this._latlngs.length || !this._latlngs[0].length; + }, + + // @method getCenter(): LatLng + // Returns the center ([centroid](http://en.wikipedia.org/wiki/Centroid)) of the Polygon. + getCenter: function () { + // throws error when not yet added to map as this center calculation requires projected coordinates + if (!this._map) { + throw new Error('Must add layer to map before using getCenter()'); + } + return polygonCenter(this._defaultShape(), this._map.options.crs); + }, + + _convertLatLngs: function (latlngs) { + var result = Polyline.prototype._convertLatLngs.call(this, latlngs), + len = result.length; + + // remove last point if it equals first one + if (len >= 2 && result[0] instanceof LatLng && result[0].equals(result[len - 1])) { + result.pop(); + } + return result; + }, + + _setLatLngs: function (latlngs) { + Polyline.prototype._setLatLngs.call(this, latlngs); + if (isFlat(this._latlngs)) { + this._latlngs = [this._latlngs]; + } + }, + + _defaultShape: function () { + return isFlat(this._latlngs[0]) ? this._latlngs[0] : this._latlngs[0][0]; + }, + + _clipPoints: function () { + // polygons need a different clipping algorithm so we redefine that + + var bounds = this._renderer._bounds, + w = this.options.weight, + p = new Point(w, w); + + // increase clip padding by stroke width to avoid stroke on clip edges + bounds = new Bounds(bounds.min.subtract(p), bounds.max.add(p)); + + this._parts = []; + if (!this._pxBounds || !this._pxBounds.intersects(bounds)) { + return; + } + + if (this.options.noClip) { + this._parts = this._rings; + return; + } + + for (var i = 0, len = this._rings.length, clipped; i < len; i++) { + clipped = clipPolygon(this._rings[i], bounds, true); + if (clipped.length) { + this._parts.push(clipped); + } + } + }, + + _updatePath: function () { + this._renderer._updatePoly(this, true); + }, + + // Needed by the `Canvas` renderer for interactivity + _containsPoint: function (p) { + var inside = false, + part, p1, p2, i, j, k, len, len2; + + if (!this._pxBounds || !this._pxBounds.contains(p)) { return false; } + + // ray casting algorithm for detecting if point is in polygon + for (i = 0, len = this._parts.length; i < len; i++) { + part = this._parts[i]; + + for (j = 0, len2 = part.length, k = len2 - 1; j < len2; k = j++) { + p1 = part[j]; + p2 = part[k]; + + if (((p1.y > p.y) !== (p2.y > p.y)) && (p.x < (p2.x - p1.x) * (p.y - p1.y) / (p2.y - p1.y) + p1.x)) { + inside = !inside; + } + } + } + + // also check if it's on polygon stroke + return inside || Polyline.prototype._containsPoint.call(this, p, true); + } + +}); + + +// @factory L.polygon(latlngs: LatLng[], options?: Polyline options) +function polygon(latlngs, options) { + return new Polygon(latlngs, options); +} + +/* + * @class GeoJSON + * @aka L.GeoJSON + * @inherits FeatureGroup + * + * Represents a GeoJSON object or an array of GeoJSON objects. Allows you to parse + * GeoJSON data and display it on the map. Extends `FeatureGroup`. + * + * @example + * + * ```js + * L.geoJSON(data, { + * style: function (feature) { + * return {color: feature.properties.color}; + * } + * }).bindPopup(function (layer) { + * return layer.feature.properties.description; + * }).addTo(map); + * ``` + */ + +var GeoJSON = FeatureGroup.extend({ + + /* @section + * @aka GeoJSON options + * + * @option pointToLayer: Function = * + * A `Function` defining how GeoJSON points spawn Leaflet layers. It is internally + * called when data is added, passing the GeoJSON point feature and its `LatLng`. + * The default is to spawn a default `Marker`: + * ```js + * function(geoJsonPoint, latlng) { + * return L.marker(latlng); + * } + * ``` + * + * @option style: Function = * + * A `Function` defining the `Path options` for styling GeoJSON lines and polygons, + * called internally when data is added. + * The default value is to not override any defaults: + * ```js + * function (geoJsonFeature) { + * return {} + * } + * ``` + * + * @option onEachFeature: Function = * + * A `Function` that will be called once for each created `Feature`, after it has + * been created and styled. Useful for attaching events and popups to features. + * The default is to do nothing with the newly created layers: + * ```js + * function (feature, layer) {} + * ``` + * + * @option filter: Function = * + * A `Function` that will be used to decide whether to include a feature or not. + * The default is to include all features: + * ```js + * function (geoJsonFeature) { + * return true; + * } + * ``` + * Note: dynamically changing the `filter` option will have effect only on newly + * added data. It will _not_ re-evaluate already included features. + * + * @option coordsToLatLng: Function = * + * A `Function` that will be used for converting GeoJSON coordinates to `LatLng`s. + * The default is the `coordsToLatLng` static method. + * + * @option markersInheritOptions: Boolean = false + * Whether default Markers for "Point" type Features inherit from group options. + */ + + initialize: function (geojson, options) { + setOptions(this, options); + + this._layers = {}; + + if (geojson) { + this.addData(geojson); + } + }, + + // @method addData( data ): this + // Adds a GeoJSON object to the layer. + addData: function (geojson) { + var features = isArray(geojson) ? geojson : geojson.features, + i, len, feature; + + if (features) { + for (i = 0, len = features.length; i < len; i++) { + // only add this if geometry or geometries are set and not null + feature = features[i]; + if (feature.geometries || feature.geometry || feature.features || feature.coordinates) { + this.addData(feature); + } + } + return this; + } + + var options = this.options; + + if (options.filter && !options.filter(geojson)) { return this; } + + var layer = geometryToLayer(geojson, options); + if (!layer) { + return this; + } + layer.feature = asFeature(geojson); + + layer.defaultOptions = layer.options; + this.resetStyle(layer); + + if (options.onEachFeature) { + options.onEachFeature(geojson, layer); + } + + return this.addLayer(layer); + }, + + // @method resetStyle( layer? ): this + // Resets the given vector layer's style to the original GeoJSON style, useful for resetting style after hover events. + // If `layer` is omitted, the style of all features in the current layer is reset. + resetStyle: function (layer) { + if (layer === undefined) { + return this.eachLayer(this.resetStyle, this); + } + // reset any custom styles + layer.options = extend({}, layer.defaultOptions); + this._setLayerStyle(layer, this.options.style); + return this; + }, + + // @method setStyle( style ): this + // Changes styles of GeoJSON vector layers with the given style function. + setStyle: function (style) { + return this.eachLayer(function (layer) { + this._setLayerStyle(layer, style); + }, this); + }, + + _setLayerStyle: function (layer, style) { + if (layer.setStyle) { + if (typeof style === 'function') { + style = style(layer.feature); + } + layer.setStyle(style); + } + } +}); + +// @section +// There are several static functions which can be called without instantiating L.GeoJSON: + +// @function geometryToLayer(featureData: Object, options?: GeoJSON options): Layer +// Creates a `Layer` from a given GeoJSON feature. Can use a custom +// [`pointToLayer`](#geojson-pointtolayer) and/or [`coordsToLatLng`](#geojson-coordstolatlng) +// functions if provided as options. +function geometryToLayer(geojson, options) { + + var geometry = geojson.type === 'Feature' ? geojson.geometry : geojson, + coords = geometry ? geometry.coordinates : null, + layers = [], + pointToLayer = options && options.pointToLayer, + _coordsToLatLng = options && options.coordsToLatLng || coordsToLatLng, + latlng, latlngs, i, len; + + if (!coords && !geometry) { + return null; + } + + switch (geometry.type) { + case 'Point': + latlng = _coordsToLatLng(coords); + return _pointToLayer(pointToLayer, geojson, latlng, options); + + case 'MultiPoint': + for (i = 0, len = coords.length; i < len; i++) { + latlng = _coordsToLatLng(coords[i]); + layers.push(_pointToLayer(pointToLayer, geojson, latlng, options)); + } + return new FeatureGroup(layers); + + case 'LineString': + case 'MultiLineString': + latlngs = coordsToLatLngs(coords, geometry.type === 'LineString' ? 0 : 1, _coordsToLatLng); + return new Polyline(latlngs, options); + + case 'Polygon': + case 'MultiPolygon': + latlngs = coordsToLatLngs(coords, geometry.type === 'Polygon' ? 1 : 2, _coordsToLatLng); + return new Polygon(latlngs, options); + + case 'GeometryCollection': + for (i = 0, len = geometry.geometries.length; i < len; i++) { + var geoLayer = geometryToLayer({ + geometry: geometry.geometries[i], + type: 'Feature', + properties: geojson.properties + }, options); + + if (geoLayer) { + layers.push(geoLayer); + } + } + return new FeatureGroup(layers); + + case 'FeatureCollection': + for (i = 0, len = geometry.features.length; i < len; i++) { + var featureLayer = geometryToLayer(geometry.features[i], options); + + if (featureLayer) { + layers.push(featureLayer); + } + } + return new FeatureGroup(layers); + + default: + throw new Error('Invalid GeoJSON object.'); + } +} + +function _pointToLayer(pointToLayerFn, geojson, latlng, options) { + return pointToLayerFn ? + pointToLayerFn(geojson, latlng) : + new Marker(latlng, options && options.markersInheritOptions && options); +} + +// @function coordsToLatLng(coords: Array): LatLng +// Creates a `LatLng` object from an array of 2 numbers (longitude, latitude) +// or 3 numbers (longitude, latitude, altitude) used in GeoJSON for points. +function coordsToLatLng(coords) { + return new LatLng(coords[1], coords[0], coords[2]); +} + +// @function coordsToLatLngs(coords: Array, levelsDeep?: Number, coordsToLatLng?: Function): Array +// Creates a multidimensional array of `LatLng`s from a GeoJSON coordinates array. +// `levelsDeep` specifies the nesting level (0 is for an array of points, 1 for an array of arrays of points, etc., 0 by default). +// Can use a custom [`coordsToLatLng`](#geojson-coordstolatlng) function. +function coordsToLatLngs(coords, levelsDeep, _coordsToLatLng) { + var latlngs = []; + + for (var i = 0, len = coords.length, latlng; i < len; i++) { + latlng = levelsDeep ? + coordsToLatLngs(coords[i], levelsDeep - 1, _coordsToLatLng) : + (_coordsToLatLng || coordsToLatLng)(coords[i]); + + latlngs.push(latlng); + } + + return latlngs; +} + +// @function latLngToCoords(latlng: LatLng, precision?: Number|false): Array +// Reverse of [`coordsToLatLng`](#geojson-coordstolatlng) +// Coordinates values are rounded with [`formatNum`](#util-formatnum) function. +function latLngToCoords(latlng, precision) { + latlng = toLatLng(latlng); + return latlng.alt !== undefined ? + [formatNum(latlng.lng, precision), formatNum(latlng.lat, precision), formatNum(latlng.alt, precision)] : + [formatNum(latlng.lng, precision), formatNum(latlng.lat, precision)]; +} + +// @function latLngsToCoords(latlngs: Array, levelsDeep?: Number, closed?: Boolean, precision?: Number|false): Array +// Reverse of [`coordsToLatLngs`](#geojson-coordstolatlngs) +// `closed` determines whether the first point should be appended to the end of the array to close the feature, only used when `levelsDeep` is 0. False by default. +// Coordinates values are rounded with [`formatNum`](#util-formatnum) function. +function latLngsToCoords(latlngs, levelsDeep, closed, precision) { + var coords = []; + + for (var i = 0, len = latlngs.length; i < len; i++) { + // Check for flat arrays required to ensure unbalanced arrays are correctly converted in recursion + coords.push(levelsDeep ? + latLngsToCoords(latlngs[i], isFlat(latlngs[i]) ? 0 : levelsDeep - 1, closed, precision) : + latLngToCoords(latlngs[i], precision)); + } + + if (!levelsDeep && closed && coords.length > 0) { + coords.push(coords[0].slice()); + } + + return coords; +} + +function getFeature(layer, newGeometry) { + return layer.feature ? + extend({}, layer.feature, {geometry: newGeometry}) : + asFeature(newGeometry); +} + +// @function asFeature(geojson: Object): Object +// Normalize GeoJSON geometries/features into GeoJSON features. +function asFeature(geojson) { + if (geojson.type === 'Feature' || geojson.type === 'FeatureCollection') { + return geojson; + } + + return { + type: 'Feature', + properties: {}, + geometry: geojson + }; +} + +var PointToGeoJSON = { + toGeoJSON: function (precision) { + return getFeature(this, { + type: 'Point', + coordinates: latLngToCoords(this.getLatLng(), precision) + }); + } +}; + +// @namespace Marker +// @section Other methods +// @method toGeoJSON(precision?: Number|false): Object +// Coordinates values are rounded with [`formatNum`](#util-formatnum) function with given `precision`. +// Returns a [`GeoJSON`](https://en.wikipedia.org/wiki/GeoJSON) representation of the marker (as a GeoJSON `Point` Feature). +Marker.include(PointToGeoJSON); + +// @namespace CircleMarker +// @method toGeoJSON(precision?: Number|false): Object +// Coordinates values are rounded with [`formatNum`](#util-formatnum) function with given `precision`. +// Returns a [`GeoJSON`](https://en.wikipedia.org/wiki/GeoJSON) representation of the circle marker (as a GeoJSON `Point` Feature). +Circle.include(PointToGeoJSON); +CircleMarker.include(PointToGeoJSON); + + +// @namespace Polyline +// @method toGeoJSON(precision?: Number|false): Object +// Coordinates values are rounded with [`formatNum`](#util-formatnum) function with given `precision`. +// Returns a [`GeoJSON`](https://en.wikipedia.org/wiki/GeoJSON) representation of the polyline (as a GeoJSON `LineString` or `MultiLineString` Feature). +Polyline.include({ + toGeoJSON: function (precision) { + var multi = !isFlat(this._latlngs); + + var coords = latLngsToCoords(this._latlngs, multi ? 1 : 0, false, precision); + + return getFeature(this, { + type: (multi ? 'Multi' : '') + 'LineString', + coordinates: coords + }); + } +}); + +// @namespace Polygon +// @method toGeoJSON(precision?: Number|false): Object +// Coordinates values are rounded with [`formatNum`](#util-formatnum) function with given `precision`. +// Returns a [`GeoJSON`](https://en.wikipedia.org/wiki/GeoJSON) representation of the polygon (as a GeoJSON `Polygon` or `MultiPolygon` Feature). +Polygon.include({ + toGeoJSON: function (precision) { + var holes = !isFlat(this._latlngs), + multi = holes && !isFlat(this._latlngs[0]); + + var coords = latLngsToCoords(this._latlngs, multi ? 2 : holes ? 1 : 0, true, precision); + + if (!holes) { + coords = [coords]; + } + + return getFeature(this, { + type: (multi ? 'Multi' : '') + 'Polygon', + coordinates: coords + }); + } +}); + + +// @namespace LayerGroup +LayerGroup.include({ + toMultiPoint: function (precision) { + var coords = []; + + this.eachLayer(function (layer) { + coords.push(layer.toGeoJSON(precision).geometry.coordinates); + }); + + return getFeature(this, { + type: 'MultiPoint', + coordinates: coords + }); + }, + + // @method toGeoJSON(precision?: Number|false): Object + // Coordinates values are rounded with [`formatNum`](#util-formatnum) function with given `precision`. + // Returns a [`GeoJSON`](https://en.wikipedia.org/wiki/GeoJSON) representation of the layer group (as a GeoJSON `FeatureCollection`, `GeometryCollection`, or `MultiPoint`). + toGeoJSON: function (precision) { + + var type = this.feature && this.feature.geometry && this.feature.geometry.type; + + if (type === 'MultiPoint') { + return this.toMultiPoint(precision); + } + + var isGeometryCollection = type === 'GeometryCollection', + jsons = []; + + this.eachLayer(function (layer) { + if (layer.toGeoJSON) { + var json = layer.toGeoJSON(precision); + if (isGeometryCollection) { + jsons.push(json.geometry); + } else { + var feature = asFeature(json); + // Squash nested feature collections + if (feature.type === 'FeatureCollection') { + jsons.push.apply(jsons, feature.features); + } else { + jsons.push(feature); + } + } + } + }); + + if (isGeometryCollection) { + return getFeature(this, { + geometries: jsons, + type: 'GeometryCollection' + }); + } + + return { + type: 'FeatureCollection', + features: jsons + }; + } +}); + +// @namespace GeoJSON +// @factory L.geoJSON(geojson?: Object, options?: GeoJSON options) +// Creates a GeoJSON layer. Optionally accepts an object in +// [GeoJSON format](https://tools.ietf.org/html/rfc7946) to display on the map +// (you can alternatively add it later with `addData` method) and an `options` object. +function geoJSON(geojson, options) { + return new GeoJSON(geojson, options); +} + +// Backward compatibility. +var geoJson = geoJSON; + +/* + * @class ImageOverlay + * @aka L.ImageOverlay + * @inherits Interactive layer + * + * Used to load and display a single image over specific bounds of the map. Extends `Layer`. + * + * @example + * + * ```js + * var imageUrl = 'https://maps.lib.utexas.edu/maps/historical/newark_nj_1922.jpg', + * imageBounds = [[40.712216, -74.22655], [40.773941, -74.12544]]; + * L.imageOverlay(imageUrl, imageBounds).addTo(map); + * ``` + */ + +var ImageOverlay = Layer.extend({ + + // @section + // @aka ImageOverlay options + options: { + // @option opacity: Number = 1.0 + // The opacity of the image overlay. + opacity: 1, + + // @option alt: String = '' + // Text for the `alt` attribute of the image (useful for accessibility). + alt: '', + + // @option interactive: Boolean = false + // If `true`, the image overlay will emit [mouse events](#interactive-layer) when clicked or hovered. + interactive: false, + + // @option crossOrigin: Boolean|String = false + // Whether the crossOrigin attribute will be added to the image. + // If a String is provided, the image will have its crossOrigin attribute set to the String provided. This is needed if you want to access image pixel data. + // Refer to [CORS Settings](https://developer.mozilla.org/en-US/docs/Web/HTML/CORS_settings_attributes) for valid String values. + crossOrigin: false, + + // @option errorOverlayUrl: String = '' + // URL to the overlay image to show in place of the overlay that failed to load. + errorOverlayUrl: '', + + // @option zIndex: Number = 1 + // The explicit [zIndex](https://developer.mozilla.org/docs/Web/CSS/CSS_Positioning/Understanding_z_index) of the overlay layer. + zIndex: 1, + + // @option className: String = '' + // A custom class name to assign to the image. Empty by default. + className: '' + }, + + initialize: function (url, bounds, options) { // (String, LatLngBounds, Object) + this._url = url; + this._bounds = toLatLngBounds(bounds); + + setOptions(this, options); + }, + + onAdd: function () { + if (!this._image) { + this._initImage(); + + if (this.options.opacity < 1) { + this._updateOpacity(); + } + } + + if (this.options.interactive) { + addClass(this._image, 'leaflet-interactive'); + this.addInteractiveTarget(this._image); + } + + this.getPane().appendChild(this._image); + this._reset(); + }, + + onRemove: function () { + remove(this._image); + if (this.options.interactive) { + this.removeInteractiveTarget(this._image); + } + }, + + // @method setOpacity(opacity: Number): this + // Sets the opacity of the overlay. + setOpacity: function (opacity) { + this.options.opacity = opacity; + + if (this._image) { + this._updateOpacity(); + } + return this; + }, + + setStyle: function (styleOpts) { + if (styleOpts.opacity) { + this.setOpacity(styleOpts.opacity); + } + return this; + }, + + // @method bringToFront(): this + // Brings the layer to the top of all overlays. + bringToFront: function () { + if (this._map) { + toFront(this._image); + } + return this; + }, + + // @method bringToBack(): this + // Brings the layer to the bottom of all overlays. + bringToBack: function () { + if (this._map) { + toBack(this._image); + } + return this; + }, + + // @method setUrl(url: String): this + // Changes the URL of the image. + setUrl: function (url) { + this._url = url; + + if (this._image) { + this._image.src = url; + } + return this; + }, + + // @method setBounds(bounds: LatLngBounds): this + // Update the bounds that this ImageOverlay covers + setBounds: function (bounds) { + this._bounds = toLatLngBounds(bounds); + + if (this._map) { + this._reset(); + } + return this; + }, + + getEvents: function () { + var events = { + zoom: this._reset, + viewreset: this._reset + }; + + if (this._zoomAnimated) { + events.zoomanim = this._animateZoom; + } + + return events; + }, + + // @method setZIndex(value: Number): this + // Changes the [zIndex](#imageoverlay-zindex) of the image overlay. + setZIndex: function (value) { + this.options.zIndex = value; + this._updateZIndex(); + return this; + }, + + // @method getBounds(): LatLngBounds + // Get the bounds that this ImageOverlay covers + getBounds: function () { + return this._bounds; + }, + + // @method getElement(): HTMLElement + // Returns the instance of [`HTMLImageElement`](https://developer.mozilla.org/docs/Web/API/HTMLImageElement) + // used by this overlay. + getElement: function () { + return this._image; + }, + + _initImage: function () { + var wasElementSupplied = this._url.tagName === 'IMG'; + var img = this._image = wasElementSupplied ? this._url : create$1('img'); + + addClass(img, 'leaflet-image-layer'); + if (this._zoomAnimated) { addClass(img, 'leaflet-zoom-animated'); } + if (this.options.className) { addClass(img, this.options.className); } + + img.onselectstart = falseFn; + img.onmousemove = falseFn; + + // @event load: Event + // Fired when the ImageOverlay layer has loaded its image + img.onload = bind(this.fire, this, 'load'); + img.onerror = bind(this._overlayOnError, this, 'error'); + + if (this.options.crossOrigin || this.options.crossOrigin === '') { + img.crossOrigin = this.options.crossOrigin === true ? '' : this.options.crossOrigin; + } + + if (this.options.zIndex) { + this._updateZIndex(); + } + + if (wasElementSupplied) { + this._url = img.src; + return; + } + + img.src = this._url; + img.alt = this.options.alt; + }, + + _animateZoom: function (e) { + var scale = this._map.getZoomScale(e.zoom), + offset = this._map._latLngBoundsToNewLayerBounds(this._bounds, e.zoom, e.center).min; + + setTransform(this._image, offset, scale); + }, + + _reset: function () { + var image = this._image, + bounds = new Bounds( + this._map.latLngToLayerPoint(this._bounds.getNorthWest()), + this._map.latLngToLayerPoint(this._bounds.getSouthEast())), + size = bounds.getSize(); + + setPosition(image, bounds.min); + + image.style.width = size.x + 'px'; + image.style.height = size.y + 'px'; + }, + + _updateOpacity: function () { + setOpacity(this._image, this.options.opacity); + }, + + _updateZIndex: function () { + if (this._image && this.options.zIndex !== undefined && this.options.zIndex !== null) { + this._image.style.zIndex = this.options.zIndex; + } + }, + + _overlayOnError: function () { + // @event error: Event + // Fired when the ImageOverlay layer fails to load its image + this.fire('error'); + + var errorUrl = this.options.errorOverlayUrl; + if (errorUrl && this._url !== errorUrl) { + this._url = errorUrl; + this._image.src = errorUrl; + } + }, + + // @method getCenter(): LatLng + // Returns the center of the ImageOverlay. + getCenter: function () { + return this._bounds.getCenter(); + } +}); + +// @factory L.imageOverlay(imageUrl: String, bounds: LatLngBounds, options?: ImageOverlay options) +// Instantiates an image overlay object given the URL of the image and the +// geographical bounds it is tied to. +var imageOverlay = function (url, bounds, options) { + return new ImageOverlay(url, bounds, options); +}; + +/* + * @class VideoOverlay + * @aka L.VideoOverlay + * @inherits ImageOverlay + * + * Used to load and display a video player over specific bounds of the map. Extends `ImageOverlay`. + * + * A video overlay uses the [`