leaflet-js 0.7.9 → 0.8.dev2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- 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
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
{
|
|
2
|
+
"browser": true,
|
|
3
|
+
"node": true,
|
|
4
|
+
"predef": ["define", "L", "expect", "describe", "it", "sinon", "happen", "beforeEach", "afterEach"],
|
|
5
|
+
"strict": false,
|
|
6
|
+
"bitwise": true,
|
|
7
|
+
"camelcase": true,
|
|
8
|
+
"curly": true,
|
|
9
|
+
"eqeqeq": true,
|
|
10
|
+
"forin": false,
|
|
11
|
+
"immed": true,
|
|
12
|
+
"latedef": true,
|
|
13
|
+
"newcap": true,
|
|
14
|
+
"noarg": true,
|
|
15
|
+
"noempty": true,
|
|
16
|
+
"nonew": true,
|
|
17
|
+
"undef": true,
|
|
18
|
+
// "unused": true,
|
|
19
|
+
// "quotmark": "single",
|
|
20
|
+
"indent": 4,
|
|
21
|
+
"trailing": true,
|
|
22
|
+
"white": true,
|
|
23
|
+
"smarttabs": true
|
|
24
|
+
// "maxlen": 120
|
|
25
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
describe("Control.Draw", function () {
|
|
2
|
+
var map, control, container;
|
|
3
|
+
|
|
4
|
+
beforeEach(function () {
|
|
5
|
+
map = L.map(document.createElement('div'));
|
|
6
|
+
control = new L.Control.Draw({});
|
|
7
|
+
map.addControl(control);
|
|
8
|
+
container = control.getContainer();
|
|
9
|
+
});
|
|
10
|
+
|
|
11
|
+
it("exists", function () {
|
|
12
|
+
expect(container.innerHTML).to.be.ok();
|
|
13
|
+
});
|
|
14
|
+
});
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
describe("L.GeometryUtil", function () {
|
|
2
|
+
var map, control, container;
|
|
3
|
+
|
|
4
|
+
it("geodesicArea", function () {
|
|
5
|
+
expect(L.GeometryUtil.geodesicArea([
|
|
6
|
+
{ lat: 0, lng: 0 },
|
|
7
|
+
{ lat: 0, lng: 10 },
|
|
8
|
+
{ lat: 10, lng: 10 },
|
|
9
|
+
{ lat: 10, lng: 0 },
|
|
10
|
+
{ lat: 0, lng: 0 }
|
|
11
|
+
])).to.eql(1232921098571.292);
|
|
12
|
+
});
|
|
13
|
+
|
|
14
|
+
describe("readableDistance", function () {
|
|
15
|
+
it("metric", function () {
|
|
16
|
+
expect(L.GeometryUtil.readableDistance(1000, true)).to.eql('1000 m');
|
|
17
|
+
expect(L.GeometryUtil.readableDistance(1500, true)).to.eql('1.50 km');
|
|
18
|
+
});
|
|
19
|
+
|
|
20
|
+
it("imperial", function () {
|
|
21
|
+
expect(L.GeometryUtil.readableDistance(1609.3488537961)).to.eql('1760 yd');
|
|
22
|
+
expect(L.GeometryUtil.readableDistance(1610.3488537961)).to.eql('1.00 miles');
|
|
23
|
+
});
|
|
24
|
+
});
|
|
25
|
+
});
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
describe("L.LatLngUtil", function () {
|
|
2
|
+
it("cloneLatLngs", function () {
|
|
3
|
+
var latLngs = [{ lat: 0, lng: 0 }],
|
|
4
|
+
clone = L.LatLngUtil.cloneLatLngs(latLngs);
|
|
5
|
+
|
|
6
|
+
expect(clone[0].lat).to.eql(latLngs[0].lat);
|
|
7
|
+
|
|
8
|
+
clone[0].lat = 10;
|
|
9
|
+
expect(latLngs[0].lat).to.eql(0);
|
|
10
|
+
});
|
|
11
|
+
});
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
if (!Array.prototype.map) {
|
|
2
|
+
Array.prototype.map = function (fun /*, thisp */) {
|
|
3
|
+
"use strict";
|
|
4
|
+
|
|
5
|
+
if (this === void 0 || this === null) {
|
|
6
|
+
throw new TypeError();
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
var t = Object(this),
|
|
10
|
+
// jshint bitwise: false
|
|
11
|
+
len = t.length >>> 0;
|
|
12
|
+
|
|
13
|
+
if (typeof fun !== 'function') {
|
|
14
|
+
throw new TypeError();
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
var res = new Array(len),
|
|
18
|
+
thisp = arguments[1];
|
|
19
|
+
|
|
20
|
+
for (var i = 0; i < len; i++) {
|
|
21
|
+
if (i in t) {
|
|
22
|
+
res[i] = fun.call(thisp, t[i], i, t);
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
return res;
|
|
27
|
+
};
|
|
28
|
+
}
|
|
@@ -13,27 +13,27 @@ L.Control.Draw = L.Control.extend({
|
|
|
13
13
|
|
|
14
14
|
L.Control.prototype.initialize.call(this, options);
|
|
15
15
|
|
|
16
|
-
var toolbar;
|
|
16
|
+
var id, toolbar;
|
|
17
17
|
|
|
18
18
|
this._toolbars = {};
|
|
19
19
|
|
|
20
20
|
// Initialize toolbars
|
|
21
21
|
if (L.DrawToolbar && this.options.draw) {
|
|
22
22
|
toolbar = new L.DrawToolbar(this.options.draw);
|
|
23
|
-
|
|
24
|
-
this._toolbars[
|
|
23
|
+
id = L.stamp(toolbar);
|
|
24
|
+
this._toolbars[id] = toolbar;
|
|
25
25
|
|
|
26
26
|
// Listen for when toolbar is enabled
|
|
27
|
-
this._toolbars[
|
|
27
|
+
this._toolbars[id].on('enable', this._toolbarEnabled, this);
|
|
28
28
|
}
|
|
29
29
|
|
|
30
30
|
if (L.EditToolbar && this.options.edit) {
|
|
31
31
|
toolbar = new L.EditToolbar(this.options.edit);
|
|
32
|
-
|
|
33
|
-
this._toolbars[
|
|
32
|
+
id = L.stamp(toolbar);
|
|
33
|
+
this._toolbars[id] = toolbar;
|
|
34
34
|
|
|
35
35
|
// Listen for when toolbar is enabled
|
|
36
|
-
this._toolbars[
|
|
36
|
+
this._toolbars[id].on('enable', this._toolbarEnabled, this);
|
|
37
37
|
}
|
|
38
38
|
},
|
|
39
39
|
|
|
@@ -81,10 +81,10 @@ L.Control.Draw = L.Control.extend({
|
|
|
81
81
|
},
|
|
82
82
|
|
|
83
83
|
_toolbarEnabled: function (e) {
|
|
84
|
-
var
|
|
84
|
+
var id = '' + L.stamp(e.target);
|
|
85
85
|
|
|
86
86
|
for (var toolbarId in this._toolbars) {
|
|
87
|
-
if (this._toolbars
|
|
87
|
+
if (this._toolbars.hasOwnProperty(toolbarId) && toolbarId !== id) {
|
|
88
88
|
this._toolbars[toolbarId].disable();
|
|
89
89
|
}
|
|
90
90
|
}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
@@ -56,7 +56,7 @@ L.Draw.Circle = L.Draw.SimpleShape.extend({
|
|
|
56
56
|
|
|
57
57
|
this._tooltip.updateContent({
|
|
58
58
|
text: this._endLabelText,
|
|
59
|
-
subtext: showRadius ?
|
|
59
|
+
subtext: showRadius ? 'Radius: ' + L.GeometryUtil.readableDistance(radius, useMetric) : ''
|
|
60
60
|
});
|
|
61
61
|
}
|
|
62
62
|
}
|
|
@@ -19,11 +19,11 @@ L.Draw.Feature = L.Handler.extend({
|
|
|
19
19
|
enable: function () {
|
|
20
20
|
if (this._enabled) { return; }
|
|
21
21
|
|
|
22
|
-
L.Handler.prototype.enable.call(this);
|
|
23
|
-
|
|
24
22
|
this.fire('enabled', { handler: this.type });
|
|
25
23
|
|
|
26
24
|
this._map.fire('draw:drawstart', { layerType: this.type });
|
|
25
|
+
|
|
26
|
+
L.Handler.prototype.enable.call(this);
|
|
27
27
|
},
|
|
28
28
|
|
|
29
29
|
disable: function () {
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
@@ -13,8 +13,7 @@ L.Draw.Rectangle = L.Draw.SimpleShape.extend({
|
|
|
13
13
|
fillColor: null, //same as color by default
|
|
14
14
|
fillOpacity: 0.2,
|
|
15
15
|
clickable: true
|
|
16
|
-
}
|
|
17
|
-
metric: true // Whether to use the metric meaurement system or imperial
|
|
16
|
+
}
|
|
18
17
|
},
|
|
19
18
|
|
|
20
19
|
initialize: function (map, options) {
|
|
@@ -38,22 +37,5 @@ L.Draw.Rectangle = L.Draw.SimpleShape.extend({
|
|
|
38
37
|
_fireCreatedEvent: function () {
|
|
39
38
|
var rectangle = new L.Rectangle(this._shape.getBounds(), this.options.shapeOptions);
|
|
40
39
|
L.Draw.SimpleShape.prototype._fireCreatedEvent.call(this, rectangle);
|
|
41
|
-
},
|
|
42
|
-
|
|
43
|
-
_getTooltipText: function () {
|
|
44
|
-
var tooltipText = L.Draw.SimpleShape.prototype._getTooltipText.call(this),
|
|
45
|
-
shape = this._shape,
|
|
46
|
-
latLngs, area, subtext;
|
|
47
|
-
|
|
48
|
-
if (shape) {
|
|
49
|
-
latLngs = this._shape.getLatLngs();
|
|
50
|
-
area = L.GeometryUtil.geodesicArea(latLngs);
|
|
51
|
-
subtext = L.GeometryUtil.readableArea(area, this.options.metric);
|
|
52
|
-
}
|
|
53
|
-
|
|
54
|
-
return {
|
|
55
|
-
text: tooltipText.text,
|
|
56
|
-
subtext: subtext
|
|
57
|
-
};
|
|
58
40
|
}
|
|
59
41
|
});
|
|
@@ -56,12 +56,6 @@ L.Draw.SimpleShape = L.Draw.Feature.extend({
|
|
|
56
56
|
this._isDrawing = false;
|
|
57
57
|
},
|
|
58
58
|
|
|
59
|
-
_getTooltipText: function () {
|
|
60
|
-
return {
|
|
61
|
-
text: this._endLabelText
|
|
62
|
-
};
|
|
63
|
-
},
|
|
64
|
-
|
|
65
59
|
_onMouseDown: function (e) {
|
|
66
60
|
this._isDrawing = true;
|
|
67
61
|
this._startLatLng = e.latlng;
|
|
@@ -76,7 +70,7 @@ L.Draw.SimpleShape = L.Draw.Feature.extend({
|
|
|
76
70
|
|
|
77
71
|
this._tooltip.updatePosition(latlng);
|
|
78
72
|
if (this._isDrawing) {
|
|
79
|
-
this._tooltip.updateContent(this.
|
|
73
|
+
this._tooltip.updateContent({ text: this._endLabelText });
|
|
80
74
|
this._drawShape(latlng);
|
|
81
75
|
}
|
|
82
76
|
},
|
|
@@ -3,10 +3,6 @@
|
|
|
3
3
|
});*/
|
|
4
4
|
|
|
5
5
|
L.EditToolbar = L.Toolbar.extend({
|
|
6
|
-
statics: {
|
|
7
|
-
TYPE: 'edit'
|
|
8
|
-
},
|
|
9
|
-
|
|
10
6
|
options: {
|
|
11
7
|
edit: {
|
|
12
8
|
selectedPathOptions: {
|
|
@@ -16,10 +12,7 @@ L.EditToolbar = L.Toolbar.extend({
|
|
|
16
12
|
|
|
17
13
|
fill: true,
|
|
18
14
|
fillColor: '#fe57a1',
|
|
19
|
-
fillOpacity: 0.1
|
|
20
|
-
|
|
21
|
-
// Whether to user the existing layers color
|
|
22
|
-
maintainColor: false
|
|
15
|
+
fillOpacity: 0.1
|
|
23
16
|
}
|
|
24
17
|
},
|
|
25
18
|
remove: {},
|
|
@@ -32,7 +25,7 @@ L.EditToolbar = L.Toolbar.extend({
|
|
|
32
25
|
if (typeof options.edit.selectedPathOptions === 'undefined') {
|
|
33
26
|
options.edit.selectedPathOptions = this.options.edit.selectedPathOptions;
|
|
34
27
|
}
|
|
35
|
-
options.edit
|
|
28
|
+
options.edit = L.extend({}, this.options.edit, options.edit);
|
|
36
29
|
}
|
|
37
30
|
|
|
38
31
|
if (options.remove) {
|
|
File without changes
|
|
@@ -18,14 +18,6 @@ L.Edit.Poly = L.Handler.extend({
|
|
|
18
18
|
},
|
|
19
19
|
|
|
20
20
|
addHooks: function () {
|
|
21
|
-
var poly = this._poly;
|
|
22
|
-
|
|
23
|
-
if (!(poly instanceof L.Polygon)) {
|
|
24
|
-
poly.options.editing.fill = false;
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
poly.setStyle(poly.options.editing);
|
|
28
|
-
|
|
29
21
|
if (this._poly._map) {
|
|
30
22
|
if (!this._markerGroup) {
|
|
31
23
|
this._initMarkers();
|
|
@@ -35,12 +27,8 @@ L.Edit.Poly = L.Handler.extend({
|
|
|
35
27
|
},
|
|
36
28
|
|
|
37
29
|
removeHooks: function () {
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
poly.setStyle(poly.options.original);
|
|
41
|
-
|
|
42
|
-
if (poly._map) {
|
|
43
|
-
poly._map.removeLayer(this._markerGroup);
|
|
30
|
+
if (this._poly._map) {
|
|
31
|
+
this._poly._map.removeLayer(this._markerGroup);
|
|
44
32
|
delete this._markerGroup;
|
|
45
33
|
delete this._markers;
|
|
46
34
|
}
|
|
File without changes
|
|
@@ -18,12 +18,8 @@ L.Edit.SimpleShape = L.Handler.extend({
|
|
|
18
18
|
},
|
|
19
19
|
|
|
20
20
|
addHooks: function () {
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
shape.setStyle(shape.options.editing);
|
|
24
|
-
|
|
25
|
-
if (shape._map) {
|
|
26
|
-
this._map = shape._map;
|
|
21
|
+
if (this._shape._map) {
|
|
22
|
+
this._map = this._shape._map;
|
|
27
23
|
|
|
28
24
|
if (!this._markerGroup) {
|
|
29
25
|
this._initMarkers();
|
|
@@ -33,11 +29,7 @@ L.Edit.SimpleShape = L.Handler.extend({
|
|
|
33
29
|
},
|
|
34
30
|
|
|
35
31
|
removeHooks: function () {
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
shape.setStyle(shape.options.original);
|
|
39
|
-
|
|
40
|
-
if (shape._map) {
|
|
32
|
+
if (this._shape._map) {
|
|
41
33
|
this._unbindMarker(this._moveMarker);
|
|
42
34
|
|
|
43
35
|
for (var i = 0, l = this._resizeMarkers.length; i < l; i++) {
|
|
@@ -57,7 +57,7 @@ L.EditToolbar.Delete = L.Handler.extend({
|
|
|
57
57
|
map.getContainer().focus();
|
|
58
58
|
|
|
59
59
|
this._deletableLayers.eachLayer(this._enableLayerDelete, this);
|
|
60
|
-
this._deletedLayers = new L.
|
|
60
|
+
this._deletedLayers = new L.layerGroup();
|
|
61
61
|
|
|
62
62
|
this._tooltip = new L.Tooltip(this._map);
|
|
63
63
|
this._tooltip.updateContent({ text: L.drawLocal.edit.handlers.remove.tooltip.text });
|
|
@@ -82,7 +82,6 @@ L.EditToolbar.Delete = L.Handler.extend({
|
|
|
82
82
|
// Iterate of the deleted layers and add them back into the featureGroup
|
|
83
83
|
this._deletedLayers.eachLayer(function (layer) {
|
|
84
84
|
this._deletableLayers.addLayer(layer);
|
|
85
|
-
layer.fire('revert-deleted', { layer: layer });
|
|
86
85
|
}, this);
|
|
87
86
|
},
|
|
88
87
|
|
|
@@ -111,8 +110,6 @@ L.EditToolbar.Delete = L.Handler.extend({
|
|
|
111
110
|
this._deletableLayers.removeLayer(layer);
|
|
112
111
|
|
|
113
112
|
this._deletedLayers.addLayer(layer);
|
|
114
|
-
|
|
115
|
-
layer.fire('deleted');
|
|
116
113
|
},
|
|
117
114
|
|
|
118
115
|
_onMouseMove: function (e) {
|
|
@@ -8,7 +8,8 @@ L.EditToolbar.Edit = L.Handler.extend({
|
|
|
8
8
|
initialize: function (map, options) {
|
|
9
9
|
L.Handler.prototype.initialize.call(this, map);
|
|
10
10
|
|
|
11
|
-
|
|
11
|
+
// Set options to the default unless already set
|
|
12
|
+
this._selectedPathOptions = options.selectedPathOptions;
|
|
12
13
|
|
|
13
14
|
// Store the selectable layer group for ease of access
|
|
14
15
|
this._featureGroup = options.featureGroup;
|
|
@@ -134,43 +135,108 @@ L.EditToolbar.Edit = L.Handler.extend({
|
|
|
134
135
|
} else if (layer instanceof L.Marker) { // Marker
|
|
135
136
|
layer.setLatLng(this._uneditedLayerProps[id].latlng);
|
|
136
137
|
}
|
|
138
|
+
}
|
|
139
|
+
},
|
|
140
|
+
|
|
141
|
+
_toggleMarkerHighlight: function (marker) {
|
|
142
|
+
if (!marker._icon) {
|
|
143
|
+
return;
|
|
144
|
+
}
|
|
145
|
+
// This is quite naughty, but I don't see another way of doing it. (short of setting a new icon)
|
|
146
|
+
var icon = marker._icon;
|
|
147
|
+
|
|
148
|
+
icon.style.display = 'none';
|
|
149
|
+
|
|
150
|
+
if (L.DomUtil.hasClass(icon, 'leaflet-edit-marker-selected')) {
|
|
151
|
+
L.DomUtil.removeClass(icon, 'leaflet-edit-marker-selected');
|
|
152
|
+
// Offset as the border will make the icon move.
|
|
153
|
+
this._offsetMarker(icon, -4);
|
|
137
154
|
|
|
138
|
-
|
|
155
|
+
} else {
|
|
156
|
+
L.DomUtil.addClass(icon, 'leaflet-edit-marker-selected');
|
|
157
|
+
// Offset as the border will make the icon move.
|
|
158
|
+
this._offsetMarker(icon, 4);
|
|
139
159
|
}
|
|
160
|
+
|
|
161
|
+
icon.style.display = '';
|
|
162
|
+
},
|
|
163
|
+
|
|
164
|
+
_offsetMarker: function (icon, offset) {
|
|
165
|
+
var iconMarginTop = parseInt(icon.style.marginTop, 10) - offset,
|
|
166
|
+
iconMarginLeft = parseInt(icon.style.marginLeft, 10) - offset;
|
|
167
|
+
|
|
168
|
+
icon.style.marginTop = iconMarginTop + 'px';
|
|
169
|
+
icon.style.marginLeft = iconMarginLeft + 'px';
|
|
140
170
|
},
|
|
141
171
|
|
|
142
172
|
_enableLayerEdit: function (e) {
|
|
143
173
|
var layer = e.layer || e.target || e,
|
|
174
|
+
isMarker = layer instanceof L.Marker,
|
|
144
175
|
pathOptions;
|
|
145
176
|
|
|
177
|
+
// Don't do anything if this layer is a marker but doesn't have an icon. Markers
|
|
178
|
+
// should usually have icons. If using Leaflet.draw with Leafler.markercluster there
|
|
179
|
+
// is a chance that a marker doesn't.
|
|
180
|
+
if (isMarker && !layer._icon) {
|
|
181
|
+
return;
|
|
182
|
+
}
|
|
183
|
+
|
|
146
184
|
// Back up this layer (if haven't before)
|
|
147
185
|
this._backupLayer(layer);
|
|
148
186
|
|
|
149
|
-
//
|
|
150
|
-
if (this.
|
|
151
|
-
pathOptions = L.Util.extend({}, this.
|
|
187
|
+
// Update layer style so appears editable
|
|
188
|
+
if (this._selectedPathOptions) {
|
|
189
|
+
pathOptions = L.Util.extend({}, this._selectedPathOptions);
|
|
152
190
|
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
191
|
+
if (isMarker) {
|
|
192
|
+
this._toggleMarkerHighlight(layer);
|
|
193
|
+
} else {
|
|
194
|
+
layer.options.previousOptions = L.Util.extend({ dashArray: null }, layer.options);
|
|
195
|
+
|
|
196
|
+
// Make sure that Polylines are not filled
|
|
197
|
+
if (!(layer instanceof L.Circle) && !(layer instanceof L.Polygon) && !(layer instanceof L.Rectangle)) {
|
|
198
|
+
pathOptions.fill = false;
|
|
199
|
+
}
|
|
158
200
|
|
|
159
|
-
|
|
160
|
-
|
|
201
|
+
layer.setStyle(pathOptions);
|
|
202
|
+
}
|
|
161
203
|
}
|
|
162
204
|
|
|
163
|
-
|
|
205
|
+
if (isMarker) {
|
|
206
|
+
layer.dragging.enable();
|
|
207
|
+
layer.on('dragend', this._onMarkerDragEnd);
|
|
208
|
+
} else {
|
|
209
|
+
layer.editing.enable();
|
|
210
|
+
}
|
|
164
211
|
},
|
|
165
212
|
|
|
166
213
|
_disableLayerEdit: function (e) {
|
|
167
214
|
var layer = e.layer || e.target || e;
|
|
168
|
-
|
|
169
215
|
layer.edited = false;
|
|
170
|
-
layer.editing.disable();
|
|
171
216
|
|
|
172
|
-
|
|
173
|
-
|
|
217
|
+
// Reset layer styles to that of before select
|
|
218
|
+
if (this._selectedPathOptions) {
|
|
219
|
+
if (layer instanceof L.Marker) {
|
|
220
|
+
this._toggleMarkerHighlight(layer);
|
|
221
|
+
} else {
|
|
222
|
+
// reset the layer style to what is was before being selected
|
|
223
|
+
layer.setStyle(layer.options.previousOptions);
|
|
224
|
+
// remove the cached options for the layer object
|
|
225
|
+
delete layer.options.previousOptions;
|
|
226
|
+
}
|
|
227
|
+
}
|
|
228
|
+
|
|
229
|
+
if (layer instanceof L.Marker) {
|
|
230
|
+
layer.dragging.disable();
|
|
231
|
+
layer.off('dragend', this._onMarkerDragEnd, this);
|
|
232
|
+
} else {
|
|
233
|
+
layer.editing.disable();
|
|
234
|
+
}
|
|
235
|
+
},
|
|
236
|
+
|
|
237
|
+
_onMarkerDragEnd: function (e) {
|
|
238
|
+
var layer = e.target;
|
|
239
|
+
layer.edited = true;
|
|
174
240
|
},
|
|
175
241
|
|
|
176
242
|
_onMouseMove: function (e) {
|