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
@@ -1,18 +0,0 @@
|
|
1
|
-
/*
|
2
|
-
* Extends L.Circle with Canvas-specific code.
|
3
|
-
*/
|
4
|
-
|
5
|
-
L.Circle.include(!L.Path.CANVAS ? {} : {
|
6
|
-
_drawPath: function () {
|
7
|
-
var p = this._point;
|
8
|
-
this._ctx.beginPath();
|
9
|
-
this._ctx.arc(p.x, p.y, this._radius, 0, Math.PI * 2, false);
|
10
|
-
},
|
11
|
-
|
12
|
-
_containsPoint: function (p) {
|
13
|
-
var center = this._point,
|
14
|
-
w2 = this.options.stroke ? this.options.weight / 2 : 0;
|
15
|
-
|
16
|
-
return (p.distanceTo(center) <= this._radius + w2);
|
17
|
-
}
|
18
|
-
});
|
@@ -1,204 +0,0 @@
|
|
1
|
-
/*
|
2
|
-
* Vector rendering for all browsers that support canvas.
|
3
|
-
*/
|
4
|
-
|
5
|
-
L.Browser.canvas = (function () {
|
6
|
-
return !!document.createElement('canvas').getContext;
|
7
|
-
}());
|
8
|
-
|
9
|
-
L.Path = (L.Path.SVG && !window.L_PREFER_CANVAS) || !L.Browser.canvas ? L.Path : L.Path.extend({
|
10
|
-
statics: {
|
11
|
-
//CLIP_PADDING: 0.02, // not sure if there's a need to set it to a small value
|
12
|
-
CANVAS: true,
|
13
|
-
SVG: false
|
14
|
-
},
|
15
|
-
|
16
|
-
redraw: function () {
|
17
|
-
if (this._map) {
|
18
|
-
this.projectLatlngs();
|
19
|
-
this._requestUpdate();
|
20
|
-
}
|
21
|
-
return this;
|
22
|
-
},
|
23
|
-
|
24
|
-
setStyle: function (style) {
|
25
|
-
L.setOptions(this, style);
|
26
|
-
|
27
|
-
if (this._map) {
|
28
|
-
this._updateStyle();
|
29
|
-
this._requestUpdate();
|
30
|
-
}
|
31
|
-
return this;
|
32
|
-
},
|
33
|
-
|
34
|
-
onRemove: function (map) {
|
35
|
-
map
|
36
|
-
.off('viewreset', this.projectLatlngs, this)
|
37
|
-
.off('moveend', this._updatePath, this);
|
38
|
-
|
39
|
-
if (this.options.clickable) {
|
40
|
-
this._map.off('click', this._onClick, this);
|
41
|
-
this._map.off('mousemove', this._onMouseMove, this);
|
42
|
-
}
|
43
|
-
|
44
|
-
this._requestUpdate();
|
45
|
-
|
46
|
-
this.fire('remove');
|
47
|
-
this._map = null;
|
48
|
-
},
|
49
|
-
|
50
|
-
_requestUpdate: function () {
|
51
|
-
if (this._map && !L.Path._updateRequest) {
|
52
|
-
L.Path._updateRequest = L.Util.requestAnimFrame(this._fireMapMoveEnd, this._map);
|
53
|
-
}
|
54
|
-
},
|
55
|
-
|
56
|
-
_fireMapMoveEnd: function () {
|
57
|
-
L.Path._updateRequest = null;
|
58
|
-
this.fire('moveend');
|
59
|
-
},
|
60
|
-
|
61
|
-
_initElements: function () {
|
62
|
-
this._map._initPathRoot();
|
63
|
-
this._ctx = this._map._canvasCtx;
|
64
|
-
},
|
65
|
-
|
66
|
-
_updateStyle: function () {
|
67
|
-
var options = this.options;
|
68
|
-
|
69
|
-
if (options.stroke) {
|
70
|
-
this._ctx.lineWidth = options.weight;
|
71
|
-
this._ctx.strokeStyle = options.color;
|
72
|
-
}
|
73
|
-
if (options.fill) {
|
74
|
-
this._ctx.fillStyle = options.fillColor || options.color;
|
75
|
-
}
|
76
|
-
|
77
|
-
if (options.lineCap) {
|
78
|
-
this._ctx.lineCap = options.lineCap;
|
79
|
-
}
|
80
|
-
if (options.lineJoin) {
|
81
|
-
this._ctx.lineJoin = options.lineJoin;
|
82
|
-
}
|
83
|
-
},
|
84
|
-
|
85
|
-
_drawPath: function () {
|
86
|
-
var i, j, len, len2, point, drawMethod;
|
87
|
-
|
88
|
-
this._ctx.beginPath();
|
89
|
-
|
90
|
-
for (i = 0, len = this._parts.length; i < len; i++) {
|
91
|
-
for (j = 0, len2 = this._parts[i].length; j < len2; j++) {
|
92
|
-
point = this._parts[i][j];
|
93
|
-
drawMethod = (j === 0 ? 'move' : 'line') + 'To';
|
94
|
-
|
95
|
-
this._ctx[drawMethod](point.x, point.y);
|
96
|
-
}
|
97
|
-
// TODO refactor ugly hack
|
98
|
-
if (this instanceof L.Polygon) {
|
99
|
-
this._ctx.closePath();
|
100
|
-
}
|
101
|
-
}
|
102
|
-
},
|
103
|
-
|
104
|
-
_checkIfEmpty: function () {
|
105
|
-
return !this._parts.length;
|
106
|
-
},
|
107
|
-
|
108
|
-
_updatePath: function () {
|
109
|
-
if (this._checkIfEmpty()) { return; }
|
110
|
-
|
111
|
-
var ctx = this._ctx,
|
112
|
-
options = this.options;
|
113
|
-
|
114
|
-
this._drawPath();
|
115
|
-
ctx.save();
|
116
|
-
this._updateStyle();
|
117
|
-
|
118
|
-
if (options.fill) {
|
119
|
-
ctx.globalAlpha = options.fillOpacity;
|
120
|
-
ctx.fill(options.fillRule || 'evenodd');
|
121
|
-
}
|
122
|
-
|
123
|
-
if (options.stroke) {
|
124
|
-
ctx.globalAlpha = options.opacity;
|
125
|
-
ctx.stroke();
|
126
|
-
}
|
127
|
-
|
128
|
-
ctx.restore();
|
129
|
-
|
130
|
-
// TODO optimization: 1 fill/stroke for all features with equal style instead of 1 for each feature
|
131
|
-
},
|
132
|
-
|
133
|
-
_initEvents: function () {
|
134
|
-
if (this.options.clickable) {
|
135
|
-
this._map.on('mousemove', this._onMouseMove, this);
|
136
|
-
this._map.on('click dblclick contextmenu', this._fireMouseEvent, this);
|
137
|
-
}
|
138
|
-
},
|
139
|
-
|
140
|
-
_fireMouseEvent: function (e) {
|
141
|
-
if (this._containsPoint(e.layerPoint)) {
|
142
|
-
this.fire(e.type, e);
|
143
|
-
}
|
144
|
-
},
|
145
|
-
|
146
|
-
_onMouseMove: function (e) {
|
147
|
-
if (!this._map || this._map._animatingZoom) { return; }
|
148
|
-
|
149
|
-
// TODO don't do on each move
|
150
|
-
if (this._containsPoint(e.layerPoint)) {
|
151
|
-
this._ctx.canvas.style.cursor = 'pointer';
|
152
|
-
this._mouseInside = true;
|
153
|
-
this.fire('mouseover', e);
|
154
|
-
|
155
|
-
} else if (this._mouseInside) {
|
156
|
-
this._ctx.canvas.style.cursor = '';
|
157
|
-
this._mouseInside = false;
|
158
|
-
this.fire('mouseout', e);
|
159
|
-
}
|
160
|
-
}
|
161
|
-
});
|
162
|
-
|
163
|
-
L.Map.include((L.Path.SVG && !window.L_PREFER_CANVAS) || !L.Browser.canvas ? {} : {
|
164
|
-
_initPathRoot: function () {
|
165
|
-
var root = this._pathRoot,
|
166
|
-
ctx;
|
167
|
-
|
168
|
-
if (!root) {
|
169
|
-
root = this._pathRoot = document.createElement('canvas');
|
170
|
-
root.style.position = 'absolute';
|
171
|
-
ctx = this._canvasCtx = root.getContext('2d');
|
172
|
-
|
173
|
-
ctx.lineCap = 'round';
|
174
|
-
ctx.lineJoin = 'round';
|
175
|
-
|
176
|
-
this._panes.overlayPane.appendChild(root);
|
177
|
-
|
178
|
-
if (this.options.zoomAnimation) {
|
179
|
-
this._pathRoot.className = 'leaflet-zoom-animated';
|
180
|
-
this.on('zoomanim', this._animatePathZoom);
|
181
|
-
this.on('zoomend', this._endPathZoom);
|
182
|
-
}
|
183
|
-
this.on('moveend', this._updateCanvasViewport);
|
184
|
-
this._updateCanvasViewport();
|
185
|
-
}
|
186
|
-
},
|
187
|
-
|
188
|
-
_updateCanvasViewport: function () {
|
189
|
-
// don't redraw while zooming. See _updateSvgViewport for more details
|
190
|
-
if (this._pathZooming) { return; }
|
191
|
-
this._updatePathViewport();
|
192
|
-
|
193
|
-
var vp = this._pathViewport,
|
194
|
-
min = vp.min,
|
195
|
-
size = vp.max.subtract(min),
|
196
|
-
root = this._pathRoot;
|
197
|
-
|
198
|
-
//TODO check if this works properly on mobile webkit
|
199
|
-
L.DomUtil.setPosition(root, min);
|
200
|
-
root.width = size.x;
|
201
|
-
root.height = size.y;
|
202
|
-
root.getContext('2d').translate(-min.x, -min.y);
|
203
|
-
}
|
204
|
-
});
|
@@ -1,37 +0,0 @@
|
|
1
|
-
/*
|
2
|
-
* Extends L.Polygon to be able to manually detect clicks on Canvas-rendered polygons.
|
3
|
-
*/
|
4
|
-
|
5
|
-
L.Polygon.include(!L.Path.CANVAS ? {} : {
|
6
|
-
_containsPoint: function (p) {
|
7
|
-
var inside = false,
|
8
|
-
part, p1, p2,
|
9
|
-
i, j, k,
|
10
|
-
len, len2;
|
11
|
-
|
12
|
-
// TODO optimization: check if within bounds first
|
13
|
-
|
14
|
-
if (L.Polyline.prototype._containsPoint.call(this, p, true)) {
|
15
|
-
// click on polygon border
|
16
|
-
return true;
|
17
|
-
}
|
18
|
-
|
19
|
-
// ray casting algorithm for detecting if point is in polygon
|
20
|
-
|
21
|
-
for (i = 0, len = this._parts.length; i < len; i++) {
|
22
|
-
part = this._parts[i];
|
23
|
-
|
24
|
-
for (j = 0, len2 = part.length, k = len2 - 1; j < len2; k = j++) {
|
25
|
-
p1 = part[j];
|
26
|
-
p2 = part[k];
|
27
|
-
|
28
|
-
if (((p1.y > p.y) !== (p2.y > p.y)) &&
|
29
|
-
(p.x < (p2.x - p1.x) * (p.y - p1.y) / (p2.y - p1.y) + p1.x)) {
|
30
|
-
inside = !inside;
|
31
|
-
}
|
32
|
-
}
|
33
|
-
}
|
34
|
-
|
35
|
-
return inside;
|
36
|
-
}
|
37
|
-
});
|
@@ -1,30 +0,0 @@
|
|
1
|
-
/*
|
2
|
-
* Extends L.Polyline to be able to manually detect clicks on Canvas-rendered polylines.
|
3
|
-
*/
|
4
|
-
|
5
|
-
L.Polyline.include(!L.Path.CANVAS ? {} : {
|
6
|
-
_containsPoint: function (p, closed) {
|
7
|
-
var i, j, k, len, len2, dist, part,
|
8
|
-
w = this.options.weight / 2;
|
9
|
-
|
10
|
-
if (L.Browser.touch) {
|
11
|
-
w += 10; // polyline click tolerance on touch devices
|
12
|
-
}
|
13
|
-
|
14
|
-
for (i = 0, len = this._parts.length; i < len; i++) {
|
15
|
-
part = this._parts[i];
|
16
|
-
for (j = 0, len2 = part.length, k = len2 - 1; j < len2; k = j++) {
|
17
|
-
if (!closed && (j === 0)) {
|
18
|
-
continue;
|
19
|
-
}
|
20
|
-
|
21
|
-
dist = L.LineUtil.pointToSegmentDistance(p, part[k], part[j]);
|
22
|
-
|
23
|
-
if (dist <= w) {
|
24
|
-
return true;
|
25
|
-
}
|
26
|
-
}
|
27
|
-
}
|
28
|
-
return false;
|
29
|
-
}
|
30
|
-
});
|
@@ -1,118 +0,0 @@
|
|
1
|
-
/*
|
2
|
-
* L.Handler.ShiftDragZoom is used to add shift-drag zoom interaction to the map
|
3
|
-
* (zoom to a selected bounding box), enabled by default.
|
4
|
-
*/
|
5
|
-
|
6
|
-
L.Map.mergeOptions({
|
7
|
-
boxZoom: true
|
8
|
-
});
|
9
|
-
|
10
|
-
L.Map.BoxZoom = L.Handler.extend({
|
11
|
-
initialize: function (map) {
|
12
|
-
this._map = map;
|
13
|
-
this._container = map._container;
|
14
|
-
this._pane = map._panes.overlayPane;
|
15
|
-
this._moved = false;
|
16
|
-
},
|
17
|
-
|
18
|
-
addHooks: function () {
|
19
|
-
L.DomEvent.on(this._container, 'mousedown', this._onMouseDown, this);
|
20
|
-
},
|
21
|
-
|
22
|
-
removeHooks: function () {
|
23
|
-
L.DomEvent.off(this._container, 'mousedown', this._onMouseDown);
|
24
|
-
this._moved = false;
|
25
|
-
},
|
26
|
-
|
27
|
-
moved: function () {
|
28
|
-
return this._moved;
|
29
|
-
},
|
30
|
-
|
31
|
-
_onMouseDown: function (e) {
|
32
|
-
this._moved = false;
|
33
|
-
|
34
|
-
if (!e.shiftKey || ((e.which !== 1) && (e.button !== 1))) { return false; }
|
35
|
-
|
36
|
-
L.DomUtil.disableTextSelection();
|
37
|
-
L.DomUtil.disableImageDrag();
|
38
|
-
|
39
|
-
this._startLayerPoint = this._map.mouseEventToLayerPoint(e);
|
40
|
-
|
41
|
-
L.DomEvent
|
42
|
-
.on(document, 'mousemove', this._onMouseMove, this)
|
43
|
-
.on(document, 'mouseup', this._onMouseUp, this)
|
44
|
-
.on(document, 'keydown', this._onKeyDown, this);
|
45
|
-
},
|
46
|
-
|
47
|
-
_onMouseMove: function (e) {
|
48
|
-
if (!this._moved) {
|
49
|
-
this._box = L.DomUtil.create('div', 'leaflet-zoom-box', this._pane);
|
50
|
-
L.DomUtil.setPosition(this._box, this._startLayerPoint);
|
51
|
-
|
52
|
-
//TODO refactor: move cursor to styles
|
53
|
-
this._container.style.cursor = 'crosshair';
|
54
|
-
this._map.fire('boxzoomstart');
|
55
|
-
}
|
56
|
-
|
57
|
-
var startPoint = this._startLayerPoint,
|
58
|
-
box = this._box,
|
59
|
-
|
60
|
-
layerPoint = this._map.mouseEventToLayerPoint(e),
|
61
|
-
offset = layerPoint.subtract(startPoint),
|
62
|
-
|
63
|
-
newPos = new L.Point(
|
64
|
-
Math.min(layerPoint.x, startPoint.x),
|
65
|
-
Math.min(layerPoint.y, startPoint.y));
|
66
|
-
|
67
|
-
L.DomUtil.setPosition(box, newPos);
|
68
|
-
|
69
|
-
this._moved = true;
|
70
|
-
|
71
|
-
// TODO refactor: remove hardcoded 4 pixels
|
72
|
-
box.style.width = (Math.max(0, Math.abs(offset.x) - 4)) + 'px';
|
73
|
-
box.style.height = (Math.max(0, Math.abs(offset.y) - 4)) + 'px';
|
74
|
-
},
|
75
|
-
|
76
|
-
_finish: function () {
|
77
|
-
if (this._moved) {
|
78
|
-
this._pane.removeChild(this._box);
|
79
|
-
this._container.style.cursor = '';
|
80
|
-
}
|
81
|
-
|
82
|
-
L.DomUtil.enableTextSelection();
|
83
|
-
L.DomUtil.enableImageDrag();
|
84
|
-
|
85
|
-
L.DomEvent
|
86
|
-
.off(document, 'mousemove', this._onMouseMove)
|
87
|
-
.off(document, 'mouseup', this._onMouseUp)
|
88
|
-
.off(document, 'keydown', this._onKeyDown);
|
89
|
-
},
|
90
|
-
|
91
|
-
_onMouseUp: function (e) {
|
92
|
-
|
93
|
-
this._finish();
|
94
|
-
|
95
|
-
var map = this._map,
|
96
|
-
layerPoint = map.mouseEventToLayerPoint(e);
|
97
|
-
|
98
|
-
if (this._startLayerPoint.equals(layerPoint)) { return; }
|
99
|
-
|
100
|
-
var bounds = new L.LatLngBounds(
|
101
|
-
map.layerPointToLatLng(this._startLayerPoint),
|
102
|
-
map.layerPointToLatLng(layerPoint));
|
103
|
-
|
104
|
-
map.fitBounds(bounds);
|
105
|
-
|
106
|
-
map.fire('boxzoomend', {
|
107
|
-
boxZoomBounds: bounds
|
108
|
-
});
|
109
|
-
},
|
110
|
-
|
111
|
-
_onKeyDown: function (e) {
|
112
|
-
if (e.keyCode === 27) {
|
113
|
-
this._finish();
|
114
|
-
}
|
115
|
-
}
|
116
|
-
});
|
117
|
-
|
118
|
-
L.Map.addInitHook('addHandler', 'boxZoom', L.Map.BoxZoom);
|
@@ -1,38 +0,0 @@
|
|
1
|
-
// Core
|
2
|
-
//=require Leaflet.draw/src/Leaflet.draw.js
|
3
|
-
|
4
|
-
// DrawHandlers
|
5
|
-
//=require Leaflet.draw/src/draw/handler/Draw.Feature.js
|
6
|
-
//=require Leaflet.draw/src/draw/handler/Draw.Polyline.js
|
7
|
-
//=require Leaflet.draw/src/draw/handler/Draw.Polygon.js
|
8
|
-
//=require Leaflet.draw/src/draw/handler/Draw.SimpleShape.js
|
9
|
-
//=require Leaflet.draw/src/draw/handler/Draw.Rectangle.js
|
10
|
-
//=require Leaflet.draw/src/draw/handler/Draw.Circle.js
|
11
|
-
//=require Leaflet.draw/src/draw/handler/Draw.Marker.js
|
12
|
-
|
13
|
-
// EditHandlers
|
14
|
-
//=require Leaflet.draw/src/edit/handler/Edit.Marker.js
|
15
|
-
//=require Leaflet.draw/src/edit/handler/Edit.Poly.js
|
16
|
-
//=require Leaflet.draw/src/edit/handler/Edit.SimpleShape.js
|
17
|
-
//=require Leaflet.draw/src/edit/handler/Edit.Rectangle.js
|
18
|
-
//=require Leaflet.draw/src/edit/handler/Edit.Circle.js
|
19
|
-
|
20
|
-
// Extensions
|
21
|
-
//=require Leaflet.draw/src/ext/LatLngUtil.js
|
22
|
-
//=require Leaflet.draw/src/ext/GeometryUtil.js
|
23
|
-
//=require Leaflet.draw/src/ext/LineUtil.Intersect.js
|
24
|
-
//=require Leaflet.draw/src/ext/Polyline.Intersect.js
|
25
|
-
//=require Leaflet.draw/src/ext/Polygon.Intersect.js
|
26
|
-
|
27
|
-
// CommonUI
|
28
|
-
//=require Leaflet.draw/src/Control.Draw.js
|
29
|
-
//=require Leaflet.draw/src/Toolbar.js
|
30
|
-
//=require Leaflet.draw/src/Tooltip.js
|
31
|
-
|
32
|
-
// DrawUI
|
33
|
-
//=require Leaflet.draw/src/draw/DrawToolbar.js
|
34
|
-
|
35
|
-
// EditUI
|
36
|
-
//=require Leaflet.draw/src/edit/EditToolbar.js
|
37
|
-
//=require Leaflet.draw/src/edit/handler/EditToolbar.Edit.js
|
38
|
-
//=require Leaflet.draw/src/edit/handler/EditToolbar.Delete.js
|