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,144 @@
|
|
1
|
+
describe('LatLngBounds', function () {
|
2
|
+
var a, c;
|
3
|
+
|
4
|
+
beforeEach(function () {
|
5
|
+
a = new L.LatLngBounds(
|
6
|
+
new L.LatLng(14, 12),
|
7
|
+
new L.LatLng(30, 40));
|
8
|
+
c = new L.LatLngBounds();
|
9
|
+
});
|
10
|
+
|
11
|
+
describe('constructor', function () {
|
12
|
+
it('instantiates either passing two latlngs or an array of latlngs', function () {
|
13
|
+
var b = new L.LatLngBounds([
|
14
|
+
new L.LatLng(14, 12),
|
15
|
+
new L.LatLng(30, 40)
|
16
|
+
]);
|
17
|
+
expect(b).to.eql(a);
|
18
|
+
expect(b.getNorthWest()).to.eql(new L.LatLng(30, 12));
|
19
|
+
});
|
20
|
+
});
|
21
|
+
|
22
|
+
describe('#extend', function () {
|
23
|
+
it('extends the bounds by a given point', function () {
|
24
|
+
a.extend(new L.LatLng(20, 50));
|
25
|
+
expect(a.getNorthEast()).to.eql(new L.LatLng(30, 50));
|
26
|
+
});
|
27
|
+
|
28
|
+
it('extends the bounds by given bounds', function () {
|
29
|
+
a.extend([[20, 50], [8, 40]]);
|
30
|
+
expect(a.getSouthEast()).to.eql(new L.LatLng(8, 50));
|
31
|
+
});
|
32
|
+
|
33
|
+
it('extends the bounds by undefined', function () {
|
34
|
+
expect(a.extend()).to.eql(a);
|
35
|
+
});
|
36
|
+
|
37
|
+
it('extends the bounds by raw object', function () {
|
38
|
+
a.extend({lat: 20, lng: 50});
|
39
|
+
expect(a.getNorthEast()).to.eql(new L.LatLng(30, 50));
|
40
|
+
});
|
41
|
+
});
|
42
|
+
|
43
|
+
describe('#getCenter', function () {
|
44
|
+
it('returns the bounds center', function () {
|
45
|
+
expect(a.getCenter()).to.eql(new L.LatLng(22, 26));
|
46
|
+
});
|
47
|
+
});
|
48
|
+
|
49
|
+
describe('#pad', function () {
|
50
|
+
it('pads the bounds by a given ratio', function () {
|
51
|
+
var b = a.pad(0.5);
|
52
|
+
|
53
|
+
expect(b).to.eql(L.latLngBounds([[6, -2], [38, 54]]));
|
54
|
+
});
|
55
|
+
});
|
56
|
+
|
57
|
+
describe('#equals', function () {
|
58
|
+
it('returns true if bounds equal', function () {
|
59
|
+
expect(a.equals([[14, 12], [30, 40]])).to.eql(true);
|
60
|
+
expect(a.equals([[14, 13], [30, 40]])).to.eql(false);
|
61
|
+
expect(a.equals(null)).to.eql(false);
|
62
|
+
});
|
63
|
+
});
|
64
|
+
|
65
|
+
describe('#isValid', function () {
|
66
|
+
it('returns true if properly set up', function () {
|
67
|
+
expect(a.isValid()).to.be.ok();
|
68
|
+
});
|
69
|
+
it('returns false if is invalid', function () {
|
70
|
+
expect(c.isValid()).to.not.be.ok();
|
71
|
+
});
|
72
|
+
it('returns true if extended', function () {
|
73
|
+
c.extend([0, 0]);
|
74
|
+
expect(c.isValid()).to.be.ok();
|
75
|
+
});
|
76
|
+
});
|
77
|
+
|
78
|
+
describe('#getWest', function () {
|
79
|
+
it('returns a proper bbox west value', function () {
|
80
|
+
expect(a.getWest()).to.eql(12);
|
81
|
+
});
|
82
|
+
});
|
83
|
+
|
84
|
+
describe('#getSouth', function () {
|
85
|
+
it('returns a proper bbox south value', function () {
|
86
|
+
expect(a.getSouth()).to.eql(14);
|
87
|
+
});
|
88
|
+
|
89
|
+
});
|
90
|
+
|
91
|
+
describe('#getEast', function () {
|
92
|
+
it('returns a proper bbox east value', function () {
|
93
|
+
expect(a.getEast()).to.eql(40);
|
94
|
+
});
|
95
|
+
|
96
|
+
});
|
97
|
+
|
98
|
+
describe('#getNorth', function () {
|
99
|
+
it('returns a proper bbox north value', function () {
|
100
|
+
expect(a.getNorth()).to.eql(30);
|
101
|
+
});
|
102
|
+
|
103
|
+
});
|
104
|
+
|
105
|
+
describe('#toBBoxString', function () {
|
106
|
+
it('returns a proper left,bottom,right,top bbox', function () {
|
107
|
+
expect(a.toBBoxString()).to.eql("12,14,40,30");
|
108
|
+
});
|
109
|
+
|
110
|
+
});
|
111
|
+
|
112
|
+
describe('#getNorthWest', function () {
|
113
|
+
it('returns a proper north-west LatLng', function () {
|
114
|
+
expect(a.getNorthWest()).to.eql(new L.LatLng(a.getNorth(), a.getWest()));
|
115
|
+
});
|
116
|
+
|
117
|
+
});
|
118
|
+
|
119
|
+
describe('#getSouthEast', function () {
|
120
|
+
it('returns a proper south-east LatLng', function () {
|
121
|
+
expect(a.getSouthEast()).to.eql(new L.LatLng(a.getSouth(), a.getEast()));
|
122
|
+
});
|
123
|
+
});
|
124
|
+
|
125
|
+
describe('#contains', function () {
|
126
|
+
it('returns true if contains latlng point', function () {
|
127
|
+
expect(a.contains([16, 20])).to.eql(true);
|
128
|
+
expect(L.latLngBounds(a).contains([5, 20])).to.eql(false);
|
129
|
+
});
|
130
|
+
|
131
|
+
it('returns true if contains bounds', function () {
|
132
|
+
expect(a.contains([[16, 20], [20, 40]])).to.eql(true);
|
133
|
+
expect(a.contains([[16, 50], [8, 40]])).to.eql(false);
|
134
|
+
});
|
135
|
+
});
|
136
|
+
|
137
|
+
describe('#intersects', function () {
|
138
|
+
it('returns true if intersects the given bounds', function () {
|
139
|
+
expect(a.intersects([[16, 20], [50, 60]])).to.eql(true);
|
140
|
+
expect(a.contains([[40, 50], [50, 60]])).to.eql(false);
|
141
|
+
});
|
142
|
+
});
|
143
|
+
|
144
|
+
});
|
@@ -0,0 +1,102 @@
|
|
1
|
+
describe('LatLng', function () {
|
2
|
+
describe('constructor', function () {
|
3
|
+
it("sets lat and lng", function () {
|
4
|
+
var a = new L.LatLng(25, 74);
|
5
|
+
expect(a.lat).to.eql(25);
|
6
|
+
expect(a.lng).to.eql(74);
|
7
|
+
|
8
|
+
var b = new L.LatLng(-25, -74);
|
9
|
+
expect(b.lat).to.eql(-25);
|
10
|
+
expect(b.lng).to.eql(-74);
|
11
|
+
});
|
12
|
+
|
13
|
+
it('throws an error if invalid lat or lng', function () {
|
14
|
+
expect(function () {
|
15
|
+
var a = new L.LatLng(NaN, NaN);
|
16
|
+
}).to.throwError();
|
17
|
+
});
|
18
|
+
|
19
|
+
it('does not set altitude if undefined', function () {
|
20
|
+
var a = new L.LatLng(25, 74);
|
21
|
+
expect(typeof a.alt).to.eql('undefined');
|
22
|
+
});
|
23
|
+
|
24
|
+
it('sets altitude', function () {
|
25
|
+
var a = new L.LatLng(25, 74, 50);
|
26
|
+
expect(a.alt).to.eql(50);
|
27
|
+
|
28
|
+
var b = new L.LatLng(-25, -74, -50);
|
29
|
+
expect(b.alt).to.eql(-50);
|
30
|
+
});
|
31
|
+
|
32
|
+
});
|
33
|
+
|
34
|
+
describe('#equals', function () {
|
35
|
+
it("returns true if compared objects are equal within a certain margin", function () {
|
36
|
+
var a = new L.LatLng(10, 20);
|
37
|
+
var b = new L.LatLng(10 + 1.0E-10, 20 - 1.0E-10);
|
38
|
+
expect(a.equals(b)).to.eql(true);
|
39
|
+
});
|
40
|
+
|
41
|
+
it("returns false if compared objects are not equal within a certain margin", function () {
|
42
|
+
var a = new L.LatLng(10, 20);
|
43
|
+
var b = new L.LatLng(10, 23.3);
|
44
|
+
expect(a.equals(b)).to.eql(false);
|
45
|
+
});
|
46
|
+
|
47
|
+
it('returns false if passed non-valid object', function () {
|
48
|
+
var a = new L.LatLng(10, 20);
|
49
|
+
expect(a.equals(null)).to.eql(false);
|
50
|
+
});
|
51
|
+
});
|
52
|
+
|
53
|
+
describe('#toString', function () {
|
54
|
+
it('formats a string', function () {
|
55
|
+
var a = new L.LatLng(10.333333333, 20.2222222);
|
56
|
+
expect(a.toString(3)).to.eql('LatLng(10.333, 20.222)');
|
57
|
+
});
|
58
|
+
});
|
59
|
+
|
60
|
+
describe('#distanceTo', function () {
|
61
|
+
it('calculates distance in meters', function () {
|
62
|
+
var a = new L.LatLng(50.5, 30.5);
|
63
|
+
var b = new L.LatLng(50, 1);
|
64
|
+
|
65
|
+
expect(Math.abs(Math.round(a.distanceTo(b) / 1000) - 2084) < 5).to.eql(true);
|
66
|
+
});
|
67
|
+
});
|
68
|
+
|
69
|
+
describe('L.latLng factory', function () {
|
70
|
+
it('returns LatLng instance as is', function () {
|
71
|
+
var a = new L.LatLng(50, 30);
|
72
|
+
|
73
|
+
expect(L.latLng(a)).to.eql(a);
|
74
|
+
});
|
75
|
+
|
76
|
+
it('accepts an array of coordinates', function () {
|
77
|
+
expect(L.latLng([50, 30])).to.eql(new L.LatLng(50, 30));
|
78
|
+
});
|
79
|
+
|
80
|
+
it('passes null or undefined as is', function () {
|
81
|
+
expect(L.latLng(undefined)).to.eql(undefined);
|
82
|
+
expect(L.latLng(null)).to.eql(null);
|
83
|
+
});
|
84
|
+
|
85
|
+
it('creates a LatLng object from two coordinates', function () {
|
86
|
+
expect(L.latLng(50, 30)).to.eql(new L.LatLng(50, 30));
|
87
|
+
});
|
88
|
+
|
89
|
+
it('accepts an object with lat/lng', function () {
|
90
|
+
expect(L.latLng({lat: 50, lng: 30})).to.eql(new L.LatLng(50, 30));
|
91
|
+
});
|
92
|
+
|
93
|
+
it('accepts an object with lat/lon', function () {
|
94
|
+
expect(L.latLng({lat: 50, lon: 30})).to.eql(new L.LatLng(50, 30));
|
95
|
+
});
|
96
|
+
|
97
|
+
it('returns null if lng not specified', function () {
|
98
|
+
expect(L.latLng(50)).to.be(null);
|
99
|
+
});
|
100
|
+
});
|
101
|
+
});
|
102
|
+
|
@@ -0,0 +1,96 @@
|
|
1
|
+
describe("Projection.Mercator", function () {
|
2
|
+
var p = L.Projection.Mercator;
|
3
|
+
|
4
|
+
describe("#project", function () {
|
5
|
+
it("projects a center point", function () {
|
6
|
+
//edge cases
|
7
|
+
expect(p.project(new L.LatLng(0, 0))).near(new L.Point(0, 0));
|
8
|
+
});
|
9
|
+
|
10
|
+
it("projects the northeast corner of the world", function () {
|
11
|
+
expect(p.project(new L.LatLng(85.0840591556, 180))).near(new L.Point(20037508, 20037508));
|
12
|
+
});
|
13
|
+
|
14
|
+
it("projects the southwest corner of the world", function () {
|
15
|
+
expect(p.project(new L.LatLng(-85.0840591556, -180))).near(new L.Point(-20037508, -20037508));
|
16
|
+
});
|
17
|
+
|
18
|
+
it("projects other points", function () {
|
19
|
+
expect(p.project(new L.LatLng(50, 30))).near(new L.Point(3339584, 6413524));
|
20
|
+
|
21
|
+
// from https://github.com/Leaflet/Leaflet/issues/1578
|
22
|
+
expect(p.project(new L.LatLng(51.9371170300465, 80.11230468750001)))
|
23
|
+
.near(new L.Point(8918060.964088084, 6755099.410887127));
|
24
|
+
});
|
25
|
+
});
|
26
|
+
|
27
|
+
describe("#unproject", function () {
|
28
|
+
function pr(point) {
|
29
|
+
return p.project(p.unproject(point));
|
30
|
+
}
|
31
|
+
|
32
|
+
it("unprojects a center point", function () {
|
33
|
+
expect(pr(new L.Point(0, 0))).near(new L.Point(0, 0));
|
34
|
+
});
|
35
|
+
|
36
|
+
it("unprojects pi points", function () {
|
37
|
+
expect(pr(new L.Point(-Math.PI, Math.PI))).near(new L.Point(-Math.PI, Math.PI));
|
38
|
+
expect(pr(new L.Point(-Math.PI, -Math.PI))).near(new L.Point(-Math.PI, -Math.PI));
|
39
|
+
|
40
|
+
expect(pr(new L.Point(0.523598775598, 1.010683188683))).near(new L.Point(0.523598775598, 1.010683188683));
|
41
|
+
});
|
42
|
+
|
43
|
+
it('unprojects other points', function () {
|
44
|
+
// from https://github.com/Leaflet/Leaflet/issues/1578
|
45
|
+
expect(pr(new L.Point(8918060.964088084, 6755099.410887127)));
|
46
|
+
});
|
47
|
+
});
|
48
|
+
});
|
49
|
+
describe("Projection.SphericalMercator", function () {
|
50
|
+
var p = L.Projection.SphericalMercator;
|
51
|
+
|
52
|
+
describe("#project", function () {
|
53
|
+
it("projects a center point", function () {
|
54
|
+
//edge cases
|
55
|
+
expect(p.project(new L.LatLng(0, 0))).near(new L.Point(0, 0));
|
56
|
+
});
|
57
|
+
|
58
|
+
it("projects the northeast corner of the world", function () {
|
59
|
+
expect(p.project(new L.LatLng(85.0511287798, 180))).near(new L.Point(20037508, 20037508));
|
60
|
+
});
|
61
|
+
|
62
|
+
it("projects the southwest corner of the world", function () {
|
63
|
+
expect(p.project(new L.LatLng(-85.0511287798, -180))).near(new L.Point(-20037508, -20037508));
|
64
|
+
});
|
65
|
+
|
66
|
+
it("projects other points", function () {
|
67
|
+
expect(p.project(new L.LatLng(50, 30))).near(new L.Point(3339584, 6446275));
|
68
|
+
|
69
|
+
// from https://github.com/Leaflet/Leaflet/issues/1578
|
70
|
+
expect(p.project(new L.LatLng(51.9371170300465, 80.11230468750001)))
|
71
|
+
.near(new L.Point(8918060.96409, 6788763.38325));
|
72
|
+
});
|
73
|
+
});
|
74
|
+
|
75
|
+
describe("#unproject", function () {
|
76
|
+
function pr(point) {
|
77
|
+
return p.project(p.unproject(point));
|
78
|
+
}
|
79
|
+
|
80
|
+
it("unprojects a center point", function () {
|
81
|
+
expect(pr(new L.Point(0, 0))).near(new L.Point(0, 0));
|
82
|
+
});
|
83
|
+
|
84
|
+
it("unprojects pi points", function () {
|
85
|
+
expect(pr(new L.Point(-Math.PI, Math.PI))).near(new L.Point(-Math.PI, Math.PI));
|
86
|
+
expect(pr(new L.Point(-Math.PI, -Math.PI))).near(new L.Point(-Math.PI, -Math.PI));
|
87
|
+
|
88
|
+
expect(pr(new L.Point(0.523598775598, 1.010683188683))).near(new L.Point(0.523598775598, 1.010683188683));
|
89
|
+
});
|
90
|
+
|
91
|
+
it('unprojects other points', function () {
|
92
|
+
// from https://github.com/Leaflet/Leaflet/issues/1578
|
93
|
+
expect(pr(new L.Point(8918060.964088084, 6755099.410887127)));
|
94
|
+
});
|
95
|
+
});
|
96
|
+
});
|
@@ -0,0 +1,87 @@
|
|
1
|
+
describe('Bounds', function () {
|
2
|
+
var a, b, c;
|
3
|
+
|
4
|
+
beforeEach(function () {
|
5
|
+
a = new L.Bounds(
|
6
|
+
new L.Point(14, 12),
|
7
|
+
new L.Point(30, 40));
|
8
|
+
b = new L.Bounds([
|
9
|
+
new L.Point(20, 12),
|
10
|
+
new L.Point(14, 20),
|
11
|
+
new L.Point(30, 40)
|
12
|
+
]);
|
13
|
+
c = new L.Bounds();
|
14
|
+
});
|
15
|
+
|
16
|
+
describe('constructor', function () {
|
17
|
+
it('creates bounds with proper min & max on (Point, Point)', function () {
|
18
|
+
expect(a.min).to.eql(new L.Point(14, 12));
|
19
|
+
expect(a.max).to.eql(new L.Point(30, 40));
|
20
|
+
});
|
21
|
+
it('creates bounds with proper min & max on (Point[])', function () {
|
22
|
+
expect(b.min).to.eql(new L.Point(14, 12));
|
23
|
+
expect(b.max).to.eql(new L.Point(30, 40));
|
24
|
+
});
|
25
|
+
});
|
26
|
+
|
27
|
+
describe('#extend', function () {
|
28
|
+
it('extends the bounds to contain the given point', function () {
|
29
|
+
a.extend(new L.Point(50, 20));
|
30
|
+
expect(a.min).to.eql(new L.Point(14, 12));
|
31
|
+
expect(a.max).to.eql(new L.Point(50, 40));
|
32
|
+
|
33
|
+
b.extend(new L.Point(25, 50));
|
34
|
+
expect(b.min).to.eql(new L.Point(14, 12));
|
35
|
+
expect(b.max).to.eql(new L.Point(30, 50));
|
36
|
+
});
|
37
|
+
});
|
38
|
+
|
39
|
+
describe('#getCenter', function () {
|
40
|
+
it('returns the center point', function () {
|
41
|
+
expect(a.getCenter()).to.eql(new L.Point(22, 26));
|
42
|
+
});
|
43
|
+
});
|
44
|
+
|
45
|
+
describe('#contains', function () {
|
46
|
+
it('contains other bounds or point', function () {
|
47
|
+
a.extend(new L.Point(50, 10));
|
48
|
+
expect(a.contains(b)).to.be.ok();
|
49
|
+
expect(b.contains(a)).to.not.be.ok();
|
50
|
+
expect(a.contains(new L.Point(24, 25))).to.be.ok();
|
51
|
+
expect(a.contains(new L.Point(54, 65))).to.not.be.ok();
|
52
|
+
});
|
53
|
+
});
|
54
|
+
|
55
|
+
describe('#isValid', function () {
|
56
|
+
it('returns true if properly set up', function () {
|
57
|
+
expect(a.isValid()).to.be.ok();
|
58
|
+
});
|
59
|
+
it('returns false if is invalid', function () {
|
60
|
+
expect(c.isValid()).to.not.be.ok();
|
61
|
+
});
|
62
|
+
it('returns true if extended', function () {
|
63
|
+
c.extend([0, 0]);
|
64
|
+
expect(c.isValid()).to.be.ok();
|
65
|
+
});
|
66
|
+
});
|
67
|
+
|
68
|
+
describe('#getSize', function () {
|
69
|
+
it('returns the size of the bounds as point', function () {
|
70
|
+
expect(a.getSize()).to.eql(new L.Point(16, 28));
|
71
|
+
});
|
72
|
+
});
|
73
|
+
|
74
|
+
describe('#intersects', function () {
|
75
|
+
it('returns true if bounds intersect', function () {
|
76
|
+
expect(a.intersects(b)).to.be(true);
|
77
|
+
expect(a.intersects(new L.Bounds(new L.Point(100, 100), new L.Point(120, 120)))).to.eql(false);
|
78
|
+
});
|
79
|
+
});
|
80
|
+
|
81
|
+
describe('L.bounds factory', function () {
|
82
|
+
it('creates bounds from array of number arrays', function () {
|
83
|
+
var bounds = L.bounds([[14, 12], [30, 40]]);
|
84
|
+
expect(bounds).to.eql(a);
|
85
|
+
});
|
86
|
+
});
|
87
|
+
});
|
@@ -0,0 +1,75 @@
|
|
1
|
+
describe('LineUtil', function () {
|
2
|
+
|
3
|
+
describe('#clipSegment', function () {
|
4
|
+
|
5
|
+
var bounds;
|
6
|
+
|
7
|
+
beforeEach(function () {
|
8
|
+
bounds = L.bounds([5, 0], [15, 10]);
|
9
|
+
});
|
10
|
+
|
11
|
+
it('clips a segment by bounds', function () {
|
12
|
+
var a = new L.Point(0, 0);
|
13
|
+
var b = new L.Point(15, 15);
|
14
|
+
|
15
|
+
var segment = L.LineUtil.clipSegment(a, b, bounds);
|
16
|
+
|
17
|
+
expect(segment[0]).to.eql(new L.Point(5, 5));
|
18
|
+
expect(segment[1]).to.eql(new L.Point(10, 10));
|
19
|
+
|
20
|
+
var c = new L.Point(5, -5);
|
21
|
+
var d = new L.Point(20, 10);
|
22
|
+
|
23
|
+
var segment2 = L.LineUtil.clipSegment(c, d, bounds);
|
24
|
+
|
25
|
+
expect(segment2[0]).to.eql(new L.Point(10, 0));
|
26
|
+
expect(segment2[1]).to.eql(new L.Point(15, 5));
|
27
|
+
});
|
28
|
+
|
29
|
+
it('uses last bit code and reject segments out of bounds', function () {
|
30
|
+
var a = new L.Point(15, 15);
|
31
|
+
var b = new L.Point(25, 20);
|
32
|
+
var segment = L.LineUtil.clipSegment(a, b, bounds, true);
|
33
|
+
|
34
|
+
expect(segment).to.be(false);
|
35
|
+
});
|
36
|
+
});
|
37
|
+
|
38
|
+
describe('#pointToSegmentDistance & #closestPointOnSegment', function () {
|
39
|
+
|
40
|
+
var p1 = new L.Point(0, 10);
|
41
|
+
var p2 = new L.Point(10, 0);
|
42
|
+
var p = new L.Point(0, 0);
|
43
|
+
|
44
|
+
it('calculates distance from point to segment', function () {
|
45
|
+
expect(L.LineUtil.pointToSegmentDistance(p, p1, p2)).to.eql(Math.sqrt(200) / 2);
|
46
|
+
});
|
47
|
+
|
48
|
+
it('calculates point closest to segment', function () {
|
49
|
+
expect(L.LineUtil.closestPointOnSegment(p, p1, p2)).to.eql(new L.Point(5, 5));
|
50
|
+
});
|
51
|
+
});
|
52
|
+
|
53
|
+
describe('#simplify', function () {
|
54
|
+
it('simplifies polylines according to tolerance', function () {
|
55
|
+
var points = [
|
56
|
+
new L.Point(0, 0),
|
57
|
+
new L.Point(0.01, 0),
|
58
|
+
new L.Point(0.5, 0.01),
|
59
|
+
new L.Point(0.7, 0),
|
60
|
+
new L.Point(1, 0),
|
61
|
+
new L.Point(1.999, 0.999),
|
62
|
+
new L.Point(2, 1)
|
63
|
+
];
|
64
|
+
|
65
|
+
var simplified = L.LineUtil.simplify(points, 0.1);
|
66
|
+
|
67
|
+
expect(simplified).to.eql([
|
68
|
+
new L.Point(0, 0),
|
69
|
+
new L.Point(1, 0),
|
70
|
+
new L.Point(2, 1)
|
71
|
+
]);
|
72
|
+
});
|
73
|
+
});
|
74
|
+
|
75
|
+
});
|