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,54 @@
|
|
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/screen.css" />
|
11
|
+
<script type="text/javascript" src="../../build/deps.js"></script>
|
12
|
+
<script src="../leaflet-include.js"></script>
|
13
|
+
<script type='text/javascript' src='http://code.jquery.com/jquery-1.8.0.js'></script>
|
14
|
+
</head>
|
15
|
+
<body>
|
16
|
+
|
17
|
+
<div id="map"></div>
|
18
|
+
|
19
|
+
<script type="text/javascript">
|
20
|
+
|
21
|
+
var map;
|
22
|
+
var myLayerGroup = new L.LayerGroup();
|
23
|
+
|
24
|
+
initmap();
|
25
|
+
|
26
|
+
function initmap() {
|
27
|
+
// set up the map
|
28
|
+
map = new L.Map('map');
|
29
|
+
|
30
|
+
// create the tile layer with correct attribution
|
31
|
+
var osmUrl = 'http://a.tile.openstreetmap.org/{z}/{x}/{y}.png';
|
32
|
+
var osm = new L.TileLayer(osmUrl, { minZoom: 1, maxZoom: 17 });
|
33
|
+
map.addLayer(osm);
|
34
|
+
map.fitBounds(new L.LatLngBounds([51,7],[51,7]));
|
35
|
+
|
36
|
+
var route = L.polyline([
|
37
|
+
[51, 7.000],
|
38
|
+
[51.002, 7.004],
|
39
|
+
[51.004, 7.006]
|
40
|
+
]).addTo(map).on('click',function(e){console.log('bottom')})
|
41
|
+
|
42
|
+
var route2 = L.polyline([
|
43
|
+
[51, 7.000],
|
44
|
+
[51.002, 7.004]
|
45
|
+
],
|
46
|
+
{ clickable:false,color:'#f00' }
|
47
|
+
).addTo(map);
|
48
|
+
|
49
|
+
// when the mouse hovers over the red route2, you cannot click through the blue route1 beneath
|
50
|
+
};
|
51
|
+
|
52
|
+
</script>
|
53
|
+
</body>
|
54
|
+
</html>
|
@@ -0,0 +1,88 @@
|
|
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
|
+
|
10
|
+
<script type="text/javascript" src="../../build/deps.js"></script>
|
11
|
+
<script src="../leaflet-include.js"></script>
|
12
|
+
</head>
|
13
|
+
<body>
|
14
|
+
<div id="map" style="width: 800px; height: 600px; border: 1px solid #ccc"></div>
|
15
|
+
<button onclick="boundsExtendBounds();">Extend the bounds of the center rectangle with the upper right rectangle</button>
|
16
|
+
<button onclick="boundsExtendLatLng()">Extend the bounds of the center rectangle with the lower left marker</button>
|
17
|
+
<script src="route.js"></script>
|
18
|
+
<script>
|
19
|
+
var cloudmadeUrl = 'http://{s}.tile.cloudmade.com/d4fc77ea4a63471cab2423e66626cbb6/997/256/{z}/{x}/{y}.png',
|
20
|
+
cloudmade = new L.TileLayer(cloudmadeUrl, {maxZoom: 18});
|
21
|
+
|
22
|
+
var latLng = new L.LatLng(54.18815548107151, -7.657470703124999);
|
23
|
+
|
24
|
+
var bounds1 = new L.LatLngBounds(new L.LatLng(54.559322, -5.767822), new L.LatLng(56.1210604, -3.021240));
|
25
|
+
var bounds2 = new L.LatLngBounds(new L.LatLng(56.56023925701561, -2.076416015625), new L.LatLng(57.01158038001565, -0.9777832031250001));
|
26
|
+
var bounds3;
|
27
|
+
|
28
|
+
var map = new L.Map('map', {
|
29
|
+
layers: [cloudmade],
|
30
|
+
center: bounds1.getCenter(),
|
31
|
+
zoom: 7
|
32
|
+
});
|
33
|
+
|
34
|
+
var rectangle1 = new L.Rectangle(bounds1);
|
35
|
+
var rectangle2 = new L.Rectangle(bounds2);
|
36
|
+
var rectangle3;
|
37
|
+
|
38
|
+
var marker = new L.Marker(latLng);
|
39
|
+
|
40
|
+
map.addLayer(rectangle1).addLayer(rectangle2).addLayer(marker);
|
41
|
+
|
42
|
+
|
43
|
+
|
44
|
+
|
45
|
+
|
46
|
+
function boundsExtendBounds() {
|
47
|
+
if (rectangle3) {
|
48
|
+
map.removeLayer(rectangle3);
|
49
|
+
rectangle3 = null;
|
50
|
+
}
|
51
|
+
if (bounds3) {
|
52
|
+
bounds3 = null;
|
53
|
+
}
|
54
|
+
bounds3 = new L.LatLngBounds(bounds1.getSouthWest(), bounds1.getNorthEast());
|
55
|
+
bounds3.extend(bounds2);
|
56
|
+
rectangle3 = new L.Rectangle(bounds3, {
|
57
|
+
color: "#ff0000",
|
58
|
+
weight: 1,
|
59
|
+
opacity: 1,
|
60
|
+
fillOpacity: 0
|
61
|
+
});
|
62
|
+
|
63
|
+
map.addLayer(rectangle3);
|
64
|
+
}
|
65
|
+
|
66
|
+
function boundsExtendLatLng() {
|
67
|
+
if (rectangle3) {
|
68
|
+
map.removeLayer(rectangle3);
|
69
|
+
rectangle3 = null;
|
70
|
+
}
|
71
|
+
if (bounds3) {
|
72
|
+
bounds3 = null;
|
73
|
+
}
|
74
|
+
bounds3 = new L.LatLngBounds(bounds1.getSouthWest(), bounds1.getNorthEast());
|
75
|
+
bounds3.extend(marker.getLatLng());
|
76
|
+
rectangle3 = new L.Rectangle(bounds3, {
|
77
|
+
color: "#ff0000",
|
78
|
+
weight: 1,
|
79
|
+
opacity: 1,
|
80
|
+
fillOpacity: 0
|
81
|
+
});
|
82
|
+
|
83
|
+
map.addLayer(rectangle3);
|
84
|
+
}
|
85
|
+
|
86
|
+
</script>
|
87
|
+
</body>
|
88
|
+
</html>
|
@@ -0,0 +1,90 @@
|
|
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
|
+
|
10
|
+
<script type="text/javascript" src="../../build/deps.js"></script>
|
11
|
+
<script src="../leaflet-include.js"></script>
|
12
|
+
</head>
|
13
|
+
<body>
|
14
|
+
|
15
|
+
<div id="map" style="width: 600px; height: 600px; border: 1px solid #ccc"></div>
|
16
|
+
<button onclick="geojsonLayerBounds();">Show GeoJSON layer bounds</button>
|
17
|
+
<button onclick="featureGroupBounds();">Show feature group bounds</button>
|
18
|
+
|
19
|
+
<script type="text/javascript" src="geojson-sample.js"></script>
|
20
|
+
<script type="text/javascript">
|
21
|
+
|
22
|
+
var cloudmadeUrl = 'http://{s}.tile.cloudmade.com/d4fc77ea4a63471cab2423e66626cbb6/997/256/{z}/{x}/{y}.png',
|
23
|
+
cloudmadeAttribution = 'Map data © 2011 OpenStreetMap contributors, Imagery © 2011 CloudMade',
|
24
|
+
cloudmade = new L.TileLayer(cloudmadeUrl, {maxZoom: 18, attribution: cloudmadeAttribution}),
|
25
|
+
rectangle,
|
26
|
+
featureGroup;
|
27
|
+
|
28
|
+
var map = new L.Map('map', {
|
29
|
+
center: new L.LatLng(0.78, 102.37),
|
30
|
+
zoom: 7,
|
31
|
+
layers: [cloudmade]
|
32
|
+
});
|
33
|
+
|
34
|
+
var geojson = L.geoJson(geojsonSample, {
|
35
|
+
|
36
|
+
style: function (feature) {
|
37
|
+
return {color: feature.properties.color};
|
38
|
+
},
|
39
|
+
|
40
|
+
onEachFeature: function (feature, layer) {
|
41
|
+
var popupText = 'geometry type: ' + feature.geometry.type;
|
42
|
+
|
43
|
+
if (feature.properties.color) {
|
44
|
+
popupText += '<br/>color: ' + feature.properties.color
|
45
|
+
}
|
46
|
+
|
47
|
+
layer.bindPopup(popupText);
|
48
|
+
}
|
49
|
+
});
|
50
|
+
|
51
|
+
geojson.addLayer(new L.Marker(new L.LatLng(2.745530718801952, 105.194091796875)))
|
52
|
+
|
53
|
+
var eye1 = new L.Marker(new L.LatLng(-0.7250783020332547, 101.8212890625));
|
54
|
+
var eye2 = new L.Marker(new L.LatLng(-0.7360637370492077, 103.2275390625));
|
55
|
+
var nose = new L.Marker(new L.LatLng(-1.3292264529974207, 102.5463867187));
|
56
|
+
var mouth = new L.Polyline([
|
57
|
+
new L.LatLng(-1.3841426927920029, 101.7333984375),
|
58
|
+
new L.LatLng(-1.6037944300589726, 101.964111328125),
|
59
|
+
new L.LatLng(-1.6806671337507222, 102.249755859375),
|
60
|
+
new L.LatLng(-1.7355743631421197, 102.67822265625),
|
61
|
+
new L.LatLng(-1.5928123762763, 103.0078125),
|
62
|
+
new L.LatLng(-1.3292264529974207, 103.3154296875)
|
63
|
+
]);
|
64
|
+
map.addLayer(eye1).addLayer(eye2).addLayer(nose).addLayer(mouth);
|
65
|
+
featureGroup = new L.FeatureGroup([eye1, eye2, nose, mouth]);
|
66
|
+
|
67
|
+
map.addLayer(geojson);
|
68
|
+
map.addLayer(featureGroup);
|
69
|
+
|
70
|
+
function geojsonLayerBounds() {
|
71
|
+
if (rectangle) {
|
72
|
+
rectangle.setBounds(geojson.getBounds());
|
73
|
+
} else {
|
74
|
+
rectangle = new L.Rectangle(geojson.getBounds());
|
75
|
+
map.addLayer(rectangle);
|
76
|
+
}
|
77
|
+
}
|
78
|
+
|
79
|
+
function featureGroupBounds() {
|
80
|
+
if (rectangle) {
|
81
|
+
rectangle.setBounds(featureGroup.getBounds());
|
82
|
+
} else {
|
83
|
+
rectangle = new L.Rectangle(featureGroup.getBounds());
|
84
|
+
map.addLayer(rectangle);
|
85
|
+
}
|
86
|
+
|
87
|
+
}
|
88
|
+
</script>
|
89
|
+
</body>
|
90
|
+
</html>
|
@@ -0,0 +1,53 @@
|
|
1
|
+
var geojsonSample = {
|
2
|
+
"type": "FeatureCollection",
|
3
|
+
"features": [
|
4
|
+
{
|
5
|
+
"type": "Feature",
|
6
|
+
"geometry": {
|
7
|
+
"type": "Point",
|
8
|
+
"coordinates": [102.0, 0.5]
|
9
|
+
},
|
10
|
+
"properties": {
|
11
|
+
"prop0": "value0",
|
12
|
+
"color": "blue"
|
13
|
+
}
|
14
|
+
},
|
15
|
+
|
16
|
+
{
|
17
|
+
"type": "Feature",
|
18
|
+
"geometry": {
|
19
|
+
"type": "LineString",
|
20
|
+
"coordinates": [[102.0, 0.0], [103.0, 1.0], [104.0, 0.0], [105.0, 1.0]]
|
21
|
+
},
|
22
|
+
"properties": {
|
23
|
+
"color": "red",
|
24
|
+
"prop1": 0.0
|
25
|
+
}
|
26
|
+
},
|
27
|
+
|
28
|
+
{
|
29
|
+
"type": "Feature",
|
30
|
+
"geometry": {
|
31
|
+
"type": "Polygon",
|
32
|
+
"coordinates": [[[100.0, 0.0], [101.0, 0.0], [101.0, 1.0], [100.0, 1.0], [100.0, 0.0]]]
|
33
|
+
},
|
34
|
+
"properties": {
|
35
|
+
"color": "green",
|
36
|
+
"prop1": {
|
37
|
+
"this": "that"
|
38
|
+
}
|
39
|
+
}
|
40
|
+
},
|
41
|
+
|
42
|
+
{
|
43
|
+
"type": "Feature",
|
44
|
+
"geometry": {
|
45
|
+
"type": "MultiPolygon",
|
46
|
+
"coordinates": [[[[100.0, 1.5], [100.5, 1.5], [100.5, 2.0], [100.0, 2.0], [100.0, 1.5]]], [[[100.5, 2.0], [100.5, 2.5], [101.0, 2.5], [101.0, 2.0], [100.5, 2.0]]]]
|
47
|
+
},
|
48
|
+
"properties": {
|
49
|
+
"color": "purple"
|
50
|
+
}
|
51
|
+
}
|
52
|
+
]
|
53
|
+
};
|
@@ -0,0 +1,173 @@
|
|
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
|
+
|
10
|
+
<style>
|
11
|
+
#map {
|
12
|
+
width: 800px;
|
13
|
+
height: 500px;
|
14
|
+
}
|
15
|
+
|
16
|
+
.info {
|
17
|
+
padding: 6px 8px;
|
18
|
+
font: 14px/16px Arial, Helvetica, sans-serif;
|
19
|
+
background: white;
|
20
|
+
background: rgba(255,255,255,0.8);
|
21
|
+
box-shadow: 0 0 15px rgba(0,0,0,0.2);
|
22
|
+
border-radius: 5px;
|
23
|
+
}
|
24
|
+
.info h4 {
|
25
|
+
margin: 0 0 5px;
|
26
|
+
color: #777;
|
27
|
+
}
|
28
|
+
|
29
|
+
.legend {
|
30
|
+
text-align: left;
|
31
|
+
line-height: 18px;
|
32
|
+
color: #555;
|
33
|
+
}
|
34
|
+
.legend i {
|
35
|
+
width: 18px;
|
36
|
+
height: 18px;
|
37
|
+
float: left;
|
38
|
+
margin-right: 8px;
|
39
|
+
opacity: 0.7;
|
40
|
+
}
|
41
|
+
</style>
|
42
|
+
|
43
|
+
<script type="text/javascript" src="../../build/deps.js"></script>
|
44
|
+
<script src="../leaflet-include.js"></script>
|
45
|
+
</head>
|
46
|
+
<body>
|
47
|
+
|
48
|
+
<div id="map"></div>
|
49
|
+
|
50
|
+
<script type="text/javascript" src="us-states.js"></script>
|
51
|
+
<script type="text/javascript">
|
52
|
+
|
53
|
+
var map = L.map('map').setView([37.8, -96], 4);
|
54
|
+
|
55
|
+
var cloudmade = L.tileLayer('http://{s}.tile.cloudmade.com/{key}/{styleId}/256/{z}/{x}/{y}.png', {
|
56
|
+
attribution: 'Map data © 2011 OpenStreetMap contributors, Imagery © 2011 CloudMade',
|
57
|
+
key: 'd4fc77ea4a63471cab2423e66626cbb6',
|
58
|
+
styleId: 998
|
59
|
+
}).addTo(map);
|
60
|
+
|
61
|
+
|
62
|
+
// control that shows state info on hover
|
63
|
+
var info = L.control();
|
64
|
+
|
65
|
+
info.onAdd = function (map) {
|
66
|
+
this._div = L.DomUtil.create('div', 'info');
|
67
|
+
this.update();
|
68
|
+
return this._div;
|
69
|
+
};
|
70
|
+
|
71
|
+
info.update = function (props) {
|
72
|
+
this._div.innerHTML = '<h4>US Population Density</h4>' + (props ?
|
73
|
+
'<b>' + props.name + '</b><br />' + props.density + ' people / mi<sup>2</sup>'
|
74
|
+
: 'Hover over a state');
|
75
|
+
};
|
76
|
+
|
77
|
+
info.addTo(map);
|
78
|
+
|
79
|
+
|
80
|
+
// get color depending on population density value
|
81
|
+
function getColor(d) {
|
82
|
+
return d > 1000 ? '#800026' :
|
83
|
+
d > 500 ? '#BD0026' :
|
84
|
+
d > 200 ? '#E31A1C' :
|
85
|
+
d > 100 ? '#FC4E2A' :
|
86
|
+
d > 50 ? '#FD8D3C' :
|
87
|
+
d > 20 ? '#FEB24C' :
|
88
|
+
d > 10 ? '#FED976' :
|
89
|
+
'#FFEDA0';
|
90
|
+
}
|
91
|
+
|
92
|
+
function style(feature) {
|
93
|
+
return {
|
94
|
+
weight: 2,
|
95
|
+
opacity: 1,
|
96
|
+
color: 'white',
|
97
|
+
dashArray: '3',
|
98
|
+
fillOpacity: 0.7,
|
99
|
+
fillColor: getColor(feature.properties.density)
|
100
|
+
};
|
101
|
+
}
|
102
|
+
|
103
|
+
function highlightFeature(e) {
|
104
|
+
var layer = e.target;
|
105
|
+
|
106
|
+
layer.setStyle({
|
107
|
+
weight: 5,
|
108
|
+
color: '#666',
|
109
|
+
dashArray: '',
|
110
|
+
fillOpacity: 0.7
|
111
|
+
});
|
112
|
+
|
113
|
+
if (!L.Browser.ie) {
|
114
|
+
layer.bringToFront();
|
115
|
+
}
|
116
|
+
|
117
|
+
info.update(layer.feature.properties);
|
118
|
+
}
|
119
|
+
|
120
|
+
var geojson;
|
121
|
+
|
122
|
+
function resetHighlight(e) {
|
123
|
+
geojson.resetStyle(e.target);
|
124
|
+
info.update();
|
125
|
+
}
|
126
|
+
|
127
|
+
function zoomToFeature(e) {
|
128
|
+
map.fitBounds(e.target.getBounds());
|
129
|
+
}
|
130
|
+
|
131
|
+
function onEachFeature(feature, layer) {
|
132
|
+
layer.on({
|
133
|
+
mouseover: highlightFeature,
|
134
|
+
mouseout: resetHighlight,
|
135
|
+
click: zoomToFeature
|
136
|
+
});
|
137
|
+
}
|
138
|
+
|
139
|
+
geojson = L.geoJson(statesData, {
|
140
|
+
style: style,
|
141
|
+
onEachFeature: onEachFeature
|
142
|
+
}).addTo(map);
|
143
|
+
|
144
|
+
map.attributionControl.addAttribution('Population data © <a href="http://census.gov/">US Census Bureau</a>');
|
145
|
+
|
146
|
+
|
147
|
+
var legend = L.control({position: 'bottomright'});
|
148
|
+
|
149
|
+
legend.onAdd = function (map) {
|
150
|
+
|
151
|
+
var div = L.DomUtil.create('div', 'info legend'),
|
152
|
+
grades = [0, 10, 20, 50, 100, 200, 500, 1000],
|
153
|
+
labels = [],
|
154
|
+
from, to;
|
155
|
+
|
156
|
+
for (var i = 0; i < grades.length; i++) {
|
157
|
+
from = grades[i];
|
158
|
+
to = grades[i + 1];
|
159
|
+
|
160
|
+
labels.push(
|
161
|
+
'<i style="background:' + getColor(from + 1) + '"></i> ' +
|
162
|
+
from + (to ? '–' + to : '+'));
|
163
|
+
}
|
164
|
+
|
165
|
+
div.innerHTML = labels.join('<br>');
|
166
|
+
return div;
|
167
|
+
};
|
168
|
+
|
169
|
+
legend.addTo(map);
|
170
|
+
|
171
|
+
</script>
|
172
|
+
</body>
|
173
|
+
</html>
|