leaflet-js 0.7.9 → 0.8.dev2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.rdoc +0 -10
- data/Rakefile +3 -3
- data/leaflet-js.gemspec +7 -13
- data/lib/leaflet-js.rb +10 -2
- data/lib/leaflet.draw/BREAKINGCHANGES.md +54 -0
- data/lib/leaflet.draw/CHANGELOG.md +130 -0
- data/lib/leaflet.draw/Jakefile.js +48 -0
- data/lib/leaflet.draw/MIT-LICENCE.txt +20 -0
- data/lib/leaflet.draw/README.md +427 -0
- data/lib/leaflet.draw/TODO.md +62 -0
- data/lib/leaflet.draw/build/build.html +243 -0
- data/lib/leaflet.draw/build/build.js +187 -0
- data/lib/leaflet.draw/build/deps.js +76 -0
- data/lib/leaflet.draw/build/hintrc.js +39 -0
- data/lib/leaflet.draw/build/leaflet.draw-include.js +42 -0
- data/{vendor/assets/Leaflet.draw → lib/leaflet.draw}/dist/images/spritesheet-2x.png +0 -0
- data/{vendor/assets/Leaflet.draw → lib/leaflet.draw}/dist/images/spritesheet.png +0 -0
- data/lib/leaflet.draw/dist/leaflet.draw-src.js +2872 -0
- data/lib/leaflet.draw/dist/leaflet.draw.css +295 -0
- data/lib/leaflet.draw/dist/leaflet.draw.js +10 -0
- data/lib/leaflet.draw/examples/basic.html +113 -0
- data/lib/leaflet.draw/examples/edithandlers.html +66 -0
- data/{vendor/assets/Leaflet/dist → lib/leaflet.draw/examples/libs}/images/layers-2x.png +0 -0
- data/{vendor/assets/Leaflet/dist → lib/leaflet.draw/examples/libs}/images/layers.png +0 -0
- data/{vendor/assets/Leaflet/dist → lib/leaflet.draw/examples/libs}/images/marker-icon-2x.png +0 -0
- data/{vendor/assets/Leaflet/dist → lib/leaflet.draw/examples/libs}/images/marker-icon.png +0 -0
- data/lib/leaflet.draw/examples/libs/images/marker-icon@2x.png +0 -0
- data/{vendor/assets/Leaflet/dist → lib/leaflet.draw/examples/libs}/images/marker-shadow.png +0 -0
- data/lib/leaflet.draw/examples/libs/leaflet-src.js +9191 -0
- data/{vendor/assets/leaflet.css.erb → lib/leaflet.draw/examples/libs/leaflet.css} +2 -2
- data/lib/leaflet.draw/package.json +40 -0
- data/lib/leaflet.draw/spec/after.js +2 -0
- data/lib/leaflet.draw/spec/before.js +3 -0
- data/lib/leaflet.draw/spec/expect.js +1253 -0
- data/lib/leaflet.draw/spec/happen.js +93 -0
- data/lib/leaflet.draw/spec/index.html +38 -0
- data/lib/leaflet.draw/spec/karma.conf.js +72 -0
- data/lib/leaflet.draw/spec/sinon.js +4223 -0
- data/lib/leaflet.draw/spec/spec.hintrc.js +25 -0
- data/lib/leaflet.draw/spec/suites/DrawControlSpec.js +14 -0
- data/lib/leaflet.draw/spec/suites/GeometryUtilSpec.js +25 -0
- data/lib/leaflet.draw/spec/suites/LatLngUtilSpec.js +11 -0
- data/lib/leaflet.draw/spec/suites/SpecHelper.js +28 -0
- data/{vendor/assets/Leaflet.draw → lib/leaflet.draw}/src/Control.Draw.js +9 -9
- data/{vendor/assets/Leaflet.draw → lib/leaflet.draw}/src/Leaflet.draw.js +1 -2
- data/{vendor/assets/Leaflet.draw → lib/leaflet.draw}/src/Toolbar.js +0 -0
- data/{vendor/assets/Leaflet.draw → lib/leaflet.draw}/src/Tooltip.js +0 -0
- data/{vendor/assets/Leaflet.draw → lib/leaflet.draw}/src/copyright.js +0 -0
- data/{vendor/assets/Leaflet.draw → lib/leaflet.draw}/src/draw/DrawToolbar.js +0 -4
- data/{vendor/assets/Leaflet.draw → lib/leaflet.draw}/src/draw/handler/Draw.Circle.js +1 -1
- data/{vendor/assets/Leaflet.draw → lib/leaflet.draw}/src/draw/handler/Draw.Feature.js +2 -2
- data/{vendor/assets/Leaflet.draw → lib/leaflet.draw}/src/draw/handler/Draw.Marker.js +0 -0
- data/{vendor/assets/Leaflet.draw → lib/leaflet.draw}/src/draw/handler/Draw.Polygon.js +0 -0
- data/{vendor/assets/Leaflet.draw → lib/leaflet.draw}/src/draw/handler/Draw.Polyline.js +0 -0
- data/{vendor/assets/Leaflet.draw → lib/leaflet.draw}/src/draw/handler/Draw.Rectangle.js +1 -19
- data/{vendor/assets/Leaflet.draw → lib/leaflet.draw}/src/draw/handler/Draw.SimpleShape.js +1 -7
- data/{vendor/assets/Leaflet.draw → lib/leaflet.draw}/src/edit/EditToolbar.js +2 -9
- data/{vendor/assets/Leaflet.draw → lib/leaflet.draw}/src/edit/handler/Edit.Circle.js +0 -0
- data/{vendor/assets/Leaflet.draw → lib/leaflet.draw}/src/edit/handler/Edit.Poly.js +2 -14
- data/{vendor/assets/Leaflet.draw → lib/leaflet.draw}/src/edit/handler/Edit.Rectangle.js +0 -0
- data/{vendor/assets/Leaflet.draw → lib/leaflet.draw}/src/edit/handler/Edit.SimpleShape.js +3 -11
- data/{vendor/assets/Leaflet.draw → lib/leaflet.draw}/src/edit/handler/EditToolbar.Delete.js +1 -4
- data/{vendor/assets/Leaflet.draw → lib/leaflet.draw}/src/edit/handler/EditToolbar.Edit.js +83 -17
- data/{vendor/assets/Leaflet.draw → lib/leaflet.draw}/src/ext/GeometryUtil.js +1 -1
- data/{vendor/assets/Leaflet.draw → lib/leaflet.draw}/src/ext/LatLngUtil.js +0 -0
- data/{vendor/assets/Leaflet.draw → lib/leaflet.draw}/src/ext/LineUtil.Intersect.js +0 -0
- data/{vendor/assets/Leaflet.draw → lib/leaflet.draw}/src/ext/Polygon.Intersect.js +0 -0
- data/{vendor/assets/Leaflet.draw → lib/leaflet.draw}/src/ext/Polyline.Intersect.js +0 -0
- data/{vendor/assets/Leaflet.draw → lib/leaflet.draw}/src/images/spritesheet.svg +0 -0
- data/lib/leaflet.label/CHANGELOG.md +67 -0
- data/lib/leaflet.label/Jakefile.js +21 -0
- data/lib/leaflet.label/MIT-LICENCE.txt +20 -0
- data/lib/leaflet.label/README.md +103 -0
- data/lib/leaflet.label/build/build.js +155 -0
- data/lib/leaflet.label/build/deps.js +26 -0
- data/lib/leaflet.label/build/hint.js +30 -0
- data/lib/leaflet.label/build/hintrc.js +51 -0
- data/lib/leaflet.label/dist/images/death.png +0 -0
- data/lib/leaflet.label/dist/leaflet.label-src.js +542 -0
- data/{vendor/assets → lib/leaflet.label/dist}/leaflet.label.css +0 -0
- data/lib/leaflet.label/dist/leaflet.label.js +9 -0
- data/lib/leaflet.label/example/label.html +85 -0
- data/lib/leaflet.label/libs/leaflet/images/layers-2x.png +0 -0
- data/lib/leaflet.label/libs/leaflet/images/layers.png +0 -0
- data/lib/leaflet.label/libs/leaflet/images/marker-icon-2x.png +0 -0
- data/lib/leaflet.label/libs/leaflet/images/marker-icon.png +0 -0
- data/lib/leaflet.label/libs/leaflet/images/marker-icon@2x.png +0 -0
- data/lib/leaflet.label/libs/leaflet/images/marker-shadow.png +0 -0
- data/lib/leaflet.label/libs/leaflet/leaflet-src.js +9108 -0
- data/lib/leaflet.label/libs/leaflet/leaflet.css +478 -0
- data/lib/leaflet.label/libs/leaflet/leaflet.js +9 -0
- data/lib/leaflet.label/package.json +19 -0
- data/{vendor/assets/Leaflet.label → lib/leaflet.label}/src/BaseMarkerMethods.js +0 -0
- data/{vendor/assets/Leaflet.label → lib/leaflet.label}/src/CircleMarker.Label.js +0 -0
- data/{vendor/assets/Leaflet.label → lib/leaflet.label}/src/FeatureGroup.Label.js +0 -0
- data/{vendor/assets/Leaflet.label → lib/leaflet.label}/src/Label.js +2 -5
- data/{vendor/assets/Leaflet.label → lib/leaflet.label}/src/Leaflet.label.js +1 -1
- data/{vendor/assets/Leaflet.label → lib/leaflet.label}/src/Map.Label.js +0 -0
- data/{vendor/assets/Leaflet.label → lib/leaflet.label}/src/Marker.Label.js +0 -0
- data/{vendor/assets/Leaflet.label → lib/leaflet.label}/src/Path.Label.js +0 -0
- data/{vendor/assets/Leaflet.label → lib/leaflet.label}/src/copyright.js +0 -0
- data/lib/leaflet/CHANGELOG.md +1007 -0
- data/lib/leaflet/CONTRIBUTING.md +155 -0
- data/lib/leaflet/FAQ.md +138 -0
- data/lib/leaflet/Jakefile.js +56 -0
- data/lib/leaflet/LICENSE +23 -0
- data/lib/leaflet/PLUGIN-GUIDE.md +127 -0
- data/lib/leaflet/README.md +34 -0
- data/lib/leaflet/build/build.html +227 -0
- data/lib/leaflet/build/build.js +190 -0
- data/lib/leaflet/build/deps.js +258 -0
- data/lib/leaflet/build/hintrc.js +40 -0
- data/lib/leaflet/debug/css/mobile.css +6 -0
- data/lib/leaflet/debug/css/screen.css +5 -0
- data/lib/leaflet/debug/hacks/jitter.html +42 -0
- data/lib/leaflet/debug/leaflet-include.js +59 -0
- data/lib/leaflet/debug/map/canvas.html +49 -0
- data/lib/leaflet/debug/map/controls.html +49 -0
- data/lib/leaflet/debug/map/geolocation.html +34 -0
- data/lib/leaflet/debug/map/grid.html +45 -0
- data/lib/leaflet/debug/map/iframe.html +11 -0
- data/lib/leaflet/debug/map/image-overlay.html +43 -0
- data/lib/leaflet/debug/map/map-mobile.html +34 -0
- data/lib/leaflet/debug/map/map.html +61 -0
- data/lib/leaflet/debug/map/max-bounds.html +38 -0
- data/lib/leaflet/debug/map/opacity.html +223 -0
- data/lib/leaflet/debug/map/scroll.html +41 -0
- data/lib/leaflet/debug/map/simple-proj.html +59 -0
- data/lib/leaflet/debug/map/wms-marble.html +30 -0
- data/lib/leaflet/debug/map/wms.html +40 -0
- data/lib/leaflet/debug/map/zoomlevels.html +45 -0
- data/lib/leaflet/debug/tests/add_remove_layers.html +87 -0
- data/lib/leaflet/debug/tests/bringtoback.html +37 -0
- data/lib/leaflet/debug/tests/canvasloop.html +47 -0
- data/lib/leaflet/debug/tests/click_on_canvas.html +58 -0
- data/lib/leaflet/debug/tests/click_on_canvas_broken.html +49 -0
- data/lib/leaflet/debug/tests/dragging_and_copyworldjump.html +61 -0
- data/lib/leaflet/debug/tests/opacity.html +56 -0
- data/lib/leaflet/debug/tests/popupcontextmenuclicks.html +59 -0
- data/lib/leaflet/debug/tests/remove_while_dragging.html +28 -0
- data/lib/leaflet/debug/tests/removetilewhilepan.html +41 -0
- data/lib/leaflet/debug/tests/reuse_popups.html +40 -0
- data/lib/leaflet/debug/tests/rtl.html +42 -0
- data/lib/leaflet/debug/tests/rtl2.html +27 -0
- data/lib/leaflet/debug/tests/set_icon_reuse_dom.html +43 -0
- data/lib/leaflet/debug/tests/svg_clicks.html +54 -0
- data/lib/leaflet/debug/vector/bounds-extend.html +88 -0
- data/lib/leaflet/debug/vector/feature-group-bounds.html +90 -0
- data/lib/leaflet/debug/vector/geojson-sample.js +53 -0
- data/lib/leaflet/debug/vector/geojson.html +173 -0
- data/lib/leaflet/debug/vector/rectangle.html +53 -0
- data/lib/leaflet/debug/vector/route.js +1 -0
- data/lib/leaflet/debug/vector/touchzoomemu.html +194 -0
- data/lib/leaflet/debug/vector/us-states.js +54 -0
- data/lib/leaflet/debug/vector/vector-bounds.html +69 -0
- data/lib/leaflet/debug/vector/vector-canvas.html +92 -0
- data/lib/leaflet/debug/vector/vector-mobile.html +38 -0
- data/lib/leaflet/debug/vector/vector-simple.html +47 -0
- data/lib/leaflet/debug/vector/vector.html +37 -0
- data/lib/leaflet/debug/vector/vector2.html +58 -0
- data/lib/leaflet/dist/images/layers-2x.png +0 -0
- data/lib/leaflet/dist/images/layers.png +0 -0
- data/lib/leaflet/dist/images/marker-icon-2x.png +0 -0
- data/lib/leaflet/dist/images/marker-icon.png +0 -0
- data/lib/leaflet/dist/images/marker-shadow.png +0 -0
- data/lib/leaflet/dist/leaflet.css +494 -0
- data/lib/leaflet/package.json +28 -0
- data/lib/leaflet/spec/after.js +2 -0
- data/lib/leaflet/spec/expect.js +1253 -0
- data/lib/leaflet/spec/index.html +87 -0
- data/lib/leaflet/spec/karma.conf.js +68 -0
- data/lib/leaflet/spec/sinon.js +4223 -0
- data/lib/leaflet/spec/spec.hintrc.js +25 -0
- data/lib/leaflet/spec/suites/SpecHelper.js +42 -0
- data/lib/leaflet/spec/suites/control/Control.AttributionSpec.js +68 -0
- data/lib/leaflet/spec/suites/control/Control.LayersSpec.js +67 -0
- data/lib/leaflet/spec/suites/control/Control.ScaleSpec.js +6 -0
- data/lib/leaflet/spec/suites/core/ClassSpec.js +166 -0
- data/lib/leaflet/spec/suites/core/EventsSpec.js +416 -0
- data/lib/leaflet/spec/suites/core/UtilSpec.js +237 -0
- data/lib/leaflet/spec/suites/dom/DomEventSpec.js +102 -0
- data/lib/leaflet/spec/suites/dom/DomUtilSpec.js +59 -0
- data/lib/leaflet/spec/suites/dom/PosAnimationSpec.js +27 -0
- data/lib/leaflet/spec/suites/geo/CRSSpec.js +151 -0
- data/lib/leaflet/spec/suites/geo/LatLngBoundsSpec.js +144 -0
- data/lib/leaflet/spec/suites/geo/LatLngSpec.js +102 -0
- data/lib/leaflet/spec/suites/geo/ProjectionSpec.js +96 -0
- data/lib/leaflet/spec/suites/geometry/BoundsSpec.js +87 -0
- data/lib/leaflet/spec/suites/geometry/LineUtilSpec.js +75 -0
- data/lib/leaflet/spec/suites/geometry/PointSpec.js +104 -0
- data/lib/leaflet/spec/suites/geometry/PolyUtilSpec.js +27 -0
- data/lib/leaflet/spec/suites/geometry/TransformationSpec.js +31 -0
- data/lib/leaflet/spec/suites/layer/FeatureGroupSpec.js +86 -0
- data/lib/leaflet/spec/suites/layer/GeoJSONSpec.js +282 -0
- data/lib/leaflet/spec/suites/layer/LayerGroupSpec.js +71 -0
- data/lib/leaflet/spec/suites/layer/PopupSpec.js +119 -0
- data/lib/leaflet/spec/suites/layer/marker/MarkerSpec.js +117 -0
- data/lib/leaflet/spec/suites/layer/tile/GridLayerSpec.js +70 -0
- data/lib/leaflet/spec/suites/layer/tile/TileLayerSpec.js +88 -0
- data/lib/leaflet/spec/suites/layer/vector/CircleMarkerSpec.js +53 -0
- data/lib/leaflet/spec/suites/layer/vector/CircleSpec.js +18 -0
- data/lib/leaflet/spec/suites/layer/vector/PolygonSpec.js +96 -0
- data/lib/leaflet/spec/suites/layer/vector/PolylineGeometrySpec.js +35 -0
- data/lib/leaflet/spec/suites/layer/vector/PolylineSpec.js +55 -0
- data/lib/leaflet/spec/suites/map/MapSpec.js +553 -0
- data/lib/leaflet/spec/suites/map/handler/Map.DragSpec.js +38 -0
- data/{vendor/assets/Leaflet → lib/leaflet}/src/Leaflet.js +16 -11
- data/{vendor/assets/Leaflet → lib/leaflet}/src/control/Control.Attribution.js +1 -23
- data/{vendor/assets/Leaflet → lib/leaflet}/src/control/Control.Layers.js +42 -57
- data/lib/leaflet/src/control/Control.Scale.js +102 -0
- data/{vendor/assets/Leaflet → lib/leaflet}/src/control/Control.Zoom.js +11 -18
- data/{vendor/assets/Leaflet → lib/leaflet}/src/control/Control.js +7 -9
- data/lib/leaflet/src/copyright.js +4 -0
- data/lib/leaflet/src/core/Browser.js +65 -0
- data/{vendor/assets/Leaflet → lib/leaflet}/src/core/Class.js +8 -13
- data/lib/leaflet/src/core/Events.js +226 -0
- data/{vendor/assets/Leaflet → lib/leaflet}/src/core/Handler.js +0 -0
- data/lib/leaflet/src/core/Util.js +196 -0
- data/{vendor/assets/Leaflet → lib/leaflet}/src/dom/DomEvent.DoubleTap.js +20 -27
- data/lib/leaflet/src/dom/DomEvent.Pointer.js +107 -0
- data/{vendor/assets/Leaflet → lib/leaflet}/src/dom/DomEvent.js +70 -59
- data/lib/leaflet/src/dom/DomUtil.js +213 -0
- data/{vendor/assets/Leaflet → lib/leaflet}/src/dom/Draggable.js +10 -19
- data/{vendor/assets/Leaflet → lib/leaflet}/src/dom/PosAnimation.Timer.js +0 -0
- data/{vendor/assets/Leaflet → lib/leaflet}/src/dom/PosAnimation.js +4 -3
- data/lib/leaflet/src/geo/LatLng.js +67 -0
- data/{vendor/assets/Leaflet → lib/leaflet}/src/geo/LatLngBounds.js +0 -0
- data/lib/leaflet/src/geo/crs/CRS.EPSG3395.js +13 -0
- data/lib/leaflet/src/geo/crs/CRS.EPSG3857.js +17 -0
- data/{vendor/assets/Leaflet → lib/leaflet}/src/geo/crs/CRS.EPSG4326.js +2 -3
- data/lib/leaflet/src/geo/crs/CRS.Earth.js +19 -0
- data/{vendor/assets/Leaflet → lib/leaflet}/src/geo/crs/CRS.Simple.js +10 -1
- data/lib/leaflet/src/geo/crs/CRS.js +63 -0
- data/{vendor/assets/Leaflet → lib/leaflet}/src/geo/projection/Projection.LonLat.js +5 -1
- data/lib/leaflet/src/geo/projection/Projection.Mercator.js +43 -0
- data/lib/leaflet/src/geo/projection/Projection.SphericalMercator.js +31 -0
- data/{vendor/assets/Leaflet → lib/leaflet}/src/geometry/Bounds.js +0 -0
- data/{vendor/assets/Leaflet → lib/leaflet}/src/geometry/LineUtil.js +16 -5
- data/{vendor/assets/Leaflet → lib/leaflet}/src/geometry/Point.js +10 -0
- data/{vendor/assets/Leaflet → lib/leaflet}/src/geometry/PolyUtil.js +0 -0
- data/{vendor/assets/Leaflet → lib/leaflet}/src/geometry/Transformation.js +0 -0
- data/{vendor/assets/Leaflet → lib/leaflet}/src/images/layers.svg +0 -0
- data/lib/leaflet/src/images/logo.svg +85 -0
- data/{vendor/assets/Leaflet → lib/leaflet}/src/images/marker.svg +0 -0
- data/{vendor/assets/Leaflet → lib/leaflet}/src/layer/FeatureGroup.js +3 -20
- data/lib/leaflet/src/layer/GeoJSON.js +275 -0
- data/lib/leaflet/src/layer/ImageOverlay.js +123 -0
- data/lib/leaflet/src/layer/Layer.Popup.js +87 -0
- data/lib/leaflet/src/layer/Layer.js +150 -0
- data/{vendor/assets/Leaflet → lib/leaflet}/src/layer/LayerGroup.js +12 -14
- data/{vendor/assets/Leaflet → lib/leaflet}/src/layer/Popup.js +65 -83
- data/{vendor/assets/Leaflet → lib/leaflet}/src/layer/marker/DivIcon.js +3 -8
- data/{vendor/assets/Leaflet → lib/leaflet}/src/layer/marker/Icon.Default.js +6 -12
- data/{vendor/assets/Leaflet → lib/leaflet}/src/layer/marker/Icon.js +8 -25
- data/{vendor/assets/Leaflet → lib/leaflet}/src/layer/marker/Marker.Drag.js +13 -11
- data/lib/leaflet/src/layer/marker/Marker.Popup.js +16 -0
- data/{vendor/assets/Leaflet → lib/leaflet}/src/layer/marker/Marker.js +52 -103
- data/lib/leaflet/src/layer/tile/GridLayer.js +536 -0
- data/lib/leaflet/src/layer/tile/TileLayer.WMS.js +79 -0
- data/lib/leaflet/src/layer/tile/TileLayer.js +148 -0
- data/lib/leaflet/src/layer/vector/Canvas.js +292 -0
- data/lib/leaflet/src/layer/vector/Circle.js +67 -0
- data/lib/leaflet/src/layer/vector/CircleMarker.js +72 -0
- data/lib/leaflet/src/layer/vector/Path.js +79 -0
- data/lib/leaflet/src/layer/vector/Polygon.js +75 -0
- data/lib/leaflet/src/layer/vector/Polyline.js +223 -0
- data/{vendor/assets/Leaflet → lib/leaflet}/src/layer/vector/Rectangle.js +27 -27
- data/lib/leaflet/src/layer/vector/Renderer.js +75 -0
- data/lib/leaflet/src/layer/vector/SVG.VML.js +134 -0
- data/lib/leaflet/src/layer/vector/SVG.js +189 -0
- data/{vendor/assets/Leaflet → lib/leaflet}/src/map/Map.js +83 -199
- data/{vendor/assets/Leaflet → lib/leaflet}/src/map/anim/Map.PanAnimation.js +0 -0
- data/{vendor/assets/Leaflet → lib/leaflet}/src/map/anim/Map.ZoomAnimation.js +30 -38
- data/{vendor/assets/Leaflet → lib/leaflet}/src/map/ext/Map.Geolocation.js +8 -8
- data/lib/leaflet/src/map/handler/Map.BoxZoom.js +105 -0
- data/{vendor/assets/Leaflet → lib/leaflet}/src/map/handler/Map.DoubleClickZoom.js +0 -0
- data/{vendor/assets/Leaflet → lib/leaflet}/src/map/handler/Map.Drag.js +12 -10
- data/{vendor/assets/Leaflet → lib/leaflet}/src/map/handler/Map.Keyboard.js +19 -17
- data/{vendor/assets/Leaflet → lib/leaflet}/src/map/handler/Map.ScrollWheelZoom.js +10 -6
- data/{vendor/assets/Leaflet → lib/leaflet}/src/map/handler/Map.Tap.js +8 -6
- data/{vendor/assets/Leaflet → lib/leaflet}/src/map/handler/Map.TouchZoom.js +16 -32
- data/vendor/assets/images/layers-2x.png +0 -0
- data/vendor/assets/images/layers.png +0 -0
- data/vendor/assets/images/marker-icon-2x.png +0 -0
- data/vendor/assets/images/marker-icon.png +0 -0
- data/vendor/assets/images/marker-shadow.png +0 -0
- data/vendor/assets/images/spritesheet-2x.png +0 -0
- data/vendor/assets/images/spritesheet.png +0 -0
- data/vendor/assets/{leaflet-js.js → javascripts/leaflet-js.js} +2 -2
- data/vendor/assets/javascripts/leaflet.draw.js +37 -0
- data/vendor/assets/javascripts/leaflet.js +149 -0
- data/vendor/assets/javascripts/leaflet.label.js +11 -0
- data/vendor/assets/{leaflet-js.css → stylesheets/leaflet-js.css} +0 -0
- data/vendor/assets/stylesheets/leaflet.css.erb +478 -0
- data/vendor/assets/{leaflet.draw.css.erb → stylesheets/leaflet.draw.css.erb} +2 -2
- data/vendor/assets/{leaflet.draw.ie.css → stylesheets/leaflet.draw.ie.css} +0 -0
- data/vendor/assets/stylesheets/leaflet.label.css +52 -0
- metadata +298 -137
- data/lib/leaflet-js/engine.rb +0 -7
- data/lib/leaflet-js/version.rb +0 -3
- data/vendor/assets/Leaflet.draw/src/edit/handler/Edit.Marker.js +0 -75
- data/vendor/assets/Leaflet/src/control/Control.Scale.js +0 -112
- data/vendor/assets/Leaflet/src/copyright.js +0 -5
- data/vendor/assets/Leaflet/src/core/Browser.js +0 -66
- data/vendor/assets/Leaflet/src/core/Events.js +0 -178
- data/vendor/assets/Leaflet/src/core/Util.js +0 -182
- data/vendor/assets/Leaflet/src/dom/DomEvent.Pointer.js +0 -156
- data/vendor/assets/Leaflet/src/dom/DomUtil.js +0 -289
- data/vendor/assets/Leaflet/src/geo/LatLng.js +0 -99
- data/vendor/assets/Leaflet/src/geo/crs/CRS.EPSG3395.js +0 -14
- data/vendor/assets/Leaflet/src/geo/crs/CRS.EPSG3857.js +0 -21
- data/vendor/assets/Leaflet/src/geo/crs/CRS.js +0 -32
- data/vendor/assets/Leaflet/src/geo/projection/Projection.Mercator.js +0 -56
- data/vendor/assets/Leaflet/src/geo/projection/Projection.SphericalMercator.js +0 -27
- data/vendor/assets/Leaflet/src/geo/projection/Projection.js +0 -5
- data/vendor/assets/Leaflet/src/layer/GeoJSON.js +0 -286
- data/vendor/assets/Leaflet/src/layer/ImageOverlay.js +0 -141
- data/vendor/assets/Leaflet/src/layer/marker/Marker.Popup.js +0 -90
- data/vendor/assets/Leaflet/src/layer/tile/TileLayer.Anim.js +0 -110
- data/vendor/assets/Leaflet/src/layer/tile/TileLayer.Canvas.js +0 -61
- data/vendor/assets/Leaflet/src/layer/tile/TileLayer.WMS.js +0 -87
- data/vendor/assets/Leaflet/src/layer/tile/TileLayer.js +0 -597
- data/vendor/assets/Leaflet/src/layer/vector/Circle.js +0 -98
- data/vendor/assets/Leaflet/src/layer/vector/CircleMarker.js +0 -45
- data/vendor/assets/Leaflet/src/layer/vector/MultiPoly.js +0 -57
- data/vendor/assets/Leaflet/src/layer/vector/Path.Popup.js +0 -65
- data/vendor/assets/Leaflet/src/layer/vector/Path.SVG.js +0 -230
- data/vendor/assets/Leaflet/src/layer/vector/Path.VML.js +0 -135
- data/vendor/assets/Leaflet/src/layer/vector/Path.js +0 -119
- data/vendor/assets/Leaflet/src/layer/vector/Polygon.js +0 -92
- data/vendor/assets/Leaflet/src/layer/vector/Polyline.js +0 -164
- data/vendor/assets/Leaflet/src/layer/vector/canvas/Circle.Canvas.js +0 -18
- data/vendor/assets/Leaflet/src/layer/vector/canvas/CircleMarker.Canvas.js +0 -9
- data/vendor/assets/Leaflet/src/layer/vector/canvas/Path.Canvas.js +0 -204
- data/vendor/assets/Leaflet/src/layer/vector/canvas/Polygon.Canvas.js +0 -37
- data/vendor/assets/Leaflet/src/layer/vector/canvas/Polyline.Canvas.js +0 -30
- data/vendor/assets/Leaflet/src/map/handler/Map.BoxZoom.js +0 -118
- data/vendor/assets/leaflet.draw.js +0 -38
- data/vendor/assets/leaflet.js +0 -155
- data/vendor/assets/leaflet.label.js +0 -11
data/lib/leaflet-js/engine.rb
DELETED
data/lib/leaflet-js/version.rb
DELETED
@@ -1,75 +0,0 @@
|
|
1
|
-
L.Edit = L.Edit || {};
|
2
|
-
|
3
|
-
L.Edit.Marker = L.Handler.extend({
|
4
|
-
initialize: function (marker, options) {
|
5
|
-
this._marker = marker;
|
6
|
-
L.setOptions(this, options);
|
7
|
-
},
|
8
|
-
|
9
|
-
addHooks: function () {
|
10
|
-
var marker = this._marker;
|
11
|
-
|
12
|
-
marker.dragging.enable();
|
13
|
-
marker.on('dragend', this._onDragEnd, marker);
|
14
|
-
this._toggleMarkerHighlight();
|
15
|
-
},
|
16
|
-
|
17
|
-
removeHooks: function () {
|
18
|
-
var marker = this._marker;
|
19
|
-
|
20
|
-
marker.dragging.disable();
|
21
|
-
marker.off('dragend', this._onDragEnd, marker);
|
22
|
-
this._toggleMarkerHighlight();
|
23
|
-
},
|
24
|
-
|
25
|
-
_onDragEnd: function (e) {
|
26
|
-
var layer = e.target;
|
27
|
-
layer.edited = true;
|
28
|
-
},
|
29
|
-
|
30
|
-
_toggleMarkerHighlight: function () {
|
31
|
-
|
32
|
-
// Don't do anything if this layer is a marker but doesn't have an icon. Markers
|
33
|
-
// should usually have icons. If using Leaflet.draw with Leafler.markercluster there
|
34
|
-
// is a chance that a marker doesn't.
|
35
|
-
if (!this._icon) {
|
36
|
-
return;
|
37
|
-
}
|
38
|
-
|
39
|
-
// This is quite naughty, but I don't see another way of doing it. (short of setting a new icon)
|
40
|
-
var icon = this._icon;
|
41
|
-
|
42
|
-
icon.style.display = 'none';
|
43
|
-
|
44
|
-
if (L.DomUtil.hasClass(icon, 'leaflet-edit-marker-selected')) {
|
45
|
-
L.DomUtil.removeClass(icon, 'leaflet-edit-marker-selected');
|
46
|
-
// Offset as the border will make the icon move.
|
47
|
-
this._offsetMarker(icon, -4);
|
48
|
-
|
49
|
-
} else {
|
50
|
-
L.DomUtil.addClass(icon, 'leaflet-edit-marker-selected');
|
51
|
-
// Offset as the border will make the icon move.
|
52
|
-
this._offsetMarker(icon, 4);
|
53
|
-
}
|
54
|
-
|
55
|
-
icon.style.display = '';
|
56
|
-
},
|
57
|
-
|
58
|
-
_offsetMarker: function (icon, offset) {
|
59
|
-
var iconMarginTop = parseInt(icon.style.marginTop, 10) - offset,
|
60
|
-
iconMarginLeft = parseInt(icon.style.marginLeft, 10) - offset;
|
61
|
-
|
62
|
-
icon.style.marginTop = iconMarginTop + 'px';
|
63
|
-
icon.style.marginLeft = iconMarginLeft + 'px';
|
64
|
-
}
|
65
|
-
});
|
66
|
-
|
67
|
-
L.Marker.addInitHook(function () {
|
68
|
-
if (L.Edit.Marker) {
|
69
|
-
this.editing = new L.Edit.Marker(this);
|
70
|
-
|
71
|
-
if (this.options.editable) {
|
72
|
-
this.editing.enable();
|
73
|
-
}
|
74
|
-
}
|
75
|
-
});
|
@@ -1,112 +0,0 @@
|
|
1
|
-
/*
|
2
|
-
* L.Control.Scale is used for displaying metric/imperial scale on the map.
|
3
|
-
*/
|
4
|
-
|
5
|
-
L.Control.Scale = L.Control.extend({
|
6
|
-
options: {
|
7
|
-
position: 'bottomleft',
|
8
|
-
maxWidth: 100,
|
9
|
-
metric: true,
|
10
|
-
imperial: true,
|
11
|
-
updateWhenIdle: false
|
12
|
-
},
|
13
|
-
|
14
|
-
onAdd: function (map) {
|
15
|
-
this._map = map;
|
16
|
-
|
17
|
-
var className = 'leaflet-control-scale',
|
18
|
-
container = L.DomUtil.create('div', className),
|
19
|
-
options = this.options;
|
20
|
-
|
21
|
-
this._addScales(options, className, container);
|
22
|
-
|
23
|
-
map.on(options.updateWhenIdle ? 'moveend' : 'move', this._update, this);
|
24
|
-
map.whenReady(this._update, this);
|
25
|
-
|
26
|
-
return container;
|
27
|
-
},
|
28
|
-
|
29
|
-
onRemove: function (map) {
|
30
|
-
map.off(this.options.updateWhenIdle ? 'moveend' : 'move', this._update, this);
|
31
|
-
},
|
32
|
-
|
33
|
-
_addScales: function (options, className, container) {
|
34
|
-
if (options.metric) {
|
35
|
-
this._mScale = L.DomUtil.create('div', className + '-line', container);
|
36
|
-
}
|
37
|
-
if (options.imperial) {
|
38
|
-
this._iScale = L.DomUtil.create('div', className + '-line', container);
|
39
|
-
}
|
40
|
-
},
|
41
|
-
|
42
|
-
_update: function () {
|
43
|
-
var bounds = this._map.getBounds(),
|
44
|
-
centerLat = bounds.getCenter().lat,
|
45
|
-
halfWorldMeters = 6378137 * Math.PI * Math.cos(centerLat * Math.PI / 180),
|
46
|
-
dist = halfWorldMeters * (bounds.getNorthEast().lng - bounds.getSouthWest().lng) / 180,
|
47
|
-
|
48
|
-
size = this._map.getSize(),
|
49
|
-
options = this.options,
|
50
|
-
maxMeters = 0;
|
51
|
-
|
52
|
-
if (size.x > 0) {
|
53
|
-
maxMeters = dist * (options.maxWidth / size.x);
|
54
|
-
}
|
55
|
-
|
56
|
-
this._updateScales(options, maxMeters);
|
57
|
-
},
|
58
|
-
|
59
|
-
_updateScales: function (options, maxMeters) {
|
60
|
-
if (options.metric && maxMeters) {
|
61
|
-
this._updateMetric(maxMeters);
|
62
|
-
}
|
63
|
-
|
64
|
-
if (options.imperial && maxMeters) {
|
65
|
-
this._updateImperial(maxMeters);
|
66
|
-
}
|
67
|
-
},
|
68
|
-
|
69
|
-
_updateMetric: function (maxMeters) {
|
70
|
-
var meters = this._getRoundNum(maxMeters);
|
71
|
-
|
72
|
-
this._mScale.style.width = this._getScaleWidth(meters / maxMeters) + 'px';
|
73
|
-
this._mScale.innerHTML = meters < 1000 ? meters + ' m' : (meters / 1000) + ' km';
|
74
|
-
},
|
75
|
-
|
76
|
-
_updateImperial: function (maxMeters) {
|
77
|
-
var maxFeet = maxMeters * 3.2808399,
|
78
|
-
scale = this._iScale,
|
79
|
-
maxMiles, miles, feet;
|
80
|
-
|
81
|
-
if (maxFeet > 5280) {
|
82
|
-
maxMiles = maxFeet / 5280;
|
83
|
-
miles = this._getRoundNum(maxMiles);
|
84
|
-
|
85
|
-
scale.style.width = this._getScaleWidth(miles / maxMiles) + 'px';
|
86
|
-
scale.innerHTML = miles + ' mi';
|
87
|
-
|
88
|
-
} else {
|
89
|
-
feet = this._getRoundNum(maxFeet);
|
90
|
-
|
91
|
-
scale.style.width = this._getScaleWidth(feet / maxFeet) + 'px';
|
92
|
-
scale.innerHTML = feet + ' ft';
|
93
|
-
}
|
94
|
-
},
|
95
|
-
|
96
|
-
_getScaleWidth: function (ratio) {
|
97
|
-
return Math.round(this.options.maxWidth * ratio) - 10;
|
98
|
-
},
|
99
|
-
|
100
|
-
_getRoundNum: function (num) {
|
101
|
-
var pow10 = Math.pow(10, (Math.floor(num) + '').length - 1),
|
102
|
-
d = num / pow10;
|
103
|
-
|
104
|
-
d = d >= 10 ? 10 : d >= 5 ? 5 : d >= 3 ? 3 : d >= 2 ? 2 : 1;
|
105
|
-
|
106
|
-
return pow10 * d;
|
107
|
-
}
|
108
|
-
});
|
109
|
-
|
110
|
-
L.control.scale = function (options) {
|
111
|
-
return new L.Control.Scale(options);
|
112
|
-
};
|
@@ -1,66 +0,0 @@
|
|
1
|
-
/*
|
2
|
-
* L.Browser handles different browser and feature detections for internal Leaflet use.
|
3
|
-
*/
|
4
|
-
|
5
|
-
(function () {
|
6
|
-
|
7
|
-
var ie = 'ActiveXObject' in window,
|
8
|
-
ielt9 = ie && !document.addEventListener,
|
9
|
-
|
10
|
-
// terrible browser detection to work around Safari / iOS / Android browser bugs
|
11
|
-
ua = navigator.userAgent.toLowerCase(),
|
12
|
-
webkit = ua.indexOf('webkit') !== -1,
|
13
|
-
chrome = ua.indexOf('chrome') !== -1,
|
14
|
-
phantomjs = ua.indexOf('phantom') !== -1,
|
15
|
-
android = ua.indexOf('android') !== -1,
|
16
|
-
android23 = ua.search('android [23]') !== -1,
|
17
|
-
gecko = ua.indexOf('gecko') !== -1,
|
18
|
-
|
19
|
-
mobile = typeof orientation !== undefined + '',
|
20
|
-
msPointer = !window.PointerEvent && window.MSPointerEvent,
|
21
|
-
pointer = (window.PointerEvent && window.navigator.pointerEnabled) ||
|
22
|
-
msPointer,
|
23
|
-
retina = ('devicePixelRatio' in window && window.devicePixelRatio > 1) ||
|
24
|
-
('matchMedia' in window && window.matchMedia('(min-resolution:144dpi)') &&
|
25
|
-
window.matchMedia('(min-resolution:144dpi)').matches),
|
26
|
-
|
27
|
-
doc = document.documentElement,
|
28
|
-
ie3d = ie && ('transition' in doc.style),
|
29
|
-
webkit3d = ('WebKitCSSMatrix' in window) && ('m11' in new window.WebKitCSSMatrix()) && !android23,
|
30
|
-
gecko3d = 'MozPerspective' in doc.style,
|
31
|
-
opera3d = 'OTransition' in doc.style,
|
32
|
-
any3d = !window.L_DISABLE_3D && (ie3d || webkit3d || gecko3d || opera3d) && !phantomjs;
|
33
|
-
|
34
|
-
var touch = !window.L_NO_TOUCH && !phantomjs && (pointer || 'ontouchstart' in window ||
|
35
|
-
(window.DocumentTouch && document instanceof window.DocumentTouch));
|
36
|
-
|
37
|
-
L.Browser = {
|
38
|
-
ie: ie,
|
39
|
-
ielt9: ielt9,
|
40
|
-
webkit: webkit,
|
41
|
-
gecko: gecko && !webkit && !window.opera && !ie,
|
42
|
-
|
43
|
-
android: android,
|
44
|
-
android23: android23,
|
45
|
-
|
46
|
-
chrome: chrome,
|
47
|
-
|
48
|
-
ie3d: ie3d,
|
49
|
-
webkit3d: webkit3d,
|
50
|
-
gecko3d: gecko3d,
|
51
|
-
opera3d: opera3d,
|
52
|
-
any3d: any3d,
|
53
|
-
|
54
|
-
mobile: mobile,
|
55
|
-
mobileWebkit: mobile && webkit,
|
56
|
-
mobileWebkit3d: mobile && webkit3d,
|
57
|
-
mobileOpera: mobile && window.opera,
|
58
|
-
|
59
|
-
touch: touch,
|
60
|
-
msPointer: msPointer,
|
61
|
-
pointer: pointer,
|
62
|
-
|
63
|
-
retina: retina
|
64
|
-
};
|
65
|
-
|
66
|
-
}());
|
@@ -1,178 +0,0 @@
|
|
1
|
-
/*
|
2
|
-
* L.Mixin.Events is used to add custom events functionality to Leaflet classes.
|
3
|
-
*/
|
4
|
-
|
5
|
-
var eventsKey = '_leaflet_events';
|
6
|
-
|
7
|
-
L.Mixin = {};
|
8
|
-
|
9
|
-
L.Mixin.Events = {
|
10
|
-
|
11
|
-
addEventListener: function (types, fn, context) { // (String, Function[, Object]) or (Object[, Object])
|
12
|
-
|
13
|
-
// types can be a map of types/handlers
|
14
|
-
if (L.Util.invokeEach(types, this.addEventListener, this, fn, context)) { return this; }
|
15
|
-
|
16
|
-
var events = this[eventsKey] = this[eventsKey] || {},
|
17
|
-
contextId = context && context !== this && L.stamp(context),
|
18
|
-
i, len, event, type, indexKey, indexLenKey, typeIndex;
|
19
|
-
|
20
|
-
// types can be a string of space-separated words
|
21
|
-
types = L.Util.splitWords(types);
|
22
|
-
|
23
|
-
for (i = 0, len = types.length; i < len; i++) {
|
24
|
-
event = {
|
25
|
-
action: fn,
|
26
|
-
context: context || this
|
27
|
-
};
|
28
|
-
type = types[i];
|
29
|
-
|
30
|
-
if (contextId) {
|
31
|
-
// store listeners of a particular context in a separate hash (if it has an id)
|
32
|
-
// gives a major performance boost when removing thousands of map layers
|
33
|
-
|
34
|
-
indexKey = type + '_idx';
|
35
|
-
indexLenKey = indexKey + '_len';
|
36
|
-
|
37
|
-
typeIndex = events[indexKey] = events[indexKey] || {};
|
38
|
-
|
39
|
-
if (!typeIndex[contextId]) {
|
40
|
-
typeIndex[contextId] = [];
|
41
|
-
|
42
|
-
// keep track of the number of keys in the index to quickly check if it's empty
|
43
|
-
events[indexLenKey] = (events[indexLenKey] || 0) + 1;
|
44
|
-
}
|
45
|
-
|
46
|
-
typeIndex[contextId].push(event);
|
47
|
-
|
48
|
-
|
49
|
-
} else {
|
50
|
-
events[type] = events[type] || [];
|
51
|
-
events[type].push(event);
|
52
|
-
}
|
53
|
-
}
|
54
|
-
|
55
|
-
return this;
|
56
|
-
},
|
57
|
-
|
58
|
-
hasEventListeners: function (type) { // (String) -> Boolean
|
59
|
-
var events = this[eventsKey];
|
60
|
-
return !!events && ((type in events && events[type].length > 0) ||
|
61
|
-
(type + '_idx' in events && events[type + '_idx_len'] > 0));
|
62
|
-
},
|
63
|
-
|
64
|
-
removeEventListener: function (types, fn, context) { // ([String, Function, Object]) or (Object[, Object])
|
65
|
-
|
66
|
-
if (!this[eventsKey]) {
|
67
|
-
return this;
|
68
|
-
}
|
69
|
-
|
70
|
-
if (!types) {
|
71
|
-
return this.clearAllEventListeners();
|
72
|
-
}
|
73
|
-
|
74
|
-
if (L.Util.invokeEach(types, this.removeEventListener, this, fn, context)) { return this; }
|
75
|
-
|
76
|
-
var events = this[eventsKey],
|
77
|
-
contextId = context && context !== this && L.stamp(context),
|
78
|
-
i, len, type, listeners, j, indexKey, indexLenKey, typeIndex, removed;
|
79
|
-
|
80
|
-
types = L.Util.splitWords(types);
|
81
|
-
|
82
|
-
for (i = 0, len = types.length; i < len; i++) {
|
83
|
-
type = types[i];
|
84
|
-
indexKey = type + '_idx';
|
85
|
-
indexLenKey = indexKey + '_len';
|
86
|
-
|
87
|
-
typeIndex = events[indexKey];
|
88
|
-
|
89
|
-
if (!fn) {
|
90
|
-
// clear all listeners for a type if function isn't specified
|
91
|
-
delete events[type];
|
92
|
-
delete events[indexKey];
|
93
|
-
delete events[indexLenKey];
|
94
|
-
|
95
|
-
} else {
|
96
|
-
listeners = contextId && typeIndex ? typeIndex[contextId] : events[type];
|
97
|
-
|
98
|
-
if (listeners) {
|
99
|
-
for (j = listeners.length - 1; j >= 0; j--) {
|
100
|
-
if ((listeners[j].action === fn) && (!context || (listeners[j].context === context))) {
|
101
|
-
removed = listeners.splice(j, 1);
|
102
|
-
// set the old action to a no-op, because it is possible
|
103
|
-
// that the listener is being iterated over as part of a dispatch
|
104
|
-
removed[0].action = L.Util.falseFn;
|
105
|
-
}
|
106
|
-
}
|
107
|
-
|
108
|
-
if (context && typeIndex && (listeners.length === 0)) {
|
109
|
-
delete typeIndex[contextId];
|
110
|
-
events[indexLenKey]--;
|
111
|
-
}
|
112
|
-
}
|
113
|
-
}
|
114
|
-
}
|
115
|
-
|
116
|
-
return this;
|
117
|
-
},
|
118
|
-
|
119
|
-
clearAllEventListeners: function () {
|
120
|
-
delete this[eventsKey];
|
121
|
-
return this;
|
122
|
-
},
|
123
|
-
|
124
|
-
fireEvent: function (type, data) { // (String[, Object])
|
125
|
-
if (!this.hasEventListeners(type)) {
|
126
|
-
return this;
|
127
|
-
}
|
128
|
-
|
129
|
-
var event = L.Util.extend({}, data, { type: type, target: this });
|
130
|
-
|
131
|
-
var events = this[eventsKey],
|
132
|
-
listeners, i, len, typeIndex, contextId;
|
133
|
-
|
134
|
-
if (events[type]) {
|
135
|
-
// make sure adding/removing listeners inside other listeners won't cause infinite loop
|
136
|
-
listeners = events[type].slice();
|
137
|
-
|
138
|
-
for (i = 0, len = listeners.length; i < len; i++) {
|
139
|
-
listeners[i].action.call(listeners[i].context, event);
|
140
|
-
}
|
141
|
-
}
|
142
|
-
|
143
|
-
// fire event for the context-indexed listeners as well
|
144
|
-
typeIndex = events[type + '_idx'];
|
145
|
-
|
146
|
-
for (contextId in typeIndex) {
|
147
|
-
listeners = typeIndex[contextId].slice();
|
148
|
-
|
149
|
-
if (listeners) {
|
150
|
-
for (i = 0, len = listeners.length; i < len; i++) {
|
151
|
-
listeners[i].action.call(listeners[i].context, event);
|
152
|
-
}
|
153
|
-
}
|
154
|
-
}
|
155
|
-
|
156
|
-
return this;
|
157
|
-
},
|
158
|
-
|
159
|
-
addOneTimeEventListener: function (types, fn, context) {
|
160
|
-
|
161
|
-
if (L.Util.invokeEach(types, this.addOneTimeEventListener, this, fn, context)) { return this; }
|
162
|
-
|
163
|
-
var handler = L.bind(function () {
|
164
|
-
this
|
165
|
-
.removeEventListener(types, fn, context)
|
166
|
-
.removeEventListener(types, handler, context);
|
167
|
-
}, this);
|
168
|
-
|
169
|
-
return this
|
170
|
-
.addEventListener(types, fn, context)
|
171
|
-
.addEventListener(types, handler, context);
|
172
|
-
}
|
173
|
-
};
|
174
|
-
|
175
|
-
L.Mixin.Events.on = L.Mixin.Events.addEventListener;
|
176
|
-
L.Mixin.Events.off = L.Mixin.Events.removeEventListener;
|
177
|
-
L.Mixin.Events.once = L.Mixin.Events.addOneTimeEventListener;
|
178
|
-
L.Mixin.Events.fire = L.Mixin.Events.fireEvent;
|