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
File without changes
|
@@ -7,12 +7,13 @@ L.Map.mergeOptions({
|
|
7
7
|
zoomAnimationThreshold: 4
|
8
8
|
});
|
9
9
|
|
10
|
-
|
10
|
+
var zoomAnimated = L.DomUtil.TRANSITION && L.Browser.any3d && !L.Browser.mobileOpera;
|
11
|
+
|
12
|
+
if (zoomAnimated) {
|
11
13
|
|
12
14
|
L.Map.addInitHook(function () {
|
13
15
|
// don't animate on browsers without hardware-accelerated transitions or old Android/Opera
|
14
|
-
this._zoomAnimated = this.options.zoomAnimation
|
15
|
-
L.Browser.any3d && !L.Browser.android23 && !L.Browser.mobileOpera;
|
16
|
+
this._zoomAnimated = this.options.zoomAnimation;
|
16
17
|
|
17
18
|
// zoom transitions run with the same duration for all layers, so if one of transitionend events
|
18
19
|
// happens after starting zoom animation (propagating to the map pane), we know that it ended globally
|
@@ -22,7 +23,7 @@ if (L.DomUtil.TRANSITION) {
|
|
22
23
|
});
|
23
24
|
}
|
24
25
|
|
25
|
-
L.Map.include(!
|
26
|
+
L.Map.include(!zoomAnimated ? {} : {
|
26
27
|
|
27
28
|
_catchTransitionEnd: function (e) {
|
28
29
|
if (this._animatingZoom && e.propertyName.indexOf('transform') >= 0) {
|
@@ -46,8 +47,7 @@ L.Map.include(!L.DomUtil.TRANSITION ? {} : {
|
|
46
47
|
|
47
48
|
// offset is the pixel coords of the zoom origin relative to the current center
|
48
49
|
var scale = this.getZoomScale(zoom),
|
49
|
-
offset = this._getCenterOffset(center)._divideBy(1 - 1 / scale)
|
50
|
-
origin = this._getCenterLayerPoint()._add(offset);
|
50
|
+
offset = this._getCenterOffset(center)._divideBy(1 - 1 / scale);
|
51
51
|
|
52
52
|
// don't animate if the zoom origin isn't within one screen from the current center, unless forced
|
53
53
|
if (options.animate !== true && !this.getSize().contains(offset)) { return false; }
|
@@ -56,56 +56,48 @@ L.Map.include(!L.DomUtil.TRANSITION ? {} : {
|
|
56
56
|
.fire('movestart')
|
57
57
|
.fire('zoomstart');
|
58
58
|
|
59
|
-
this._animateZoom(center, zoom,
|
59
|
+
this._animateZoom(center, zoom, true);
|
60
60
|
|
61
61
|
return true;
|
62
62
|
},
|
63
63
|
|
64
|
-
_animateZoom: function (center, zoom,
|
65
|
-
|
66
|
-
if (!forTouchZoom) {
|
64
|
+
_animateZoom: function (center, zoom, startAnim) {
|
65
|
+
if (startAnim) {
|
67
66
|
this._animatingZoom = true;
|
68
|
-
}
|
69
67
|
|
70
|
-
|
71
|
-
|
68
|
+
// remember what center/zoom to set after animation
|
69
|
+
this._animateToCenter = center;
|
70
|
+
this._animateToZoom = zoom;
|
72
71
|
|
73
|
-
|
74
|
-
|
75
|
-
|
72
|
+
// disable any dragging during animation
|
73
|
+
if (L.Draggable) {
|
74
|
+
L.Draggable._disabled = true;
|
75
|
+
}
|
76
76
|
|
77
|
-
|
78
|
-
if (L.Draggable) {
|
79
|
-
L.Draggable._disabled = true;
|
77
|
+
L.DomUtil.addClass(this._mapPane, 'leaflet-zoom-anim');
|
80
78
|
}
|
81
79
|
|
82
|
-
|
83
|
-
this.
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
// horrible hack to work around a Chrome bug https://github.com/Leaflet/Leaflet/issues/3689
|
92
|
-
setTimeout(L.bind(this._onZoomTransitionEnd, this), 250);
|
93
|
-
}, this);
|
80
|
+
var scale = this.getZoomScale(zoom),
|
81
|
+
origin = this._getCenterLayerPoint().add(this._getCenterOffset(center)._divideBy(1 - 1 / scale));
|
82
|
+
|
83
|
+
this.fire('zoomanim', {
|
84
|
+
center: center,
|
85
|
+
zoom: zoom,
|
86
|
+
origin: origin,
|
87
|
+
scale: scale
|
88
|
+
});
|
94
89
|
},
|
95
90
|
|
96
91
|
_onZoomTransitionEnd: function () {
|
97
|
-
if (!this._animatingZoom) { return; }
|
98
92
|
|
99
93
|
this._animatingZoom = false;
|
100
94
|
|
101
95
|
L.DomUtil.removeClass(this._mapPane, 'leaflet-zoom-anim');
|
102
96
|
|
103
|
-
|
104
|
-
this._resetView(this._animateToCenter, this._animateToZoom, true, true);
|
97
|
+
this._resetView(this._animateToCenter, this._animateToZoom, true, true);
|
105
98
|
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
}, this);
|
99
|
+
if (L.Draggable) {
|
100
|
+
L.Draggable._disabled = false;
|
101
|
+
}
|
110
102
|
}
|
111
103
|
});
|
@@ -4,12 +4,12 @@
|
|
4
4
|
|
5
5
|
L.Map.include({
|
6
6
|
_defaultLocateOptions: {
|
7
|
-
watch: false,
|
8
|
-
setView: false,
|
9
|
-
maxZoom: Infinity,
|
10
7
|
timeout: 10000,
|
11
|
-
|
12
|
-
|
8
|
+
watch: false
|
9
|
+
// setView: false
|
10
|
+
// maxZoom: <Number>
|
11
|
+
// maximumAge: 0
|
12
|
+
// enableHighAccuracy: false
|
13
13
|
},
|
14
14
|
|
15
15
|
locate: function (/*Object*/ options) {
|
@@ -68,7 +68,7 @@ L.Map.include({
|
|
68
68
|
latlng = new L.LatLng(lat, lng),
|
69
69
|
|
70
70
|
latAccuracy = 180 * pos.coords.accuracy / 40075017,
|
71
|
-
lngAccuracy = latAccuracy / Math.cos(
|
71
|
+
lngAccuracy = latAccuracy / Math.cos((Math.PI / 180) * lat),
|
72
72
|
|
73
73
|
bounds = L.latLngBounds(
|
74
74
|
[lat - latAccuracy, lng - lngAccuracy],
|
@@ -77,8 +77,8 @@ L.Map.include({
|
|
77
77
|
options = this._locateOptions;
|
78
78
|
|
79
79
|
if (options.setView) {
|
80
|
-
var zoom =
|
81
|
-
this.setView(latlng, zoom);
|
80
|
+
var zoom = this.getBoundsZoom(bounds);
|
81
|
+
this.setView(latlng, options.maxZoom ? Math.min(zoom, options.maxZoom) : zoom);
|
82
82
|
}
|
83
83
|
|
84
84
|
var data = {
|
@@ -0,0 +1,105 @@
|
|
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
|
+
},
|
16
|
+
|
17
|
+
addHooks: function () {
|
18
|
+
L.DomEvent.on(this._container, 'mousedown', this._onMouseDown, this);
|
19
|
+
},
|
20
|
+
|
21
|
+
removeHooks: function () {
|
22
|
+
L.DomEvent.off(this._container, 'mousedown', this._onMouseDown, this);
|
23
|
+
},
|
24
|
+
|
25
|
+
moved: function () {
|
26
|
+
return this._moved;
|
27
|
+
},
|
28
|
+
|
29
|
+
_onMouseDown: function (e) {
|
30
|
+
this._moved = false;
|
31
|
+
|
32
|
+
if (!e.shiftKey || ((e.which !== 1) && (e.button !== 1))) { return false; }
|
33
|
+
|
34
|
+
L.DomUtil.disableTextSelection();
|
35
|
+
L.DomUtil.disableImageDrag();
|
36
|
+
|
37
|
+
this._startPoint = this._map.mouseEventToContainerPoint(e);
|
38
|
+
|
39
|
+
L.DomEvent.on(document, {
|
40
|
+
mousemove: this._onMouseMove,
|
41
|
+
mouseup: this._onMouseUp,
|
42
|
+
keydown: this._onKeyDown
|
43
|
+
}, this);
|
44
|
+
},
|
45
|
+
|
46
|
+
_onMouseMove: function (e) {
|
47
|
+
if (!this._moved) {
|
48
|
+
this._moved = true;
|
49
|
+
|
50
|
+
this._box = L.DomUtil.create('div', 'leaflet-zoom-box', this._container);
|
51
|
+
L.DomUtil.addClass(this._container, 'leaflet-crosshair');
|
52
|
+
|
53
|
+
this._map.fire('boxzoomstart');
|
54
|
+
}
|
55
|
+
|
56
|
+
this._point = this._map.mouseEventToContainerPoint(e);
|
57
|
+
|
58
|
+
var bounds = new L.Bounds(this._point, this._startPoint),
|
59
|
+
size = bounds.getSize();
|
60
|
+
|
61
|
+
L.DomUtil.setPosition(this._box, bounds.min);
|
62
|
+
|
63
|
+
this._box.style.width = size.x + 'px';
|
64
|
+
this._box.style.height = size.y + 'px';
|
65
|
+
},
|
66
|
+
|
67
|
+
_finish: function () {
|
68
|
+
if (this._moved) {
|
69
|
+
L.DomUtil.remove(this._box);
|
70
|
+
L.DomUtil.removeClass(this._container, 'leaflet-crosshair');
|
71
|
+
}
|
72
|
+
|
73
|
+
L.DomUtil.enableTextSelection();
|
74
|
+
L.DomUtil.enableImageDrag();
|
75
|
+
|
76
|
+
L.DomEvent.off(document, {
|
77
|
+
mousemove: this._onMouseMove,
|
78
|
+
mouseup: this._onMouseUp,
|
79
|
+
keydown: this._onKeyDown
|
80
|
+
}, this);
|
81
|
+
},
|
82
|
+
|
83
|
+
_onMouseUp: function () {
|
84
|
+
|
85
|
+
this._finish();
|
86
|
+
|
87
|
+
if (!this._moved) { return; }
|
88
|
+
|
89
|
+
var bounds = new L.LatLngBounds(
|
90
|
+
this._map.containerPointToLatLng(this._startPoint),
|
91
|
+
this._map.containerPointToLatLng(this._point));
|
92
|
+
|
93
|
+
this._map
|
94
|
+
.fitBounds(bounds)
|
95
|
+
.fire('boxzoomend', {boxZoomBounds: bounds});
|
96
|
+
},
|
97
|
+
|
98
|
+
_onKeyDown: function (e) {
|
99
|
+
if (e.keyCode === 27) {
|
100
|
+
this._finish();
|
101
|
+
}
|
102
|
+
}
|
103
|
+
});
|
104
|
+
|
105
|
+
L.Map.addInitHook('addHandler', 'boxZoom', L.Map.BoxZoom);
|
File without changes
|
@@ -23,9 +23,10 @@ L.Map.Drag = L.Handler.extend({
|
|
23
23
|
this._draggable = new L.Draggable(map._mapPane, map._container);
|
24
24
|
|
25
25
|
this._draggable.on({
|
26
|
-
|
27
|
-
|
28
|
-
|
26
|
+
down: this._onDown,
|
27
|
+
dragstart: this._onDragStart,
|
28
|
+
drag: this._onDrag,
|
29
|
+
dragend: this._onDragEnd
|
29
30
|
}, this);
|
30
31
|
|
31
32
|
if (map.options.worldCopyJump) {
|
@@ -46,13 +47,15 @@ L.Map.Drag = L.Handler.extend({
|
|
46
47
|
return this._draggable && this._draggable._moved;
|
47
48
|
},
|
48
49
|
|
50
|
+
_onDown: function () {
|
51
|
+
if (this._map._panAnim) {
|
52
|
+
this._map._panAnim.stop();
|
53
|
+
}
|
54
|
+
},
|
55
|
+
|
49
56
|
_onDragStart: function () {
|
50
57
|
var map = this._map;
|
51
58
|
|
52
|
-
if (map._panAnim) {
|
53
|
-
map._panAnim.stop();
|
54
|
-
}
|
55
|
-
|
56
59
|
map
|
57
60
|
.fire('movestart')
|
58
61
|
.fire('dragstart');
|
@@ -83,12 +86,11 @@ L.Map.Drag = L.Handler.extend({
|
|
83
86
|
},
|
84
87
|
|
85
88
|
_onViewReset: function () {
|
86
|
-
|
87
|
-
var pxCenter = this._map.getSize()._divideBy(2),
|
89
|
+
var pxCenter = this._map.getSize().divideBy(2),
|
88
90
|
pxWorldCenter = this._map.latLngToLayerPoint([0, 0]);
|
89
91
|
|
90
92
|
this._initialWorldOffset = pxWorldCenter.subtract(pxCenter).x;
|
91
|
-
this._worldWidth = this._map.
|
93
|
+
this._worldWidth = this._map.getPixelWorldBounds().getSize().x;
|
92
94
|
},
|
93
95
|
|
94
96
|
_onPreDrag: function () {
|
@@ -34,29 +34,31 @@ L.Map.Keyboard = L.Handler.extend({
|
|
34
34
|
container.tabIndex = '0';
|
35
35
|
}
|
36
36
|
|
37
|
-
L.DomEvent
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
37
|
+
L.DomEvent.on(container, {
|
38
|
+
focus: this._onFocus,
|
39
|
+
blur: this._onBlur,
|
40
|
+
mousedown: this._onMouseDown
|
41
|
+
}, this);
|
42
|
+
|
43
|
+
this._map.on({
|
44
|
+
focus: this._addHooks,
|
45
|
+
blur: this._removeHooks
|
46
|
+
}, this);
|
45
47
|
},
|
46
48
|
|
47
49
|
removeHooks: function () {
|
48
50
|
this._removeHooks();
|
49
51
|
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
.off(container, 'mousedown', this._onMouseDown, this);
|
52
|
+
L.DomEvent.off(this._map._container, {
|
53
|
+
focus: this._onFocus,
|
54
|
+
blur: this._onBlur,
|
55
|
+
mousedown: this._onMouseDown
|
56
|
+
}, this);
|
56
57
|
|
57
|
-
this._map
|
58
|
-
|
59
|
-
|
58
|
+
this._map.off({
|
59
|
+
focus: this._addHooks,
|
60
|
+
blur: this._removeHooks
|
61
|
+
}, this);
|
60
62
|
},
|
61
63
|
|
62
64
|
_onMouseDown: function () {
|
@@ -8,14 +8,19 @@ L.Map.mergeOptions({
|
|
8
8
|
|
9
9
|
L.Map.ScrollWheelZoom = L.Handler.extend({
|
10
10
|
addHooks: function () {
|
11
|
-
L.DomEvent.on(this._map._container,
|
12
|
-
|
11
|
+
L.DomEvent.on(this._map._container, {
|
12
|
+
mousewheel: this._onWheelScroll,
|
13
|
+
MozMousePixelScroll: L.DomEvent.preventDefault
|
14
|
+
}, this);
|
15
|
+
|
13
16
|
this._delta = 0;
|
14
17
|
},
|
15
18
|
|
16
19
|
removeHooks: function () {
|
17
|
-
L.DomEvent.off(this._map._container,
|
18
|
-
|
20
|
+
L.DomEvent.off(this._map._container, {
|
21
|
+
mousewheel: this._onWheelScroll,
|
22
|
+
MozMousePixelScroll: L.DomEvent.preventDefault
|
23
|
+
}, this);
|
19
24
|
},
|
20
25
|
|
21
26
|
_onWheelScroll: function (e) {
|
@@ -33,8 +38,7 @@ L.Map.ScrollWheelZoom = L.Handler.extend({
|
|
33
38
|
clearTimeout(this._timer);
|
34
39
|
this._timer = setTimeout(L.bind(this._performZoom, this), left);
|
35
40
|
|
36
|
-
L.DomEvent.
|
37
|
-
L.DomEvent.stopPropagation(e);
|
41
|
+
L.DomEvent.stop(e);
|
38
42
|
},
|
39
43
|
|
40
44
|
_performZoom: function () {
|
@@ -49,17 +49,19 @@ L.Map.Tap = L.Handler.extend({
|
|
49
49
|
}
|
50
50
|
}, this), 1000);
|
51
51
|
|
52
|
-
L.DomEvent
|
53
|
-
|
54
|
-
|
52
|
+
L.DomEvent.on(document, {
|
53
|
+
touchmove: this._onMove,
|
54
|
+
touchend: this._onUp
|
55
|
+
}, this);
|
55
56
|
},
|
56
57
|
|
57
58
|
_onUp: function (e) {
|
58
59
|
clearTimeout(this._holdTimeout);
|
59
60
|
|
60
|
-
L.DomEvent
|
61
|
-
|
62
|
-
|
61
|
+
L.DomEvent.off(document, {
|
62
|
+
touchmove: this._onMove,
|
63
|
+
touchend: this._onUp
|
64
|
+
}, this);
|
63
65
|
|
64
66
|
if (this._fireClick && e && e.changedTouches) {
|
65
67
|
|
@@ -45,26 +45,20 @@ L.Map.TouchZoom = L.Handler.extend({
|
|
45
45
|
},
|
46
46
|
|
47
47
|
_onTouchMove: function (e) {
|
48
|
-
var map = this._map;
|
49
|
-
|
50
48
|
if (!e.touches || e.touches.length !== 2 || !this._zooming) { return; }
|
51
49
|
|
52
|
-
var
|
50
|
+
var map = this._map,
|
51
|
+
p1 = map.mouseEventToLayerPoint(e.touches[0]),
|
53
52
|
p2 = map.mouseEventToLayerPoint(e.touches[1]);
|
54
53
|
|
55
54
|
this._scale = p1.distanceTo(p2) / this._startDist;
|
56
55
|
this._delta = p1._add(p2)._divideBy(2)._subtract(this._startCenter);
|
57
56
|
|
58
|
-
if (
|
59
|
-
|
60
|
-
|
61
|
-
if ((map.getZoom() === map.getMinZoom() && this._scale < 1) ||
|
62
|
-
(map.getZoom() === map.getMaxZoom() && this._scale > 1)) { return; }
|
63
|
-
}
|
57
|
+
if (!map.options.bounceAtZoomLimits &&
|
58
|
+
((map.getZoom() === map.getMinZoom() && this._scale < 1) ||
|
59
|
+
(map.getZoom() === map.getMaxZoom() && this._scale > 1))) { return; }
|
64
60
|
|
65
61
|
if (!this._moved) {
|
66
|
-
L.DomUtil.addClass(map._mapPane, 'leaflet-touching');
|
67
|
-
|
68
62
|
map
|
69
63
|
.fire('movestart')
|
70
64
|
.fire('zoomstart');
|
@@ -73,19 +67,18 @@ L.Map.TouchZoom = L.Handler.extend({
|
|
73
67
|
}
|
74
68
|
|
75
69
|
L.Util.cancelAnimFrame(this._animRequest);
|
76
|
-
this._animRequest = L.Util.requestAnimFrame(
|
77
|
-
this._updateOnMove, this, true, this._map._container);
|
70
|
+
this._animRequest = L.Util.requestAnimFrame(this._updateOnMove, this, true, this._map._container);
|
78
71
|
|
79
72
|
L.DomEvent.preventDefault(e);
|
80
73
|
},
|
81
74
|
|
82
75
|
_updateOnMove: function () {
|
83
|
-
var map = this._map
|
84
|
-
|
85
|
-
|
86
|
-
|
76
|
+
var map = this._map;
|
77
|
+
|
78
|
+
this._center = map.layerPointToLatLng(this._getTargetCenter());
|
79
|
+
this._zoom = map.getScaleZoom(this._scale);
|
87
80
|
|
88
|
-
map._animateZoom(
|
81
|
+
map._animateZoom(this._center, this._zoom);
|
89
82
|
},
|
90
83
|
|
91
84
|
_onTouchEnd: function () {
|
@@ -94,31 +87,22 @@ L.Map.TouchZoom = L.Handler.extend({
|
|
94
87
|
return;
|
95
88
|
}
|
96
89
|
|
97
|
-
var map = this._map;
|
98
|
-
|
99
90
|
this._zooming = false;
|
100
|
-
L.DomUtil.removeClass(map._mapPane, 'leaflet-touching');
|
101
91
|
L.Util.cancelAnimFrame(this._animRequest);
|
102
92
|
|
103
93
|
L.DomEvent
|
104
94
|
.off(document, 'touchmove', this._onTouchMove)
|
105
95
|
.off(document, 'touchend', this._onTouchEnd);
|
106
96
|
|
107
|
-
var
|
108
|
-
center = map.layerPointToLatLng(origin),
|
109
|
-
|
97
|
+
var map = this._map,
|
110
98
|
oldZoom = map.getZoom(),
|
111
|
-
|
112
|
-
|
113
|
-
Math.ceil(floatZoomDelta) : Math.floor(floatZoomDelta)),
|
114
|
-
|
115
|
-
zoom = map._limitZoom(oldZoom + roundZoomDelta),
|
116
|
-
scale = map.getZoomScale(zoom) / this._scale;
|
99
|
+
zoomDelta = this._zoom - oldZoom,
|
100
|
+
finalZoom = map._limitZoom(oldZoom + (zoomDelta > 0 ? Math.ceil(zoomDelta) : Math.floor(zoomDelta)));
|
117
101
|
|
118
|
-
map._animateZoom(
|
102
|
+
map._animateZoom(this._center, finalZoom, true);
|
119
103
|
},
|
120
104
|
|
121
|
-
|
105
|
+
_getTargetCenter: function () {
|
122
106
|
var centerOffset = this._centerOffset.subtract(this._delta).divideBy(this._scale);
|
123
107
|
return this._startCenter.add(centerOffset);
|
124
108
|
}
|