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
@@ -0,0 +1,38 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<title>Leaflet debug page</title>
|
5
|
+
|
6
|
+
<meta name="viewport" content="initial-scale=1.0, user-scalable=no" />
|
7
|
+
|
8
|
+
<link rel="stylesheet" href="../../dist/leaflet.css" />
|
9
|
+
|
10
|
+
<link rel="stylesheet" href="../css/mobile.css" />
|
11
|
+
|
12
|
+
<script type="text/javascript" src="../../build/deps.js"></script>
|
13
|
+
<script src="../leaflet-include.js"></script>
|
14
|
+
</head>
|
15
|
+
<body>
|
16
|
+
<div id="map"></div>
|
17
|
+
|
18
|
+
<script src="route.js"></script>
|
19
|
+
<script>
|
20
|
+
var cloudmadeUrl = 'http://{s}.tile.cloudmade.com/d4fc77ea4a63471cab2423e66626cbb6/997/256/{z}/{x}/{y}.png',
|
21
|
+
cloudmade = new L.TileLayer(cloudmadeUrl, {maxZoom: 18});
|
22
|
+
|
23
|
+
for (var i = 0, latlngs = [], len = route.length; i < len; i++) {
|
24
|
+
latlngs.push(new L.LatLng(route[i][0], route[i][1]));
|
25
|
+
}
|
26
|
+
var path = new L.Polyline(latlngs, {smoothFactor: 1});
|
27
|
+
|
28
|
+
var map = new L.Map('map', {layers: [cloudmade]});
|
29
|
+
|
30
|
+
map.fitBounds(new L.LatLngBounds(latlngs));
|
31
|
+
|
32
|
+
map.addLayer(new L.Marker(latlngs[0]));
|
33
|
+
map.addLayer(new L.Marker(latlngs[latlngs.length - 1]));
|
34
|
+
|
35
|
+
map.addLayer(path);
|
36
|
+
</script>
|
37
|
+
</body>
|
38
|
+
</html>
|
@@ -0,0 +1,47 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<title>Leaflet debug page</title>
|
5
|
+
|
6
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
|
7
|
+
|
8
|
+
<link rel="stylesheet" href="../../dist/leaflet.css" />
|
9
|
+
|
10
|
+
<link rel="stylesheet" href="../css/mobile.css" />
|
11
|
+
|
12
|
+
<script type="text/javascript" src="../../build/deps.js"></script>
|
13
|
+
<script src="../leaflet-include.js"></script>
|
14
|
+
</head>
|
15
|
+
<body>
|
16
|
+
<div id="map"></div>
|
17
|
+
|
18
|
+
<script>
|
19
|
+
var map = L.map('map');
|
20
|
+
|
21
|
+
var marker = L.marker([51.5, -0.09])
|
22
|
+
.bindPopup("<b>Hello world!</b><br />I am a popup.")
|
23
|
+
.addTo(map);
|
24
|
+
|
25
|
+
var circle = L.circle([51.508, -0.11], 500, {color: '#f03', opacity: 0.7})
|
26
|
+
.bindPopup("I am a circle.")
|
27
|
+
.addTo(map);
|
28
|
+
|
29
|
+
var polygon = L.polygon([
|
30
|
+
[51.509, -0.08],
|
31
|
+
[51.503, -0.06],
|
32
|
+
[51.51, -0.047]])
|
33
|
+
.bindPopup("I am a polygon.")
|
34
|
+
.addTo(map);
|
35
|
+
|
36
|
+
map.setView([51.505, -0.09], 13);
|
37
|
+
|
38
|
+
var cloudmade = L.tileLayer('http://{s}.tile.cloudmade.com/{key}/{styleId}/256/{z}/{x}/{y}.png', {
|
39
|
+
attribution: 'Map data © 2011 OpenStreetMap contributors, Imagery © 2011 CloudMade',
|
40
|
+
maxZoom: 18,
|
41
|
+
key: 'd4fc77ea4a63471cab2423e66626cbb6',
|
42
|
+
styleId: 997
|
43
|
+
}).addTo(map);
|
44
|
+
|
45
|
+
</script>
|
46
|
+
</body>
|
47
|
+
</html>
|
@@ -0,0 +1,37 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<title>Leaflet debug page</title>
|
5
|
+
|
6
|
+
<link rel="stylesheet" href="../../dist/leaflet.css" />
|
7
|
+
|
8
|
+
<link rel="stylesheet" href="../css/screen.css" />
|
9
|
+
<script type="text/javascript" src="../../build/deps.js"></script>
|
10
|
+
<script src="../leaflet-include.js"></script>
|
11
|
+
</head>
|
12
|
+
<body>
|
13
|
+
<div id="map" style="width: 800px; height: 600px; border: 1px solid #ccc"></div>
|
14
|
+
|
15
|
+
<script src="route.js"></script>
|
16
|
+
<script>
|
17
|
+
var cloudmadeUrl = 'http://{s}.tile.cloudmade.com/d4fc77ea4a63471cab2423e66626cbb6/997/256/{z}/{x}/{y}.png',
|
18
|
+
cloudmade = new L.TileLayer(cloudmadeUrl, {maxZoom: 18});
|
19
|
+
|
20
|
+
for (var i = 0, latlngs = [], len = route.length; i < len; i++) {
|
21
|
+
latlngs.push(new L.LatLng(route[i][0], route[i][1]));
|
22
|
+
}
|
23
|
+
var path = new L.Polyline(latlngs);
|
24
|
+
|
25
|
+
var map = new L.Map('map', {layers: [cloudmade]});
|
26
|
+
|
27
|
+
map.fitBounds(new L.LatLngBounds(latlngs));
|
28
|
+
|
29
|
+
map.addLayer(new L.Marker(latlngs[0]));
|
30
|
+
map.addLayer(new L.Marker(latlngs[len - 1]));
|
31
|
+
|
32
|
+
map.addLayer(path);
|
33
|
+
|
34
|
+
path.bindPopup("Hello world");
|
35
|
+
</script>
|
36
|
+
</body>
|
37
|
+
</html>
|
@@ -0,0 +1,58 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<title>Leaflet debug page</title>
|
5
|
+
|
6
|
+
<link rel="stylesheet" href="../../dist/leaflet.css" />
|
7
|
+
|
8
|
+
<link rel="stylesheet" href="../css/screen.css" />
|
9
|
+
<script type="text/javascript" src="../../build/deps.js"></script>
|
10
|
+
<script src="../leaflet-include.js"></script>
|
11
|
+
</head>
|
12
|
+
<body>
|
13
|
+
<div id="map" style="width: 800px; height: 600px; border: 1px solid #ccc"></div>
|
14
|
+
|
15
|
+
<script src="route.js"></script>
|
16
|
+
<script>
|
17
|
+
var cloudmadeUrl = 'http://{s}.tile.cloudmade.com/d4fc77ea4a63471cab2423e66626cbb6/997/256/{z}/{x}/{y}.png',
|
18
|
+
cloudmade = new L.TileLayer(cloudmadeUrl, {maxZoom: 18});
|
19
|
+
|
20
|
+
var map = new L.Map('map', {layers: [cloudmade]});
|
21
|
+
|
22
|
+
map.addLayer(L.marker(route[0]));
|
23
|
+
map.addLayer(L.marker(route[route.length - 1]));
|
24
|
+
|
25
|
+
var canvas = L.canvas();
|
26
|
+
|
27
|
+
var poly = L.polyline([
|
28
|
+
[[60, 30], [60, 50], [40, 50]],
|
29
|
+
[[20, 50], [20, 70], [0, 70]]
|
30
|
+
], {color: 'red'}).addTo(map).bindPopup('Hello SVG');
|
31
|
+
|
32
|
+
var path = L.polygon([
|
33
|
+
[route, [[50.5, 30.5], [50.5, 40], [40, 40]]],
|
34
|
+
[[[20, 0], [20, 40], [0, 40]]]
|
35
|
+
], {renderer: canvas}).addTo(map).bindPopup('Hello Canvas');
|
36
|
+
|
37
|
+
var circle = L.circle([35, 0], 700000, {color: 'green', renderer: canvas}).addTo(map).bindPopup('Hello Circle');
|
38
|
+
var circleMarker = L.circleMarker([35, 30], {color: 'magenta', radius: 30}).addTo(map).bindPopup('Happy New Year!');
|
39
|
+
|
40
|
+
map.on('mousemove', function (e) {
|
41
|
+
circle.setLatLng(e.latlng);
|
42
|
+
});
|
43
|
+
|
44
|
+
map.setView([36, 52], 3);
|
45
|
+
|
46
|
+
var layersControl = new L.Control.Layers({
|
47
|
+
}, {
|
48
|
+
'poly': poly,
|
49
|
+
'path': path,
|
50
|
+
'circle': circle,
|
51
|
+
'circleMarker': circleMarker,
|
52
|
+
'canvas': canvas,
|
53
|
+
'svg': L.SVG.instance,
|
54
|
+
}, {collapsed: false});
|
55
|
+
map.addControl(layersControl);
|
56
|
+
</script>
|
57
|
+
</body>
|
58
|
+
</html>
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
@@ -0,0 +1,494 @@
|
|
1
|
+
/* required styles */
|
2
|
+
|
3
|
+
.leaflet-pane,
|
4
|
+
.leaflet-tile,
|
5
|
+
.leaflet-marker-icon,
|
6
|
+
.leaflet-marker-shadow,
|
7
|
+
.leaflet-tile-container,
|
8
|
+
.leaflet-map-pane svg,
|
9
|
+
.leaflet-map-pane canvas,
|
10
|
+
.leaflet-zoom-box,
|
11
|
+
.leaflet-image-layer,
|
12
|
+
.leaflet-layer {
|
13
|
+
position: absolute;
|
14
|
+
left: 0;
|
15
|
+
top: 0;
|
16
|
+
}
|
17
|
+
.leaflet-container {
|
18
|
+
overflow: hidden;
|
19
|
+
-ms-touch-action: none;
|
20
|
+
}
|
21
|
+
.leaflet-tile,
|
22
|
+
.leaflet-marker-icon,
|
23
|
+
.leaflet-marker-shadow {
|
24
|
+
-webkit-user-select: none;
|
25
|
+
-moz-user-select: none;
|
26
|
+
user-select: none;
|
27
|
+
-webkit-user-drag: none;
|
28
|
+
}
|
29
|
+
/* Safari renders non-retina tile on retina better with this, but Chrome is worse */
|
30
|
+
.leaflet-safari .leaflet-tile {
|
31
|
+
image-rendering: -webkit-optimize-contrast;
|
32
|
+
}
|
33
|
+
/* hack that prevents hw layers "stretching" when loading new tiles */
|
34
|
+
.leaflet-safari .leaflet-tile-container {
|
35
|
+
width: 1600px;
|
36
|
+
height: 1600px;
|
37
|
+
-webkit-transform-origin: 0 0;
|
38
|
+
}
|
39
|
+
.leaflet-marker-icon,
|
40
|
+
.leaflet-marker-shadow {
|
41
|
+
display: block;
|
42
|
+
}
|
43
|
+
/* map is broken in FF if you have max-width: 100% on tiles */
|
44
|
+
.leaflet-container img {
|
45
|
+
max-width: none !important;
|
46
|
+
}
|
47
|
+
/* stupid Android 2 doesn't understand "max-width: none" properly */
|
48
|
+
.leaflet-container img.leaflet-image-layer {
|
49
|
+
max-width: 15000px !important;
|
50
|
+
}
|
51
|
+
.leaflet-tile {
|
52
|
+
filter: inherit;
|
53
|
+
visibility: hidden;
|
54
|
+
}
|
55
|
+
.leaflet-tile-loaded {
|
56
|
+
visibility: inherit;
|
57
|
+
}
|
58
|
+
.leaflet-zoom-box {
|
59
|
+
width: 0;
|
60
|
+
height: 0;
|
61
|
+
-moz-box-sizing: border-box;
|
62
|
+
box-sizing: border-box;
|
63
|
+
z-index: 8;
|
64
|
+
}
|
65
|
+
/* workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=888319 */
|
66
|
+
.leaflet-overlay-pane svg {
|
67
|
+
-moz-user-select: none;
|
68
|
+
}
|
69
|
+
|
70
|
+
.leaflet-pane { z-index: 4; }
|
71
|
+
|
72
|
+
.leaflet-tile-pane { z-index: 2; }
|
73
|
+
.leaflet-overlay-pane { z-index: 4; }
|
74
|
+
.leaflet-shadow-pane { z-index: 5; }
|
75
|
+
.leaflet-marker-pane { z-index: 6; }
|
76
|
+
.leaflet-popup-pane { z-index: 7; }
|
77
|
+
|
78
|
+
.leaflet-map-pane canvas { z-index: 1; }
|
79
|
+
.leaflet-map-pane svg { z-index: 2; }
|
80
|
+
|
81
|
+
.leaflet-vml-shape {
|
82
|
+
width: 1px;
|
83
|
+
height: 1px;
|
84
|
+
}
|
85
|
+
.lvml {
|
86
|
+
behavior: url(#default#VML);
|
87
|
+
display: inline-block;
|
88
|
+
position: absolute;
|
89
|
+
}
|
90
|
+
|
91
|
+
|
92
|
+
/* control positioning */
|
93
|
+
|
94
|
+
.leaflet-control {
|
95
|
+
position: relative;
|
96
|
+
z-index: 7;
|
97
|
+
pointer-events: auto;
|
98
|
+
}
|
99
|
+
.leaflet-top,
|
100
|
+
.leaflet-bottom {
|
101
|
+
position: absolute;
|
102
|
+
z-index: 1000;
|
103
|
+
pointer-events: none;
|
104
|
+
}
|
105
|
+
.leaflet-top {
|
106
|
+
top: 0;
|
107
|
+
}
|
108
|
+
.leaflet-right {
|
109
|
+
right: 0;
|
110
|
+
}
|
111
|
+
.leaflet-bottom {
|
112
|
+
bottom: 0;
|
113
|
+
}
|
114
|
+
.leaflet-left {
|
115
|
+
left: 0;
|
116
|
+
}
|
117
|
+
.leaflet-control {
|
118
|
+
float: left;
|
119
|
+
clear: both;
|
120
|
+
}
|
121
|
+
.leaflet-right .leaflet-control {
|
122
|
+
float: right;
|
123
|
+
}
|
124
|
+
.leaflet-top .leaflet-control {
|
125
|
+
margin-top: 10px;
|
126
|
+
}
|
127
|
+
.leaflet-bottom .leaflet-control {
|
128
|
+
margin-bottom: 10px;
|
129
|
+
}
|
130
|
+
.leaflet-left .leaflet-control {
|
131
|
+
margin-left: 10px;
|
132
|
+
}
|
133
|
+
.leaflet-right .leaflet-control {
|
134
|
+
margin-right: 10px;
|
135
|
+
}
|
136
|
+
|
137
|
+
|
138
|
+
/* zoom and fade animations */
|
139
|
+
|
140
|
+
.leaflet-fade-anim .leaflet-tile,
|
141
|
+
.leaflet-fade-anim .leaflet-popup {
|
142
|
+
opacity: 0;
|
143
|
+
-webkit-transition: opacity 0.2s linear;
|
144
|
+
-moz-transition: opacity 0.2s linear;
|
145
|
+
-o-transition: opacity 0.2s linear;
|
146
|
+
transition: opacity 0.2s linear;
|
147
|
+
}
|
148
|
+
.leaflet-fade-anim .leaflet-tile-loaded,
|
149
|
+
.leaflet-fade-anim .leaflet-map-pane .leaflet-popup {
|
150
|
+
opacity: 1;
|
151
|
+
}
|
152
|
+
|
153
|
+
.leaflet-zoom-anim .leaflet-zoom-animated {
|
154
|
+
-webkit-transition: -webkit-transform 0.25s cubic-bezier(0,0,0.25,1);
|
155
|
+
-moz-transition: -moz-transform 0.25s cubic-bezier(0,0,0.25,1);
|
156
|
+
-o-transition: -o-transform 0.25s cubic-bezier(0,0,0.25,1);
|
157
|
+
transition: transform 0.25s cubic-bezier(0,0,0.25,1);
|
158
|
+
}
|
159
|
+
.leaflet-zoom-anim .leaflet-tile,
|
160
|
+
.leaflet-pan-anim .leaflet-tile {
|
161
|
+
-webkit-transition: none;
|
162
|
+
-moz-transition: none;
|
163
|
+
-o-transition: none;
|
164
|
+
transition: none;
|
165
|
+
}
|
166
|
+
|
167
|
+
.leaflet-zoom-anim .leaflet-zoom-hide {
|
168
|
+
visibility: hidden;
|
169
|
+
}
|
170
|
+
|
171
|
+
|
172
|
+
/* cursors */
|
173
|
+
|
174
|
+
.leaflet-clickable {
|
175
|
+
cursor: pointer;
|
176
|
+
}
|
177
|
+
.leaflet-container {
|
178
|
+
cursor: -webkit-grab;
|
179
|
+
cursor: -moz-grab;
|
180
|
+
}
|
181
|
+
.leaflet-crosshair,
|
182
|
+
.leaflet-crosshair .leaflet-clickable {
|
183
|
+
cursor: crosshair;
|
184
|
+
}
|
185
|
+
.leaflet-popup-pane,
|
186
|
+
.leaflet-control {
|
187
|
+
cursor: auto;
|
188
|
+
}
|
189
|
+
.leaflet-dragging .leaflet-container,
|
190
|
+
.leaflet-dragging .leaflet-clickable {
|
191
|
+
cursor: move;
|
192
|
+
cursor: -webkit-grabbing;
|
193
|
+
cursor: -moz-grabbing;
|
194
|
+
}
|
195
|
+
|
196
|
+
|
197
|
+
/* visual tweaks */
|
198
|
+
|
199
|
+
.leaflet-container {
|
200
|
+
background: #ddd;
|
201
|
+
outline: 0;
|
202
|
+
}
|
203
|
+
.leaflet-container a {
|
204
|
+
color: #0078A8;
|
205
|
+
}
|
206
|
+
.leaflet-container a.leaflet-active {
|
207
|
+
outline: 2px solid orange;
|
208
|
+
}
|
209
|
+
.leaflet-zoom-box {
|
210
|
+
border: 2px dotted #38f;
|
211
|
+
background: rgba(255,255,255,0.5);
|
212
|
+
}
|
213
|
+
|
214
|
+
|
215
|
+
/* general typography */
|
216
|
+
.leaflet-container {
|
217
|
+
font: 12px/1.5 "Helvetica Neue", Arial, Helvetica, sans-serif;
|
218
|
+
}
|
219
|
+
|
220
|
+
|
221
|
+
/* general toolbar styles */
|
222
|
+
|
223
|
+
.leaflet-bar {
|
224
|
+
box-shadow: 0 1px 5px rgba(0,0,0,0.65);
|
225
|
+
border-radius: 4px;
|
226
|
+
}
|
227
|
+
.leaflet-bar a,
|
228
|
+
.leaflet-bar a:hover {
|
229
|
+
background-color: #fff;
|
230
|
+
border-bottom: 1px solid #ccc;
|
231
|
+
width: 26px;
|
232
|
+
height: 26px;
|
233
|
+
line-height: 26px;
|
234
|
+
display: block;
|
235
|
+
text-align: center;
|
236
|
+
text-decoration: none;
|
237
|
+
color: black;
|
238
|
+
}
|
239
|
+
.leaflet-bar a,
|
240
|
+
.leaflet-control-layers-toggle {
|
241
|
+
background-position: 50% 50%;
|
242
|
+
background-repeat: no-repeat;
|
243
|
+
display: block;
|
244
|
+
}
|
245
|
+
.leaflet-bar a:hover {
|
246
|
+
background-color: #f4f4f4;
|
247
|
+
}
|
248
|
+
.leaflet-bar a:first-child {
|
249
|
+
border-top-left-radius: 4px;
|
250
|
+
border-top-right-radius: 4px;
|
251
|
+
}
|
252
|
+
.leaflet-bar a:last-child {
|
253
|
+
border-bottom-left-radius: 4px;
|
254
|
+
border-bottom-right-radius: 4px;
|
255
|
+
border-bottom: none;
|
256
|
+
}
|
257
|
+
.leaflet-bar a.leaflet-disabled {
|
258
|
+
cursor: default;
|
259
|
+
background-color: #f4f4f4;
|
260
|
+
color: #bbb;
|
261
|
+
}
|
262
|
+
|
263
|
+
.leaflet-touch .leaflet-bar a {
|
264
|
+
width: 30px;
|
265
|
+
height: 30px;
|
266
|
+
line-height: 30px;
|
267
|
+
}
|
268
|
+
|
269
|
+
|
270
|
+
/* zoom control */
|
271
|
+
|
272
|
+
.leaflet-control-zoom-in,
|
273
|
+
.leaflet-control-zoom-out {
|
274
|
+
font: bold 18px 'Lucida Console', Monaco, monospace;
|
275
|
+
text-indent: 1px;
|
276
|
+
}
|
277
|
+
.leaflet-control-zoom-out {
|
278
|
+
font-size: 20px;
|
279
|
+
}
|
280
|
+
|
281
|
+
.leaflet-touch .leaflet-control-zoom-in {
|
282
|
+
font-size: 22px;
|
283
|
+
}
|
284
|
+
.leaflet-touch .leaflet-control-zoom-out {
|
285
|
+
font-size: 24px;
|
286
|
+
}
|
287
|
+
|
288
|
+
|
289
|
+
/* layers control */
|
290
|
+
|
291
|
+
.leaflet-control-layers {
|
292
|
+
box-shadow: 0 1px 5px rgba(0,0,0,0.4);
|
293
|
+
background: #fff;
|
294
|
+
border-radius: 5px;
|
295
|
+
}
|
296
|
+
.leaflet-control-layers-toggle {
|
297
|
+
background-image: url(images/layers.png);
|
298
|
+
width: 36px;
|
299
|
+
height: 36px;
|
300
|
+
}
|
301
|
+
.leaflet-retina .leaflet-control-layers-toggle {
|
302
|
+
background-image: url(images/layers-2x.png);
|
303
|
+
background-size: 26px 26px;
|
304
|
+
}
|
305
|
+
.leaflet-touch .leaflet-control-layers-toggle {
|
306
|
+
width: 44px;
|
307
|
+
height: 44px;
|
308
|
+
}
|
309
|
+
.leaflet-control-layers .leaflet-control-layers-list,
|
310
|
+
.leaflet-control-layers-expanded .leaflet-control-layers-toggle {
|
311
|
+
display: none;
|
312
|
+
}
|
313
|
+
.leaflet-control-layers-expanded .leaflet-control-layers-list {
|
314
|
+
display: block;
|
315
|
+
position: relative;
|
316
|
+
}
|
317
|
+
.leaflet-control-layers-expanded {
|
318
|
+
padding: 6px 10px 6px 6px;
|
319
|
+
color: #333;
|
320
|
+
background: #fff;
|
321
|
+
}
|
322
|
+
.leaflet-control-layers-selector {
|
323
|
+
margin-top: 2px;
|
324
|
+
position: relative;
|
325
|
+
top: 1px;
|
326
|
+
}
|
327
|
+
.leaflet-control-layers label {
|
328
|
+
display: block;
|
329
|
+
}
|
330
|
+
.leaflet-control-layers-separator {
|
331
|
+
height: 0;
|
332
|
+
border-top: 1px solid #ddd;
|
333
|
+
margin: 5px -10px 5px -6px;
|
334
|
+
}
|
335
|
+
|
336
|
+
|
337
|
+
/* attribution and scale controls */
|
338
|
+
|
339
|
+
.leaflet-container .leaflet-control-attribution {
|
340
|
+
background: #fff;
|
341
|
+
background: rgba(255, 255, 255, 0.7);
|
342
|
+
margin: 0;
|
343
|
+
}
|
344
|
+
.leaflet-control-attribution,
|
345
|
+
.leaflet-control-scale-line {
|
346
|
+
padding: 0 5px;
|
347
|
+
color: #333;
|
348
|
+
}
|
349
|
+
.leaflet-control-attribution a {
|
350
|
+
text-decoration: none;
|
351
|
+
}
|
352
|
+
.leaflet-control-attribution a:hover {
|
353
|
+
text-decoration: underline;
|
354
|
+
}
|
355
|
+
.leaflet-container .leaflet-control-attribution,
|
356
|
+
.leaflet-container .leaflet-control-scale {
|
357
|
+
font-size: 11px;
|
358
|
+
}
|
359
|
+
.leaflet-left .leaflet-control-scale {
|
360
|
+
margin-left: 5px;
|
361
|
+
}
|
362
|
+
.leaflet-bottom .leaflet-control-scale {
|
363
|
+
margin-bottom: 5px;
|
364
|
+
}
|
365
|
+
.leaflet-control-scale-line {
|
366
|
+
border: 2px solid #777;
|
367
|
+
border-top: none;
|
368
|
+
line-height: 1.1;
|
369
|
+
padding: 2px 5px 1px;
|
370
|
+
font-size: 11px;
|
371
|
+
white-space: nowrap;
|
372
|
+
overflow: hidden;
|
373
|
+
-moz-box-sizing: content-box;
|
374
|
+
box-sizing: content-box;
|
375
|
+
|
376
|
+
background: #fff;
|
377
|
+
background: rgba(255, 255, 255, 0.5);
|
378
|
+
}
|
379
|
+
.leaflet-control-scale-line:not(:first-child) {
|
380
|
+
border-top: 2px solid #777;
|
381
|
+
border-bottom: none;
|
382
|
+
margin-top: -2px;
|
383
|
+
}
|
384
|
+
.leaflet-control-scale-line:not(:first-child):not(:last-child) {
|
385
|
+
border-bottom: 2px solid #777;
|
386
|
+
}
|
387
|
+
|
388
|
+
.leaflet-touch .leaflet-control-attribution,
|
389
|
+
.leaflet-touch .leaflet-control-layers,
|
390
|
+
.leaflet-touch .leaflet-bar {
|
391
|
+
box-shadow: none;
|
392
|
+
}
|
393
|
+
.leaflet-touch .leaflet-control-layers,
|
394
|
+
.leaflet-touch .leaflet-bar {
|
395
|
+
border: 2px solid rgba(0,0,0,0.2);
|
396
|
+
background-clip: padding-box;
|
397
|
+
}
|
398
|
+
|
399
|
+
|
400
|
+
/* popup */
|
401
|
+
|
402
|
+
.leaflet-popup {
|
403
|
+
position: absolute;
|
404
|
+
text-align: center;
|
405
|
+
}
|
406
|
+
.leaflet-popup-content-wrapper {
|
407
|
+
padding: 1px;
|
408
|
+
text-align: left;
|
409
|
+
border-radius: 12px;
|
410
|
+
}
|
411
|
+
.leaflet-popup-content {
|
412
|
+
margin: 13px 19px;
|
413
|
+
line-height: 1.4;
|
414
|
+
}
|
415
|
+
.leaflet-popup-content p {
|
416
|
+
margin: 18px 0;
|
417
|
+
}
|
418
|
+
.leaflet-popup-tip-container {
|
419
|
+
margin: 0 auto;
|
420
|
+
width: 40px;
|
421
|
+
height: 20px;
|
422
|
+
position: relative;
|
423
|
+
overflow: hidden;
|
424
|
+
}
|
425
|
+
.leaflet-popup-tip {
|
426
|
+
width: 17px;
|
427
|
+
height: 17px;
|
428
|
+
padding: 1px;
|
429
|
+
|
430
|
+
margin: -10px auto 0;
|
431
|
+
|
432
|
+
-webkit-transform: rotate(45deg);
|
433
|
+
-moz-transform: rotate(45deg);
|
434
|
+
-ms-transform: rotate(45deg);
|
435
|
+
-o-transform: rotate(45deg);
|
436
|
+
transform: rotate(45deg);
|
437
|
+
}
|
438
|
+
.leaflet-popup-content-wrapper,
|
439
|
+
.leaflet-popup-tip {
|
440
|
+
background: white;
|
441
|
+
|
442
|
+
box-shadow: 0 3px 14px rgba(0,0,0,0.4);
|
443
|
+
}
|
444
|
+
.leaflet-container a.leaflet-popup-close-button {
|
445
|
+
position: absolute;
|
446
|
+
top: 0;
|
447
|
+
right: 0;
|
448
|
+
padding: 4px 4px 0 0;
|
449
|
+
text-align: center;
|
450
|
+
width: 18px;
|
451
|
+
height: 14px;
|
452
|
+
font: 16px/14px Tahoma, Verdana, sans-serif;
|
453
|
+
color: #c3c3c3;
|
454
|
+
text-decoration: none;
|
455
|
+
font-weight: bold;
|
456
|
+
background: transparent;
|
457
|
+
}
|
458
|
+
.leaflet-container a.leaflet-popup-close-button:hover {
|
459
|
+
color: #999;
|
460
|
+
}
|
461
|
+
.leaflet-popup-scrolled {
|
462
|
+
overflow: auto;
|
463
|
+
border-bottom: 1px solid #ddd;
|
464
|
+
border-top: 1px solid #ddd;
|
465
|
+
}
|
466
|
+
|
467
|
+
.leaflet-oldie .leaflet-popup-content-wrapper {
|
468
|
+
zoom: 1;
|
469
|
+
}
|
470
|
+
.leaflet-oldie .leaflet-popup-tip {
|
471
|
+
width: 24px;
|
472
|
+
margin: 0 auto;
|
473
|
+
|
474
|
+
-ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";
|
475
|
+
filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678);
|
476
|
+
}
|
477
|
+
.leaflet-oldie .leaflet-popup-tip-container {
|
478
|
+
margin-top: -1px;
|
479
|
+
}
|
480
|
+
|
481
|
+
.leaflet-oldie .leaflet-control-zoom,
|
482
|
+
.leaflet-oldie .leaflet-control-layers,
|
483
|
+
.leaflet-oldie .leaflet-popup-content-wrapper,
|
484
|
+
.leaflet-oldie .leaflet-popup-tip {
|
485
|
+
border: 1px solid #999;
|
486
|
+
}
|
487
|
+
|
488
|
+
|
489
|
+
/* div icon */
|
490
|
+
|
491
|
+
.leaflet-div-icon {
|
492
|
+
background: #fff;
|
493
|
+
border: 1px solid #666;
|
494
|
+
}
|