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,27 +1,27 @@
|
|
1
|
-
/*
|
2
|
-
* L.Rectangle extends Polygon and creates a rectangle when passed a LatLngBounds object.
|
3
|
-
*/
|
4
|
-
|
5
|
-
L.Rectangle = L.Polygon.extend({
|
6
|
-
initialize: function (latLngBounds, options) {
|
7
|
-
L.Polygon.prototype.initialize.call(this, this._boundsToLatLngs(latLngBounds), options);
|
8
|
-
},
|
9
|
-
|
10
|
-
setBounds: function (latLngBounds) {
|
11
|
-
this.setLatLngs(this._boundsToLatLngs(latLngBounds));
|
12
|
-
},
|
13
|
-
|
14
|
-
_boundsToLatLngs: function (latLngBounds) {
|
15
|
-
latLngBounds = L.latLngBounds(latLngBounds);
|
16
|
-
return [
|
17
|
-
latLngBounds.getSouthWest(),
|
18
|
-
latLngBounds.getNorthWest(),
|
19
|
-
latLngBounds.getNorthEast(),
|
20
|
-
latLngBounds.getSouthEast()
|
21
|
-
];
|
22
|
-
}
|
23
|
-
});
|
24
|
-
|
25
|
-
L.rectangle = function (latLngBounds, options) {
|
26
|
-
return new L.Rectangle(latLngBounds, options);
|
27
|
-
};
|
1
|
+
/*
|
2
|
+
* L.Rectangle extends Polygon and creates a rectangle when passed a LatLngBounds object.
|
3
|
+
*/
|
4
|
+
|
5
|
+
L.Rectangle = L.Polygon.extend({
|
6
|
+
initialize: function (latLngBounds, options) {
|
7
|
+
L.Polygon.prototype.initialize.call(this, this._boundsToLatLngs(latLngBounds), options);
|
8
|
+
},
|
9
|
+
|
10
|
+
setBounds: function (latLngBounds) {
|
11
|
+
this.setLatLngs(this._boundsToLatLngs(latLngBounds));
|
12
|
+
},
|
13
|
+
|
14
|
+
_boundsToLatLngs: function (latLngBounds) {
|
15
|
+
latLngBounds = L.latLngBounds(latLngBounds);
|
16
|
+
return [
|
17
|
+
latLngBounds.getSouthWest(),
|
18
|
+
latLngBounds.getNorthWest(),
|
19
|
+
latLngBounds.getNorthEast(),
|
20
|
+
latLngBounds.getSouthEast()
|
21
|
+
];
|
22
|
+
}
|
23
|
+
});
|
24
|
+
|
25
|
+
L.rectangle = function (latLngBounds, options) {
|
26
|
+
return new L.Rectangle(latLngBounds, options);
|
27
|
+
};
|
@@ -0,0 +1,75 @@
|
|
1
|
+
/*
|
2
|
+
* L.Renderer is a base class for renderer implementations (SVG, Canvas);
|
3
|
+
* handles renderer container, bounds and zoom animation.
|
4
|
+
*/
|
5
|
+
|
6
|
+
L.Renderer = L.Layer.extend({
|
7
|
+
|
8
|
+
options: {
|
9
|
+
// how much to extend the clip area around the map view (relative to its size)
|
10
|
+
// e.g. 0.1 would be 10% of map view in each direction; defaults to clip with the map view
|
11
|
+
padding: 0
|
12
|
+
},
|
13
|
+
|
14
|
+
initialize: function (options) {
|
15
|
+
L.setOptions(this, options);
|
16
|
+
L.stamp(this);
|
17
|
+
},
|
18
|
+
|
19
|
+
onAdd: function () {
|
20
|
+
if (!this._container) {
|
21
|
+
this._initContainer(); // defined by renderer implementations
|
22
|
+
|
23
|
+
if (this._zoomAnimated) {
|
24
|
+
L.DomUtil.addClass(this._container, 'leaflet-zoom-animated');
|
25
|
+
}
|
26
|
+
}
|
27
|
+
|
28
|
+
this.getPane().appendChild(this._container);
|
29
|
+
this._update();
|
30
|
+
},
|
31
|
+
|
32
|
+
onRemove: function () {
|
33
|
+
L.DomUtil.remove(this._container);
|
34
|
+
},
|
35
|
+
|
36
|
+
getEvents: function () {
|
37
|
+
var events = {
|
38
|
+
moveend: this._update
|
39
|
+
};
|
40
|
+
if (this._zoomAnimated) {
|
41
|
+
events.zoomanim = this._animateZoom;
|
42
|
+
}
|
43
|
+
return events;
|
44
|
+
},
|
45
|
+
|
46
|
+
_animateZoom: function (e) {
|
47
|
+
var origin = e.origin.subtract(this._map._getCenterLayerPoint()),
|
48
|
+
offset = this._bounds.min.add(origin.multiplyBy(1 - e.scale));
|
49
|
+
|
50
|
+
L.DomUtil.setTransform(this._container, offset, e.scale);
|
51
|
+
},
|
52
|
+
|
53
|
+
_update: function () {
|
54
|
+
// update pixel bounds of renderer container (for positioning/sizing/clipping later)
|
55
|
+
var p = this.options.padding,
|
56
|
+
size = this._map.getSize(),
|
57
|
+
min = this._map.containerPointToLayerPoint(size.multiplyBy(-p)).round();
|
58
|
+
|
59
|
+
this._bounds = new L.Bounds(min, min.add(size.multiplyBy(1 + p * 2)).round());
|
60
|
+
}
|
61
|
+
});
|
62
|
+
|
63
|
+
|
64
|
+
L.Map.include({
|
65
|
+
// used by each vector layer to decide which renderer to use
|
66
|
+
getRenderer: function (layer) {
|
67
|
+
var renderer = layer.options.renderer || this.options.renderer ||
|
68
|
+
(L.SVG && L.SVG.instance) || (L.Canvas && L.Canvas.instance);
|
69
|
+
|
70
|
+
if (!this.hasLayer(renderer)) {
|
71
|
+
this.addLayer(renderer);
|
72
|
+
}
|
73
|
+
return renderer;
|
74
|
+
}
|
75
|
+
});
|
@@ -0,0 +1,134 @@
|
|
1
|
+
/*
|
2
|
+
* Vector rendering for IE7-8 through VML.
|
3
|
+
* Thanks to Dmitry Baranovsky and his Raphael library for inspiration!
|
4
|
+
*/
|
5
|
+
|
6
|
+
L.Browser.vml = !L.Browser.svg && (function () {
|
7
|
+
try {
|
8
|
+
var div = document.createElement('div');
|
9
|
+
div.innerHTML = '<v:shape adj="1"/>';
|
10
|
+
|
11
|
+
var shape = div.firstChild;
|
12
|
+
shape.style.behavior = 'url(#default#VML)';
|
13
|
+
|
14
|
+
return shape && (typeof shape.adj === 'object');
|
15
|
+
|
16
|
+
} catch (e) {
|
17
|
+
return false;
|
18
|
+
}
|
19
|
+
}());
|
20
|
+
|
21
|
+
// redefine some SVG methods to handle VML syntax which is similar but with some differences
|
22
|
+
L.SVG.include(!L.Browser.vml ? {} : {
|
23
|
+
|
24
|
+
_initContainer: function () {
|
25
|
+
this._container = L.DomUtil.create('div', 'leaflet-vml-container');
|
26
|
+
},
|
27
|
+
|
28
|
+
_update: function () {
|
29
|
+
if (this._map._animatingZoom) { return; }
|
30
|
+
L.Renderer.prototype._update.call(this);
|
31
|
+
},
|
32
|
+
|
33
|
+
_initPath: function (layer) {
|
34
|
+
var container = layer._container = L.SVG.create('shape');
|
35
|
+
|
36
|
+
L.DomUtil.addClass(container, 'leaflet-vml-shape ' + (this.options.className || ''));
|
37
|
+
|
38
|
+
container.coordsize = '1 1';
|
39
|
+
|
40
|
+
layer._path = L.SVG.create('path');
|
41
|
+
container.appendChild(layer._path);
|
42
|
+
|
43
|
+
if (layer.options.clickable) {
|
44
|
+
this._initEvents(layer, container);
|
45
|
+
}
|
46
|
+
|
47
|
+
this._updateStyle(layer);
|
48
|
+
},
|
49
|
+
|
50
|
+
_addPath: function (layer) {
|
51
|
+
this._container.appendChild(layer._container);
|
52
|
+
},
|
53
|
+
|
54
|
+
_removePath: function (layer) {
|
55
|
+
L.DomUtil.remove(layer._container);
|
56
|
+
},
|
57
|
+
|
58
|
+
_updateStyle: function (layer) {
|
59
|
+
var stroke = layer._stroke,
|
60
|
+
fill = layer._fill,
|
61
|
+
options = layer.options,
|
62
|
+
container = layer._container;
|
63
|
+
|
64
|
+
container.stroked = !!options.stroke;
|
65
|
+
container.filled = !!options.fill;
|
66
|
+
|
67
|
+
if (options.stroke) {
|
68
|
+
if (!stroke) {
|
69
|
+
stroke = layer._stroke = L.SVG.create('stroke');
|
70
|
+
container.appendChild(stroke);
|
71
|
+
}
|
72
|
+
stroke.weight = options.weight + 'px';
|
73
|
+
stroke.color = options.color;
|
74
|
+
stroke.opacity = options.opacity;
|
75
|
+
|
76
|
+
if (options.dashArray) {
|
77
|
+
stroke.dashStyle = L.Util.isArray(options.dashArray) ?
|
78
|
+
options.dashArray.join(' ') :
|
79
|
+
options.dashArray.replace(/( *, *)/g, ' ');
|
80
|
+
} else {
|
81
|
+
stroke.dashStyle = '';
|
82
|
+
}
|
83
|
+
stroke.endcap = options.lineCap.replace('butt', 'flat');
|
84
|
+
stroke.joinstyle = options.lineJoin;
|
85
|
+
|
86
|
+
} else if (stroke) {
|
87
|
+
container.removeChild(stroke);
|
88
|
+
layer._stroke = null;
|
89
|
+
}
|
90
|
+
|
91
|
+
if (options.fill) {
|
92
|
+
if (!fill) {
|
93
|
+
fill = layer._fill = L.SVG.create('fill');
|
94
|
+
container.appendChild(fill);
|
95
|
+
}
|
96
|
+
fill.color = options.fillColor || options.color;
|
97
|
+
fill.opacity = options.fillOpacity;
|
98
|
+
|
99
|
+
} else if (fill) {
|
100
|
+
container.removeChild(fill);
|
101
|
+
layer._fill = null;
|
102
|
+
}
|
103
|
+
},
|
104
|
+
|
105
|
+
_updateCircle: function (layer) {
|
106
|
+
var p = layer._point,
|
107
|
+
r = Math.round(layer._radius),
|
108
|
+
r2 = Math.round(layer._radiusY || r);
|
109
|
+
|
110
|
+
this._setPath(layer, layer._empty() ? 'M0 0' :
|
111
|
+
'AL ' + p.x + ',' + p.y + ' ' + r + ',' + r2 + ' 0,' + (65535 * 360));
|
112
|
+
},
|
113
|
+
|
114
|
+
_setPath: function (layer, path) {
|
115
|
+
layer._path.v = path;
|
116
|
+
}
|
117
|
+
});
|
118
|
+
|
119
|
+
if (L.Browser.vml) {
|
120
|
+
L.SVG.create = (function () {
|
121
|
+
try {
|
122
|
+
document.namespaces.add('lvml', 'urn:schemas-microsoft-com:vml');
|
123
|
+
return function (name) {
|
124
|
+
return document.createElement('<lvml:' + name + ' class="lvml">');
|
125
|
+
};
|
126
|
+
} catch (e) {
|
127
|
+
return function (name) {
|
128
|
+
return document.createElement('<' + name + ' xmlns="urn:schemas-microsoft.com:vml" class="lvml">');
|
129
|
+
};
|
130
|
+
}
|
131
|
+
})();
|
132
|
+
|
133
|
+
L.SVG.instance = L.svg();
|
134
|
+
}
|
@@ -0,0 +1,189 @@
|
|
1
|
+
/*
|
2
|
+
* L.SVG renders vector layers with SVG. All SVG-specific code goes here.
|
3
|
+
*/
|
4
|
+
|
5
|
+
L.SVG = L.Renderer.extend({
|
6
|
+
|
7
|
+
_initContainer: function () {
|
8
|
+
this._container = L.SVG.create('svg');
|
9
|
+
|
10
|
+
this._paths = {};
|
11
|
+
this._initEvents();
|
12
|
+
|
13
|
+
// makes it possible to click through svg root; we'll reset it back in individual paths
|
14
|
+
this._container.setAttribute('pointer-events', 'none');
|
15
|
+
},
|
16
|
+
|
17
|
+
_update: function () {
|
18
|
+
if (this._map._animatingZoom) { return; }
|
19
|
+
|
20
|
+
L.Renderer.prototype._update.call(this);
|
21
|
+
|
22
|
+
var b = this._bounds,
|
23
|
+
size = b.getSize(),
|
24
|
+
container = this._container,
|
25
|
+
pane = this.getPane();
|
26
|
+
|
27
|
+
// hack to make flicker on drag end on mobile webkit less irritating
|
28
|
+
if (L.Browser.mobileWebkit) {
|
29
|
+
pane.removeChild(container);
|
30
|
+
}
|
31
|
+
|
32
|
+
L.DomUtil.setPosition(container, b.min);
|
33
|
+
|
34
|
+
// update container viewBox so that we don't have to change coordinates of individual layers
|
35
|
+
container.setAttribute('width', size.x);
|
36
|
+
container.setAttribute('height', size.y);
|
37
|
+
container.setAttribute('viewBox', [b.min.x, b.min.y, size.x, size.y].join(' '));
|
38
|
+
|
39
|
+
if (L.Browser.mobileWebkit) {
|
40
|
+
pane.appendChild(container);
|
41
|
+
}
|
42
|
+
},
|
43
|
+
|
44
|
+
// methods below are called by vector layers implementations
|
45
|
+
|
46
|
+
_initPath: function (layer) {
|
47
|
+
var path = layer._path = L.SVG.create('path');
|
48
|
+
|
49
|
+
if (layer.options.className) {
|
50
|
+
L.DomUtil.addClass(path, layer.options.className);
|
51
|
+
}
|
52
|
+
|
53
|
+
if (layer.options.clickable) {
|
54
|
+
L.DomUtil.addClass(path, 'leaflet-clickable');
|
55
|
+
}
|
56
|
+
|
57
|
+
this._updateStyle(layer);
|
58
|
+
},
|
59
|
+
|
60
|
+
_addPath: function (layer) {
|
61
|
+
var path = layer._path;
|
62
|
+
this._container.appendChild(path);
|
63
|
+
this._paths[L.stamp(path)] = layer;
|
64
|
+
},
|
65
|
+
|
66
|
+
_removePath: function (layer) {
|
67
|
+
var path = layer._path;
|
68
|
+
L.DomUtil.remove(path);
|
69
|
+
delete this._paths[L.stamp(path)];
|
70
|
+
},
|
71
|
+
|
72
|
+
_updatePath: function (layer) {
|
73
|
+
layer._project();
|
74
|
+
layer._update();
|
75
|
+
},
|
76
|
+
|
77
|
+
_updateStyle: function (layer) {
|
78
|
+
var path = layer._path,
|
79
|
+
options = layer.options;
|
80
|
+
|
81
|
+
if (!path) { return; }
|
82
|
+
|
83
|
+
if (options.stroke) {
|
84
|
+
path.setAttribute('stroke', options.color);
|
85
|
+
path.setAttribute('stroke-opacity', options.opacity);
|
86
|
+
path.setAttribute('stroke-width', options.weight);
|
87
|
+
path.setAttribute('stroke-linecap', options.lineCap);
|
88
|
+
path.setAttribute('stroke-linejoin', options.lineJoin);
|
89
|
+
|
90
|
+
if (options.dashArray) {
|
91
|
+
path.setAttribute('stroke-dasharray', options.dashArray);
|
92
|
+
} else {
|
93
|
+
path.removeAttribute('stroke-dasharray');
|
94
|
+
}
|
95
|
+
|
96
|
+
} else {
|
97
|
+
path.setAttribute('stroke', 'none');
|
98
|
+
}
|
99
|
+
|
100
|
+
if (options.fill) {
|
101
|
+
path.setAttribute('fill', options.fillColor || options.color);
|
102
|
+
path.setAttribute('fill-opacity', options.fillOpacity);
|
103
|
+
path.setAttribute('fill-rule', 'evenodd');
|
104
|
+
} else {
|
105
|
+
path.setAttribute('fill', 'none');
|
106
|
+
}
|
107
|
+
|
108
|
+
path.setAttribute('pointer-events', options.pointerEvents || (options.clickable ? 'auto' : 'none'));
|
109
|
+
},
|
110
|
+
|
111
|
+
_updatePoly: function (layer, closed) {
|
112
|
+
this._setPath(layer, L.SVG.pointsToPath(layer._parts, closed));
|
113
|
+
},
|
114
|
+
|
115
|
+
_updateCircle: function (layer) {
|
116
|
+
var p = layer._point,
|
117
|
+
r = layer._radius,
|
118
|
+
r2 = layer._radiusY || r,
|
119
|
+
arc = 'a' + r + ',' + r2 + ' 0 1,0 ';
|
120
|
+
|
121
|
+
// drawing a circle with two half-arcs
|
122
|
+
var d = layer._empty() ? 'M0 0' :
|
123
|
+
'M' + (p.x - r) + ',' + p.y +
|
124
|
+
arc + (r * 2) + ',0 ' +
|
125
|
+
arc + (-r * 2) + ',0 ';
|
126
|
+
|
127
|
+
this._setPath(layer, d);
|
128
|
+
},
|
129
|
+
|
130
|
+
_setPath: function (layer, path) {
|
131
|
+
layer._path.setAttribute('d', path);
|
132
|
+
},
|
133
|
+
|
134
|
+
// SVG does not have the concept of zIndex so we resort to changing the DOM order of elements
|
135
|
+
_bringToFront: function (layer) {
|
136
|
+
L.DomUtil.toFront(layer._path);
|
137
|
+
},
|
138
|
+
|
139
|
+
_bringToBack: function (layer) {
|
140
|
+
L.DomUtil.toBack(layer._path);
|
141
|
+
},
|
142
|
+
|
143
|
+
// TODO remove duplication with L.Map
|
144
|
+
_initEvents: function () {
|
145
|
+
L.DomEvent.on(this._container, 'click dblclick mousedown mouseup mouseover mouseout mousemove contextmenu',
|
146
|
+
this._fireMouseEvent, this);
|
147
|
+
},
|
148
|
+
|
149
|
+
_fireMouseEvent: function (e) {
|
150
|
+
this._paths[L.stamp(e.target)]._fireMouseEvent(e);
|
151
|
+
}
|
152
|
+
});
|
153
|
+
|
154
|
+
|
155
|
+
L.extend(L.SVG, {
|
156
|
+
create: function (name) {
|
157
|
+
return document.createElementNS('http://www.w3.org/2000/svg', name);
|
158
|
+
},
|
159
|
+
|
160
|
+
// generates SVG path string for multiple rings, with each ring turning into "M..L..L.." instructions
|
161
|
+
pointsToPath: function (rings, closed) {
|
162
|
+
var str = '',
|
163
|
+
i, j, len, len2, points, p;
|
164
|
+
|
165
|
+
for (i = 0, len = rings.length; i < len; i++) {
|
166
|
+
points = rings[i];
|
167
|
+
|
168
|
+
for (j = 0, len2 = points.length; j < len2; j++) {
|
169
|
+
p = points[j];
|
170
|
+
str += (j ? 'L' : 'M') + p.x + ' ' + p.y;
|
171
|
+
}
|
172
|
+
|
173
|
+
// closes the ring for polygons; "x" is VML syntax
|
174
|
+
str += closed ? (L.Browser.svg ? 'z' : 'x') : '';
|
175
|
+
}
|
176
|
+
|
177
|
+
// SVG complains about empty path strings
|
178
|
+
return str || 'M0 0';
|
179
|
+
}
|
180
|
+
});
|
181
|
+
|
182
|
+
L.Browser.svg = !!(document.createElementNS && L.SVG.create('svg').createSVGRect);
|
183
|
+
|
184
|
+
L.svg = function (options) {
|
185
|
+
return L.Browser.svg || L.Browser.vml ? new L.SVG(options) : null;
|
186
|
+
};
|
187
|
+
|
188
|
+
// default instance to use when adding vectors to the map
|
189
|
+
L.SVG.instance = L.svg();
|