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
@@ -2,8 +2,7 @@
|
|
2
2
|
* L.Draggable allows you to add dragging capabilities to any element. Supports mobile devices too.
|
3
3
|
*/
|
4
4
|
|
5
|
-
L.Draggable = L.
|
6
|
-
includes: L.Mixin.Events,
|
5
|
+
L.Draggable = L.Evented.extend({
|
7
6
|
|
8
7
|
statics: {
|
9
8
|
START: L.Browser.touch ? ['touchstart', 'mousedown'] : ['mousedown'],
|
@@ -29,9 +28,7 @@ L.Draggable = L.Class.extend({
|
|
29
28
|
enable: function () {
|
30
29
|
if (this._enabled) { return; }
|
31
30
|
|
32
|
-
|
33
|
-
L.DomEvent.on(this._dragStartTarget, L.Draggable.START[i], this._onDown, this);
|
34
|
-
}
|
31
|
+
L.DomEvent.on(this._dragStartTarget, L.Draggable.START.join(' '), this._onDown, this);
|
35
32
|
|
36
33
|
this._enabled = true;
|
37
34
|
},
|
@@ -39,9 +36,7 @@ L.Draggable = L.Class.extend({
|
|
39
36
|
disable: function () {
|
40
37
|
if (!this._enabled) { return; }
|
41
38
|
|
42
|
-
|
43
|
-
L.DomEvent.off(this._dragStartTarget, L.Draggable.START[i], this._onDown, this);
|
44
|
-
}
|
39
|
+
L.DomEvent.off(this._dragStartTarget, L.Draggable.START.join(' '), this._onDown, this);
|
45
40
|
|
46
41
|
this._enabled = false;
|
47
42
|
this._moved = false;
|
@@ -61,6 +56,8 @@ L.Draggable = L.Class.extend({
|
|
61
56
|
|
62
57
|
if (this._moving) { return; }
|
63
58
|
|
59
|
+
this.fire('down');
|
60
|
+
|
64
61
|
var first = e.touches ? e.touches[0] : e;
|
65
62
|
|
66
63
|
this._startPoint = new L.Point(first.clientX, first.clientY);
|
@@ -82,7 +79,6 @@ L.Draggable = L.Class.extend({
|
|
82
79
|
offset = newPoint.subtract(this._startPoint);
|
83
80
|
|
84
81
|
if (!offset.x && !offset.y) { return; }
|
85
|
-
if (L.Browser.touch && Math.abs(offset.x) + Math.abs(offset.y) < 3) { return; }
|
86
82
|
|
87
83
|
L.DomEvent.preventDefault(e);
|
88
84
|
|
@@ -93,8 +89,7 @@ L.Draggable = L.Class.extend({
|
|
93
89
|
this._startPos = L.DomUtil.getPosition(this._element).subtract(offset);
|
94
90
|
|
95
91
|
L.DomUtil.addClass(document.body, 'leaflet-dragging');
|
96
|
-
|
97
|
-
L.DomUtil.addClass(this._lastTarget, 'leaflet-drag-target');
|
92
|
+
L.DomUtil.addClass(e.target || e.srcElement, 'leaflet-drag-target');
|
98
93
|
}
|
99
94
|
|
100
95
|
this._newPos = this._startPos.add(offset);
|
@@ -110,18 +105,14 @@ L.Draggable = L.Class.extend({
|
|
110
105
|
this.fire('drag');
|
111
106
|
},
|
112
107
|
|
113
|
-
_onUp: function () {
|
108
|
+
_onUp: function (e) {
|
114
109
|
L.DomUtil.removeClass(document.body, 'leaflet-dragging');
|
115
|
-
|
116
|
-
if (this._lastTarget) {
|
117
|
-
L.DomUtil.removeClass(this._lastTarget, 'leaflet-drag-target');
|
118
|
-
this._lastTarget = null;
|
119
|
-
}
|
110
|
+
L.DomUtil.removeClass(e.target || e.srcElement, 'leaflet-drag-target');
|
120
111
|
|
121
112
|
for (var i in L.Draggable.MOVE) {
|
122
113
|
L.DomEvent
|
123
|
-
.off(document, L.Draggable.MOVE[i], this._onMove)
|
124
|
-
.off(document, L.Draggable.END[i], this._onUp);
|
114
|
+
.off(document, L.Draggable.MOVE[i], this._onMove, this)
|
115
|
+
.off(document, L.Draggable.END[i], this._onUp, this);
|
125
116
|
}
|
126
117
|
|
127
118
|
L.DomUtil.enableImageDrag();
|
File without changes
|
@@ -2,8 +2,7 @@
|
|
2
2
|
* L.PosAnimation is used by Leaflet internally for pan animations.
|
3
3
|
*/
|
4
4
|
|
5
|
-
L.PosAnimation = L.
|
6
|
-
includes: L.Mixin.Events,
|
5
|
+
L.PosAnimation = L.Evented.extend({
|
7
6
|
|
8
7
|
run: function (el, newPos, duration, easeLinearity) { // (HTMLElement, Point[, Number, Number])
|
9
8
|
this.stop();
|
@@ -33,7 +32,9 @@ L.PosAnimation = L.Class.extend({
|
|
33
32
|
// if we just removed the transition property, the element would jump to its final position,
|
34
33
|
// so we need to make it stay at the current position
|
35
34
|
|
36
|
-
|
35
|
+
this._newPos = this._getPos();
|
36
|
+
L.DomUtil.setPosition(this._el, this._newPos);
|
37
|
+
|
37
38
|
this._onTransitionEnd();
|
38
39
|
L.Util.falseFn(this._el.offsetWidth); // force reflow in case we are about to start a new animation
|
39
40
|
},
|
@@ -0,0 +1,67 @@
|
|
1
|
+
/*
|
2
|
+
* L.LatLng represents a geographical point with latitude and longitude coordinates.
|
3
|
+
*/
|
4
|
+
|
5
|
+
L.LatLng = function (lat, lng, alt) {
|
6
|
+
if (isNaN(lat) || isNaN(lng)) {
|
7
|
+
throw new Error('Invalid LatLng object: (' + lat + ', ' + lng + ')');
|
8
|
+
}
|
9
|
+
|
10
|
+
this.lat = +lat;
|
11
|
+
this.lng = +lng;
|
12
|
+
|
13
|
+
if (alt !== undefined) {
|
14
|
+
this.alt = +alt;
|
15
|
+
}
|
16
|
+
};
|
17
|
+
|
18
|
+
L.LatLng.prototype = {
|
19
|
+
equals: function (obj, maxMargin) {
|
20
|
+
if (!obj) { return false; }
|
21
|
+
|
22
|
+
obj = L.latLng(obj);
|
23
|
+
|
24
|
+
var margin = Math.max(
|
25
|
+
Math.abs(this.lat - obj.lat),
|
26
|
+
Math.abs(this.lng - obj.lng));
|
27
|
+
|
28
|
+
return margin <= (maxMargin === undefined ? 1.0E-9 : maxMargin);
|
29
|
+
},
|
30
|
+
|
31
|
+
toString: function (precision) {
|
32
|
+
return 'LatLng(' +
|
33
|
+
L.Util.formatNum(this.lat, precision) + ', ' +
|
34
|
+
L.Util.formatNum(this.lng, precision) + ')';
|
35
|
+
},
|
36
|
+
|
37
|
+
distanceTo: function (other) {
|
38
|
+
return L.CRS.Earth.distance(this, L.latLng(other));
|
39
|
+
}
|
40
|
+
};
|
41
|
+
|
42
|
+
|
43
|
+
// constructs LatLng with different signatures
|
44
|
+
// (LatLng) or ([Number, Number]) or (Number, Number) or (Object)
|
45
|
+
|
46
|
+
L.latLng = function (a, b) {
|
47
|
+
if (a instanceof L.LatLng) {
|
48
|
+
return a;
|
49
|
+
}
|
50
|
+
if (L.Util.isArray(a) && typeof a[0] !== 'object') {
|
51
|
+
if (a.length === 3) {
|
52
|
+
return new L.LatLng(a[0], a[1], a[2]);
|
53
|
+
}
|
54
|
+
return new L.LatLng(a[0], a[1]);
|
55
|
+
}
|
56
|
+
if (a === undefined || a === null) {
|
57
|
+
return a;
|
58
|
+
}
|
59
|
+
if (typeof a === 'object' && 'lat' in a) {
|
60
|
+
return new L.LatLng(a.lat, 'lng' in a ? a.lng : a.lon);
|
61
|
+
}
|
62
|
+
if (b === undefined) {
|
63
|
+
return null;
|
64
|
+
}
|
65
|
+
return new L.LatLng(a, b);
|
66
|
+
};
|
67
|
+
|
File without changes
|
@@ -0,0 +1,13 @@
|
|
1
|
+
/*
|
2
|
+
* L.CRS.EPSG3857 (World Mercator) CRS implementation.
|
3
|
+
*/
|
4
|
+
|
5
|
+
L.CRS.EPSG3395 = L.extend({}, L.CRS.Earth, {
|
6
|
+
code: 'EPSG:3395',
|
7
|
+
projection: L.Projection.Mercator,
|
8
|
+
|
9
|
+
transformation: (function () {
|
10
|
+
var scale = 0.5 / (Math.PI * L.Projection.Mercator.R);
|
11
|
+
return new L.Transformation(scale, 0.5, -scale, 0.5);
|
12
|
+
}())
|
13
|
+
});
|
@@ -0,0 +1,17 @@
|
|
1
|
+
/*
|
2
|
+
* L.CRS.EPSG3857 (Spherical Mercator) is the most common CRS for web mapping and is used by Leaflet by default.
|
3
|
+
*/
|
4
|
+
|
5
|
+
L.CRS.EPSG3857 = L.extend({}, L.CRS.Earth, {
|
6
|
+
code: 'EPSG:3857',
|
7
|
+
projection: L.Projection.SphericalMercator,
|
8
|
+
|
9
|
+
transformation: (function () {
|
10
|
+
var scale = 0.5 / (Math.PI * L.Projection.SphericalMercator.R);
|
11
|
+
return new L.Transformation(scale, 0.5, -scale, 0.5);
|
12
|
+
}())
|
13
|
+
});
|
14
|
+
|
15
|
+
L.CRS.EPSG900913 = L.extend({}, L.CRS.EPSG3857, {
|
16
|
+
code: 'EPSG:900913'
|
17
|
+
});
|
@@ -2,9 +2,8 @@
|
|
2
2
|
* L.CRS.EPSG4326 is a CRS popular among advanced GIS specialists.
|
3
3
|
*/
|
4
4
|
|
5
|
-
L.CRS.EPSG4326 = L.extend({}, L.CRS, {
|
5
|
+
L.CRS.EPSG4326 = L.extend({}, L.CRS.Earth, {
|
6
6
|
code: 'EPSG:4326',
|
7
|
-
|
8
7
|
projection: L.Projection.LonLat,
|
9
|
-
transformation: new L.Transformation(1 /
|
8
|
+
transformation: new L.Transformation(1 / 180, 1, -1 / 180, 0.5)
|
10
9
|
});
|
@@ -0,0 +1,19 @@
|
|
1
|
+
/*
|
2
|
+
* L.CRS.Earth is the base class for all CRS representing Earth.
|
3
|
+
*/
|
4
|
+
|
5
|
+
L.CRS.Earth = L.extend({}, L.CRS, {
|
6
|
+
wrapLng: [-180, 180],
|
7
|
+
|
8
|
+
R: 6378137,
|
9
|
+
|
10
|
+
// distane between two geographical points using spherical law of cosines approximation
|
11
|
+
distance: function (latlng1, latlng2) {
|
12
|
+
var rad = Math.PI / 180,
|
13
|
+
lat1 = latlng1.lat * rad,
|
14
|
+
lat2 = latlng2.lat * rad;
|
15
|
+
|
16
|
+
return this.R * Math.acos(Math.sin(lat1) * Math.sin(lat2) +
|
17
|
+
Math.cos(lat1) * Math.cos(lat2) * Math.cos((latlng2.lng - latlng1.lng) * rad));
|
18
|
+
}
|
19
|
+
});
|
@@ -8,5 +8,14 @@ L.CRS.Simple = L.extend({}, L.CRS, {
|
|
8
8
|
|
9
9
|
scale: function (zoom) {
|
10
10
|
return Math.pow(2, zoom);
|
11
|
-
}
|
11
|
+
},
|
12
|
+
|
13
|
+
distance: function (latlng1, latlng2) {
|
14
|
+
var dx = latlng2.lng - latlng1.lng,
|
15
|
+
dy = latlng2.lat - latlng1.lat;
|
16
|
+
|
17
|
+
return Math.sqrt(dx * dx + dy * dy);
|
18
|
+
},
|
19
|
+
|
20
|
+
infinite: true
|
12
21
|
});
|
@@ -0,0 +1,63 @@
|
|
1
|
+
/*
|
2
|
+
* L.CRS is the base object for all defined CRS (Coordinate Reference Systems) in Leaflet.
|
3
|
+
*/
|
4
|
+
|
5
|
+
L.CRS = {
|
6
|
+
// converts geo coords to pixel ones
|
7
|
+
latLngToPoint: function (latlng, zoom) {
|
8
|
+
var projectedPoint = this.projection.project(latlng),
|
9
|
+
scale = this.scale(zoom);
|
10
|
+
|
11
|
+
return this.transformation._transform(projectedPoint, scale);
|
12
|
+
},
|
13
|
+
|
14
|
+
// converts pixel coords to geo coords
|
15
|
+
pointToLatLng: function (point, zoom) {
|
16
|
+
var scale = this.scale(zoom),
|
17
|
+
untransformedPoint = this.transformation.untransform(point, scale);
|
18
|
+
|
19
|
+
return this.projection.unproject(untransformedPoint);
|
20
|
+
},
|
21
|
+
|
22
|
+
// converts geo coords to projection-specific coords (e.g. in meters)
|
23
|
+
project: function (latlng) {
|
24
|
+
return this.projection.project(latlng);
|
25
|
+
},
|
26
|
+
|
27
|
+
// converts projected coords to geo coords
|
28
|
+
unproject: function (point) {
|
29
|
+
return this.projection.unproject(point);
|
30
|
+
},
|
31
|
+
|
32
|
+
// defines how the world scales with zoom
|
33
|
+
scale: function (zoom) {
|
34
|
+
return 256 * Math.pow(2, zoom);
|
35
|
+
},
|
36
|
+
|
37
|
+
// returns the bounds of the world in projected coords if applicable
|
38
|
+
getProjectedBounds: function (zoom) {
|
39
|
+
if (this.infinite) { return null; }
|
40
|
+
|
41
|
+
var b = this.projection.bounds,
|
42
|
+
s = this.scale(zoom),
|
43
|
+
min = this.transformation.transform(b.min, s),
|
44
|
+
max = this.transformation.transform(b.max, s);
|
45
|
+
|
46
|
+
return L.bounds(min, max);
|
47
|
+
},
|
48
|
+
|
49
|
+
// whether a coordinate axis wraps in a given range (e.g. longitude from -180 to 180); depends on CRS
|
50
|
+
// wrapLng: [min, max],
|
51
|
+
// wrapLat: [min, max],
|
52
|
+
|
53
|
+
// if true, the coordinate space will be unbounded (infinite in all directions)
|
54
|
+
// infinite: false,
|
55
|
+
|
56
|
+
// wraps geo coords in certain ranges if applicable
|
57
|
+
wrapLatLng: function (latlng) {
|
58
|
+
var lng = this.wrapLng ? L.Util.wrapNum(latlng.lng, this.wrapLng, true) : latlng.lng,
|
59
|
+
lat = this.wrapLat ? L.Util.wrapNum(latlng.lat, this.wrapLat, true) : latlng.lat;
|
60
|
+
|
61
|
+
return L.latLng(lat, lng);
|
62
|
+
}
|
63
|
+
};
|
@@ -2,6 +2,8 @@
|
|
2
2
|
* Simple equirectangular (Plate Carree) projection, used by CRS like EPSG:4326 and Simple.
|
3
3
|
*/
|
4
4
|
|
5
|
+
L.Projection = {};
|
6
|
+
|
5
7
|
L.Projection.LonLat = {
|
6
8
|
project: function (latlng) {
|
7
9
|
return new L.Point(latlng.lng, latlng.lat);
|
@@ -9,5 +11,7 @@ L.Projection.LonLat = {
|
|
9
11
|
|
10
12
|
unproject: function (point) {
|
11
13
|
return new L.LatLng(point.y, point.x);
|
12
|
-
}
|
14
|
+
},
|
15
|
+
|
16
|
+
bounds: L.bounds([-180, -90], [180, 90])
|
13
17
|
};
|
@@ -0,0 +1,43 @@
|
|
1
|
+
/*
|
2
|
+
* Mercator projection that takes into account that the Earth is not a perfect sphere.
|
3
|
+
* Less popular than spherical mercator; used by projections like EPSG:3395.
|
4
|
+
*/
|
5
|
+
|
6
|
+
L.Projection.Mercator = {
|
7
|
+
R: 6378137,
|
8
|
+
R_MINOR: 6356752.314245179,
|
9
|
+
|
10
|
+
bounds: L.bounds([-20037508.34279, -15496570.73972], [20037508.34279, 18764656.23138]),
|
11
|
+
|
12
|
+
project: function (latlng) {
|
13
|
+
var d = Math.PI / 180,
|
14
|
+
r = this.R,
|
15
|
+
y = latlng.lat * d,
|
16
|
+
tmp = this.R_MINOR / r,
|
17
|
+
e = Math.sqrt(1 - tmp * tmp),
|
18
|
+
con = e * Math.sin(y);
|
19
|
+
|
20
|
+
var ts = Math.tan(Math.PI / 4 - y / 2) / Math.pow((1 - con) / (1 + con), e / 2);
|
21
|
+
y = -r * Math.log(Math.max(ts, 1E-10));
|
22
|
+
|
23
|
+
return new L.Point(latlng.lng * d * r, y);
|
24
|
+
},
|
25
|
+
|
26
|
+
unproject: function (point) {
|
27
|
+
var d = 180 / Math.PI,
|
28
|
+
r = this.R,
|
29
|
+
tmp = this.R_MINOR / r,
|
30
|
+
e = Math.sqrt(1 - tmp * tmp),
|
31
|
+
ts = Math.exp(-point.y / r),
|
32
|
+
phi = Math.PI / 2 - 2 * Math.atan(ts);
|
33
|
+
|
34
|
+
for (var i = 0, dphi = 0.1, con; i < 15 && Math.abs(dphi) > 1e-7; i++) {
|
35
|
+
con = e * Math.sin(phi);
|
36
|
+
con = Math.pow((1 - con) / (1 + con), e / 2);
|
37
|
+
dphi = Math.PI / 2 - 2 * Math.atan(ts * con) - phi;
|
38
|
+
phi += dphi;
|
39
|
+
}
|
40
|
+
|
41
|
+
return new L.LatLng(phi * d, point.x * d / r);
|
42
|
+
}
|
43
|
+
};
|
@@ -0,0 +1,31 @@
|
|
1
|
+
/*
|
2
|
+
* Spherical Mercator is the most popular map projection, used by EPSG:3857 CRS used by default.
|
3
|
+
*/
|
4
|
+
|
5
|
+
L.Projection.SphericalMercator = {
|
6
|
+
|
7
|
+
R: 6378137,
|
8
|
+
|
9
|
+
project: function (latlng) {
|
10
|
+
var d = Math.PI / 180,
|
11
|
+
max = 1 - 1E-15,
|
12
|
+
sin = Math.max(Math.min(Math.sin(latlng.lat * d), max), -max);
|
13
|
+
|
14
|
+
return new L.Point(
|
15
|
+
this.R * latlng.lng * d,
|
16
|
+
this.R * Math.log((1 + sin) / (1 - sin)) / 2);
|
17
|
+
},
|
18
|
+
|
19
|
+
unproject: function (point) {
|
20
|
+
var d = 180 / Math.PI;
|
21
|
+
|
22
|
+
return new L.LatLng(
|
23
|
+
(2 * Math.atan(Math.exp(point.y / this.R)) - (Math.PI / 2)) * d,
|
24
|
+
point.x * d / this.R);
|
25
|
+
},
|
26
|
+
|
27
|
+
bounds: (function () {
|
28
|
+
var d = 6378137 * Math.PI;
|
29
|
+
return L.bounds([-d, -d], [d, d]);
|
30
|
+
})()
|
31
|
+
};
|
File without changes
|
@@ -136,17 +136,27 @@ L.LineUtil = {
|
|
136
136
|
var dx = b.x - a.x,
|
137
137
|
dy = b.y - a.y,
|
138
138
|
min = bounds.min,
|
139
|
-
max = bounds.max
|
139
|
+
max = bounds.max,
|
140
|
+
x, y;
|
140
141
|
|
141
142
|
if (code & 8) { // top
|
142
|
-
|
143
|
+
x = a.x + dx * (max.y - a.y) / dy;
|
144
|
+
y = max.y;
|
145
|
+
|
143
146
|
} else if (code & 4) { // bottom
|
144
|
-
|
147
|
+
x = a.x + dx * (min.y - a.y) / dy;
|
148
|
+
y = min.y;
|
149
|
+
|
145
150
|
} else if (code & 2) { // right
|
146
|
-
|
151
|
+
x = max.x;
|
152
|
+
y = a.y + dy * (max.x - a.x) / dx;
|
153
|
+
|
147
154
|
} else if (code & 1) { // left
|
148
|
-
|
155
|
+
x = min.x;
|
156
|
+
y = a.y + dy * (min.x - a.x) / dx;
|
149
157
|
}
|
158
|
+
|
159
|
+
return new L.Point(x, y, true);
|
150
160
|
},
|
151
161
|
|
152
162
|
_getBitCode: function (/*Point*/ p, bounds) {
|
@@ -157,6 +167,7 @@ L.LineUtil = {
|
|
157
167
|
} else if (p.x > bounds.max.x) { // right
|
158
168
|
code |= 2;
|
159
169
|
}
|
170
|
+
|
160
171
|
if (p.y < bounds.min.y) { // bottom
|
161
172
|
code |= 4;
|
162
173
|
} else if (p.y > bounds.max.y) { // top
|