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,141 +0,0 @@
|
|
1
|
-
/*
|
2
|
-
* L.ImageOverlay is used to overlay images over the map (to specific geographical bounds).
|
3
|
-
*/
|
4
|
-
|
5
|
-
L.ImageOverlay = L.Class.extend({
|
6
|
-
includes: L.Mixin.Events,
|
7
|
-
|
8
|
-
options: {
|
9
|
-
opacity: 1
|
10
|
-
},
|
11
|
-
|
12
|
-
initialize: function (url, bounds, options) { // (String, LatLngBounds, Object)
|
13
|
-
this._url = url;
|
14
|
-
this._bounds = L.latLngBounds(bounds);
|
15
|
-
|
16
|
-
L.setOptions(this, options);
|
17
|
-
},
|
18
|
-
|
19
|
-
onAdd: function (map) {
|
20
|
-
this._map = map;
|
21
|
-
|
22
|
-
if (!this._image) {
|
23
|
-
this._initImage();
|
24
|
-
}
|
25
|
-
|
26
|
-
map._panes.overlayPane.appendChild(this._image);
|
27
|
-
|
28
|
-
map.on('viewreset', this._reset, this);
|
29
|
-
|
30
|
-
if (map.options.zoomAnimation && L.Browser.any3d) {
|
31
|
-
map.on('zoomanim', this._animateZoom, this);
|
32
|
-
}
|
33
|
-
|
34
|
-
this._reset();
|
35
|
-
},
|
36
|
-
|
37
|
-
onRemove: function (map) {
|
38
|
-
map.getPanes().overlayPane.removeChild(this._image);
|
39
|
-
|
40
|
-
map.off('viewreset', this._reset, this);
|
41
|
-
|
42
|
-
if (map.options.zoomAnimation) {
|
43
|
-
map.off('zoomanim', this._animateZoom, this);
|
44
|
-
}
|
45
|
-
},
|
46
|
-
|
47
|
-
addTo: function (map) {
|
48
|
-
map.addLayer(this);
|
49
|
-
return this;
|
50
|
-
},
|
51
|
-
|
52
|
-
setOpacity: function (opacity) {
|
53
|
-
this.options.opacity = opacity;
|
54
|
-
this._updateOpacity();
|
55
|
-
return this;
|
56
|
-
},
|
57
|
-
|
58
|
-
// TODO remove bringToFront/bringToBack duplication from TileLayer/Path
|
59
|
-
bringToFront: function () {
|
60
|
-
if (this._image) {
|
61
|
-
this._map._panes.overlayPane.appendChild(this._image);
|
62
|
-
}
|
63
|
-
return this;
|
64
|
-
},
|
65
|
-
|
66
|
-
bringToBack: function () {
|
67
|
-
var pane = this._map._panes.overlayPane;
|
68
|
-
if (this._image) {
|
69
|
-
pane.insertBefore(this._image, pane.firstChild);
|
70
|
-
}
|
71
|
-
return this;
|
72
|
-
},
|
73
|
-
|
74
|
-
setUrl: function (url) {
|
75
|
-
this._url = url;
|
76
|
-
this._image.src = this._url;
|
77
|
-
},
|
78
|
-
|
79
|
-
getAttribution: function () {
|
80
|
-
return this.options.attribution;
|
81
|
-
},
|
82
|
-
|
83
|
-
_initImage: function () {
|
84
|
-
this._image = L.DomUtil.create('img', 'leaflet-image-layer');
|
85
|
-
|
86
|
-
if (this._map.options.zoomAnimation && L.Browser.any3d) {
|
87
|
-
L.DomUtil.addClass(this._image, 'leaflet-zoom-animated');
|
88
|
-
} else {
|
89
|
-
L.DomUtil.addClass(this._image, 'leaflet-zoom-hide');
|
90
|
-
}
|
91
|
-
|
92
|
-
this._updateOpacity();
|
93
|
-
|
94
|
-
//TODO createImage util method to remove duplication
|
95
|
-
L.extend(this._image, {
|
96
|
-
galleryimg: 'no',
|
97
|
-
onselectstart: L.Util.falseFn,
|
98
|
-
onmousemove: L.Util.falseFn,
|
99
|
-
onload: L.bind(this._onImageLoad, this),
|
100
|
-
src: this._url
|
101
|
-
});
|
102
|
-
},
|
103
|
-
|
104
|
-
_animateZoom: function (e) {
|
105
|
-
var map = this._map,
|
106
|
-
image = this._image,
|
107
|
-
scale = map.getZoomScale(e.zoom),
|
108
|
-
nw = this._bounds.getNorthWest(),
|
109
|
-
se = this._bounds.getSouthEast(),
|
110
|
-
|
111
|
-
topLeft = map._latLngToNewLayerPoint(nw, e.zoom, e.center),
|
112
|
-
size = map._latLngToNewLayerPoint(se, e.zoom, e.center)._subtract(topLeft),
|
113
|
-
origin = topLeft._add(size._multiplyBy((1 / 2) * (1 - 1 / scale)));
|
114
|
-
|
115
|
-
image.style[L.DomUtil.TRANSFORM] =
|
116
|
-
L.DomUtil.getTranslateString(origin) + ' scale(' + scale + ') ';
|
117
|
-
},
|
118
|
-
|
119
|
-
_reset: function () {
|
120
|
-
var image = this._image,
|
121
|
-
topLeft = this._map.latLngToLayerPoint(this._bounds.getNorthWest()),
|
122
|
-
size = this._map.latLngToLayerPoint(this._bounds.getSouthEast())._subtract(topLeft);
|
123
|
-
|
124
|
-
L.DomUtil.setPosition(image, topLeft);
|
125
|
-
|
126
|
-
image.style.width = size.x + 'px';
|
127
|
-
image.style.height = size.y + 'px';
|
128
|
-
},
|
129
|
-
|
130
|
-
_onImageLoad: function () {
|
131
|
-
this.fire('load');
|
132
|
-
},
|
133
|
-
|
134
|
-
_updateOpacity: function () {
|
135
|
-
L.DomUtil.setOpacity(this._image, this.options.opacity);
|
136
|
-
}
|
137
|
-
});
|
138
|
-
|
139
|
-
L.imageOverlay = function (url, bounds, options) {
|
140
|
-
return new L.ImageOverlay(url, bounds, options);
|
141
|
-
};
|
@@ -1,90 +0,0 @@
|
|
1
|
-
/*
|
2
|
-
* Popup extension to L.Marker, adding popup-related methods.
|
3
|
-
*/
|
4
|
-
|
5
|
-
L.Marker.include({
|
6
|
-
openPopup: function () {
|
7
|
-
if (this._popup && this._map && !this._map.hasLayer(this._popup)) {
|
8
|
-
this._popup.setLatLng(this._latlng);
|
9
|
-
this._map.openPopup(this._popup);
|
10
|
-
}
|
11
|
-
|
12
|
-
return this;
|
13
|
-
},
|
14
|
-
|
15
|
-
closePopup: function () {
|
16
|
-
if (this._popup) {
|
17
|
-
this._popup._close();
|
18
|
-
}
|
19
|
-
return this;
|
20
|
-
},
|
21
|
-
|
22
|
-
togglePopup: function () {
|
23
|
-
if (this._popup) {
|
24
|
-
if (this._popup._isOpen) {
|
25
|
-
this.closePopup();
|
26
|
-
} else {
|
27
|
-
this.openPopup();
|
28
|
-
}
|
29
|
-
}
|
30
|
-
return this;
|
31
|
-
},
|
32
|
-
|
33
|
-
bindPopup: function (content, options) {
|
34
|
-
var anchor = L.point(this.options.icon.options.popupAnchor || [0, 0]);
|
35
|
-
|
36
|
-
anchor = anchor.add(L.Popup.prototype.options.offset);
|
37
|
-
|
38
|
-
if (options && options.offset) {
|
39
|
-
anchor = anchor.add(options.offset);
|
40
|
-
}
|
41
|
-
|
42
|
-
options = L.extend({offset: anchor}, options);
|
43
|
-
|
44
|
-
if (!this._popupHandlersAdded) {
|
45
|
-
this
|
46
|
-
.on('click', this.togglePopup, this)
|
47
|
-
.on('remove', this.closePopup, this)
|
48
|
-
.on('move', this._movePopup, this);
|
49
|
-
this._popupHandlersAdded = true;
|
50
|
-
}
|
51
|
-
|
52
|
-
if (content instanceof L.Popup) {
|
53
|
-
L.setOptions(content, options);
|
54
|
-
this._popup = content;
|
55
|
-
content._source = this;
|
56
|
-
} else {
|
57
|
-
this._popup = new L.Popup(options, this)
|
58
|
-
.setContent(content);
|
59
|
-
}
|
60
|
-
|
61
|
-
return this;
|
62
|
-
},
|
63
|
-
|
64
|
-
setPopupContent: function (content) {
|
65
|
-
if (this._popup) {
|
66
|
-
this._popup.setContent(content);
|
67
|
-
}
|
68
|
-
return this;
|
69
|
-
},
|
70
|
-
|
71
|
-
unbindPopup: function () {
|
72
|
-
if (this._popup) {
|
73
|
-
this._popup = null;
|
74
|
-
this
|
75
|
-
.off('click', this.togglePopup, this)
|
76
|
-
.off('remove', this.closePopup, this)
|
77
|
-
.off('move', this._movePopup, this);
|
78
|
-
this._popupHandlersAdded = false;
|
79
|
-
}
|
80
|
-
return this;
|
81
|
-
},
|
82
|
-
|
83
|
-
getPopup: function () {
|
84
|
-
return this._popup;
|
85
|
-
},
|
86
|
-
|
87
|
-
_movePopup: function (e) {
|
88
|
-
this._popup.setLatLng(e.latlng);
|
89
|
-
}
|
90
|
-
});
|
@@ -1,110 +0,0 @@
|
|
1
|
-
/*
|
2
|
-
Zoom animation logic for L.TileLayer.
|
3
|
-
*/
|
4
|
-
|
5
|
-
L.TileLayer.include({
|
6
|
-
_animateZoom: function (e) {
|
7
|
-
if (!this._animating) {
|
8
|
-
this._animating = true;
|
9
|
-
this._prepareBgBuffer();
|
10
|
-
}
|
11
|
-
|
12
|
-
var bg = this._bgBuffer,
|
13
|
-
transform = L.DomUtil.TRANSFORM,
|
14
|
-
initialTransform = e.delta ? L.DomUtil.getTranslateString(e.delta) : bg.style[transform],
|
15
|
-
scaleStr = L.DomUtil.getScaleString(e.scale, e.origin);
|
16
|
-
|
17
|
-
bg.style[transform] = e.backwards ?
|
18
|
-
scaleStr + ' ' + initialTransform :
|
19
|
-
initialTransform + ' ' + scaleStr;
|
20
|
-
},
|
21
|
-
|
22
|
-
_endZoomAnim: function () {
|
23
|
-
var front = this._tileContainer,
|
24
|
-
bg = this._bgBuffer;
|
25
|
-
|
26
|
-
front.style.visibility = '';
|
27
|
-
front.parentNode.appendChild(front); // Bring to fore
|
28
|
-
|
29
|
-
// force reflow
|
30
|
-
L.Util.falseFn(bg.offsetWidth);
|
31
|
-
|
32
|
-
var zoom = this._map.getZoom();
|
33
|
-
if (zoom > this.options.maxZoom || zoom < this.options.minZoom) {
|
34
|
-
this._clearBgBuffer();
|
35
|
-
}
|
36
|
-
|
37
|
-
this._animating = false;
|
38
|
-
},
|
39
|
-
|
40
|
-
_clearBgBuffer: function () {
|
41
|
-
var map = this._map;
|
42
|
-
|
43
|
-
if (map && !map._animatingZoom && !map.touchZoom._zooming) {
|
44
|
-
this._bgBuffer.innerHTML = '';
|
45
|
-
this._bgBuffer.style[L.DomUtil.TRANSFORM] = '';
|
46
|
-
}
|
47
|
-
},
|
48
|
-
|
49
|
-
_prepareBgBuffer: function () {
|
50
|
-
|
51
|
-
var front = this._tileContainer,
|
52
|
-
bg = this._bgBuffer;
|
53
|
-
|
54
|
-
// if foreground layer doesn't have many tiles but bg layer does,
|
55
|
-
// keep the existing bg layer and just zoom it some more
|
56
|
-
|
57
|
-
var bgLoaded = this._getLoadedTilesPercentage(bg),
|
58
|
-
frontLoaded = this._getLoadedTilesPercentage(front);
|
59
|
-
|
60
|
-
if (bg && bgLoaded > 0.5 && frontLoaded < 0.5) {
|
61
|
-
|
62
|
-
front.style.visibility = 'hidden';
|
63
|
-
this._stopLoadingImages(front);
|
64
|
-
return;
|
65
|
-
}
|
66
|
-
|
67
|
-
// prepare the buffer to become the front tile pane
|
68
|
-
bg.style.visibility = 'hidden';
|
69
|
-
bg.style[L.DomUtil.TRANSFORM] = '';
|
70
|
-
|
71
|
-
// switch out the current layer to be the new bg layer (and vice-versa)
|
72
|
-
this._tileContainer = bg;
|
73
|
-
bg = this._bgBuffer = front;
|
74
|
-
|
75
|
-
this._stopLoadingImages(bg);
|
76
|
-
|
77
|
-
//prevent bg buffer from clearing right after zoom
|
78
|
-
clearTimeout(this._clearBgBufferTimer);
|
79
|
-
},
|
80
|
-
|
81
|
-
_getLoadedTilesPercentage: function (container) {
|
82
|
-
var tiles = container.getElementsByTagName('img'),
|
83
|
-
i, len, count = 0;
|
84
|
-
|
85
|
-
for (i = 0, len = tiles.length; i < len; i++) {
|
86
|
-
if (tiles[i].complete) {
|
87
|
-
count++;
|
88
|
-
}
|
89
|
-
}
|
90
|
-
return count / len;
|
91
|
-
},
|
92
|
-
|
93
|
-
// stops loading all tiles in the background layer
|
94
|
-
_stopLoadingImages: function (container) {
|
95
|
-
var tiles = Array.prototype.slice.call(container.getElementsByTagName('img')),
|
96
|
-
i, len, tile;
|
97
|
-
|
98
|
-
for (i = 0, len = tiles.length; i < len; i++) {
|
99
|
-
tile = tiles[i];
|
100
|
-
|
101
|
-
if (!tile.complete) {
|
102
|
-
tile.onload = L.Util.falseFn;
|
103
|
-
tile.onerror = L.Util.falseFn;
|
104
|
-
tile.src = L.Util.emptyImageUrl;
|
105
|
-
|
106
|
-
tile.parentNode.removeChild(tile);
|
107
|
-
}
|
108
|
-
}
|
109
|
-
}
|
110
|
-
});
|
@@ -1,61 +0,0 @@
|
|
1
|
-
/*
|
2
|
-
* L.TileLayer.Canvas is a class that you can use as a base for creating
|
3
|
-
* dynamically drawn Canvas-based tile layers.
|
4
|
-
*/
|
5
|
-
|
6
|
-
L.TileLayer.Canvas = L.TileLayer.extend({
|
7
|
-
options: {
|
8
|
-
async: false
|
9
|
-
},
|
10
|
-
|
11
|
-
initialize: function (options) {
|
12
|
-
L.setOptions(this, options);
|
13
|
-
},
|
14
|
-
|
15
|
-
redraw: function () {
|
16
|
-
if (this._map) {
|
17
|
-
this._reset({hard: true});
|
18
|
-
this._update();
|
19
|
-
}
|
20
|
-
|
21
|
-
for (var i in this._tiles) {
|
22
|
-
this._redrawTile(this._tiles[i]);
|
23
|
-
}
|
24
|
-
return this;
|
25
|
-
},
|
26
|
-
|
27
|
-
_redrawTile: function (tile) {
|
28
|
-
this.drawTile(tile, tile._tilePoint, this._map._zoom);
|
29
|
-
},
|
30
|
-
|
31
|
-
_createTile: function () {
|
32
|
-
var tile = L.DomUtil.create('canvas', 'leaflet-tile');
|
33
|
-
tile.width = tile.height = this.options.tileSize;
|
34
|
-
tile.onselectstart = tile.onmousemove = L.Util.falseFn;
|
35
|
-
return tile;
|
36
|
-
},
|
37
|
-
|
38
|
-
_loadTile: function (tile, tilePoint) {
|
39
|
-
tile._layer = this;
|
40
|
-
tile._tilePoint = tilePoint;
|
41
|
-
|
42
|
-
this._redrawTile(tile);
|
43
|
-
|
44
|
-
if (!this.options.async) {
|
45
|
-
this.tileDrawn(tile);
|
46
|
-
}
|
47
|
-
},
|
48
|
-
|
49
|
-
drawTile: function (/*tile, tilePoint*/) {
|
50
|
-
// override with rendering code
|
51
|
-
},
|
52
|
-
|
53
|
-
tileDrawn: function (tile) {
|
54
|
-
this._tileOnLoad.call(tile);
|
55
|
-
}
|
56
|
-
});
|
57
|
-
|
58
|
-
|
59
|
-
L.tileLayer.canvas = function (options) {
|
60
|
-
return new L.TileLayer.Canvas(options);
|
61
|
-
};
|
@@ -1,87 +0,0 @@
|
|
1
|
-
/*
|
2
|
-
* L.TileLayer.WMS is used for putting WMS tile layers on the map.
|
3
|
-
*/
|
4
|
-
|
5
|
-
L.TileLayer.WMS = L.TileLayer.extend({
|
6
|
-
|
7
|
-
defaultWmsParams: {
|
8
|
-
service: 'WMS',
|
9
|
-
request: 'GetMap',
|
10
|
-
version: '1.1.1',
|
11
|
-
layers: '',
|
12
|
-
styles: '',
|
13
|
-
format: 'image/jpeg',
|
14
|
-
transparent: false
|
15
|
-
},
|
16
|
-
|
17
|
-
initialize: function (url, options) { // (String, Object)
|
18
|
-
|
19
|
-
this._url = url;
|
20
|
-
|
21
|
-
var wmsParams = L.extend({}, this.defaultWmsParams),
|
22
|
-
tileSize = options.tileSize || this.options.tileSize;
|
23
|
-
|
24
|
-
if (options.detectRetina && L.Browser.retina) {
|
25
|
-
wmsParams.width = wmsParams.height = tileSize * 2;
|
26
|
-
} else {
|
27
|
-
wmsParams.width = wmsParams.height = tileSize;
|
28
|
-
}
|
29
|
-
|
30
|
-
for (var i in options) {
|
31
|
-
// all keys that are not TileLayer options go to WMS params
|
32
|
-
if (!this.options.hasOwnProperty(i) && i !== 'crs') {
|
33
|
-
wmsParams[i] = options[i];
|
34
|
-
}
|
35
|
-
}
|
36
|
-
|
37
|
-
this.wmsParams = wmsParams;
|
38
|
-
|
39
|
-
L.setOptions(this, options);
|
40
|
-
},
|
41
|
-
|
42
|
-
onAdd: function (map) {
|
43
|
-
|
44
|
-
this._crs = this.options.crs || map.options.crs;
|
45
|
-
|
46
|
-
this._wmsVersion = parseFloat(this.wmsParams.version);
|
47
|
-
|
48
|
-
var projectionKey = this._wmsVersion >= 1.3 ? 'crs' : 'srs';
|
49
|
-
this.wmsParams[projectionKey] = this._crs.code;
|
50
|
-
|
51
|
-
L.TileLayer.prototype.onAdd.call(this, map);
|
52
|
-
},
|
53
|
-
|
54
|
-
getTileUrl: function (tilePoint) { // (Point, Number) -> String
|
55
|
-
|
56
|
-
var map = this._map,
|
57
|
-
tileSize = this.options.tileSize,
|
58
|
-
|
59
|
-
nwPoint = tilePoint.multiplyBy(tileSize),
|
60
|
-
sePoint = nwPoint.add([tileSize, tileSize]),
|
61
|
-
|
62
|
-
nw = this._crs.project(map.unproject(nwPoint, tilePoint.z)),
|
63
|
-
se = this._crs.project(map.unproject(sePoint, tilePoint.z)),
|
64
|
-
bbox = this._wmsVersion >= 1.3 && this._crs === L.CRS.EPSG4326 ?
|
65
|
-
[se.y, nw.x, nw.y, se.x].join(',') :
|
66
|
-
[nw.x, se.y, se.x, nw.y].join(','),
|
67
|
-
|
68
|
-
url = L.Util.template(this._url, {s: this._getSubdomain(tilePoint)});
|
69
|
-
|
70
|
-
return url + L.Util.getParamString(this.wmsParams, url, true) + '&BBOX=' + bbox;
|
71
|
-
},
|
72
|
-
|
73
|
-
setParams: function (params, noRedraw) {
|
74
|
-
|
75
|
-
L.extend(this.wmsParams, params);
|
76
|
-
|
77
|
-
if (!noRedraw) {
|
78
|
-
this.redraw();
|
79
|
-
}
|
80
|
-
|
81
|
-
return this;
|
82
|
-
}
|
83
|
-
});
|
84
|
-
|
85
|
-
L.tileLayer.wms = function (url, options) {
|
86
|
-
return new L.TileLayer.WMS(url, options);
|
87
|
-
};
|