leaflet-js 0.6.beta4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +15 -0
- data/CHANGELOG.rdoc +32 -0
- data/LICENSE +21 -0
- data/README.rdoc +54 -0
- data/Rakefile +15 -0
- data/leaflet-js.gemspec +28 -0
- data/lib/leaflet-js.rb +10 -0
- data/lib/leaflet.draw/BREAKINGCHANGES.md +54 -0
- data/lib/leaflet.draw/CHANGELOG.md +73 -0
- data/lib/leaflet.draw/Jakefile.js +26 -0
- data/lib/leaflet.draw/MIT-LICENCE.txt +20 -0
- data/lib/leaflet.draw/README.md +364 -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 +189 -0
- data/lib/leaflet.draw/build/deps.js +75 -0
- data/lib/leaflet.draw/build/hintrc.js +47 -0
- data/lib/leaflet.draw/build/leaflet.draw-include.js +42 -0
- data/lib/leaflet.draw/dist/images/spritesheet.png +0 -0
- data/lib/leaflet.draw/dist/leaflet.draw-src.js +2429 -0
- data/lib/leaflet.draw/dist/leaflet.draw.css +212 -0
- data/lib/leaflet.draw/dist/leaflet.draw.ie.css +44 -0
- data/lib/leaflet.draw/dist/leaflet.draw.js +10 -0
- data/lib/leaflet.draw/examples/basic.html +106 -0
- data/lib/leaflet.draw/examples/edithandlers.html +67 -0
- data/lib/leaflet.draw/examples/libs/images/layers.png +0 -0
- data/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/lib/leaflet.draw/examples/libs/images/marker-shadow.png +0 -0
- data/lib/leaflet.draw/examples/libs/leaflet-src.js +8587 -0
- data/lib/leaflet.draw/examples/libs/leaflet.css +459 -0
- data/lib/leaflet.draw/examples/libs/leaflet.ie.css +51 -0
- data/lib/leaflet.draw/package.json +37 -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 +36 -0
- data/lib/leaflet.draw/spec/karma.conf.js +69 -0
- data/lib/leaflet.draw/spec/sinon.js +4223 -0
- data/lib/leaflet.draw/spec/suites/DrawControlSpec.js +15 -0
- data/lib/leaflet.draw/spec/suites/SpecHelper.js +26 -0
- data/lib/leaflet.draw/src/Control.Draw.js +101 -0
- data/lib/leaflet.draw/src/Leaflet.draw.js +5 -0
- data/lib/leaflet.draw/src/Toolbar.js +187 -0
- data/lib/leaflet.draw/src/Tooltip.js +52 -0
- data/lib/leaflet.draw/src/copyright.js +8 -0
- data/lib/leaflet.draw/src/draw/DrawToolbar.js +107 -0
- data/lib/leaflet.draw/src/draw/handler/Draw.Circle.js +59 -0
- data/lib/leaflet.draw/src/draw/handler/Draw.Feature.js +74 -0
- data/lib/leaflet.draw/src/draw/handler/Draw.Marker.js +97 -0
- data/lib/leaflet.draw/src/draw/handler/Draw.Polygon.js +79 -0
- data/lib/leaflet.draw/src/draw/handler/Draw.Polyline.js +360 -0
- data/lib/leaflet.draw/src/draw/handler/Draw.Rectangle.js +41 -0
- data/lib/leaflet.draw/src/draw/handler/Draw.SimpleShape.js +67 -0
- data/lib/leaflet.draw/src/edit/EditToolbar.js +93 -0
- data/lib/leaflet.draw/src/edit/handler/Edit.Circle.js +63 -0
- data/lib/leaflet.draw/src/edit/handler/Edit.Poly.js +267 -0
- data/lib/leaflet.draw/src/edit/handler/Edit.Rectangle.js +117 -0
- data/lib/leaflet.draw/src/edit/handler/Edit.SimpleShape.js +138 -0
- data/lib/leaflet.draw/src/edit/handler/EditToolbar.Delete.js +109 -0
- data/lib/leaflet.draw/src/edit/handler/EditToolbar.Edit.js +233 -0
- data/lib/leaflet.draw/src/ext/LatLngUtil.js +18 -0
- data/lib/leaflet.draw/src/ext/LineUtil.Intersect.js +15 -0
- data/lib/leaflet.draw/src/ext/Polygon.Intersect.js +27 -0
- data/lib/leaflet.draw/src/ext/Polyline.Intersect.js +85 -0
- data/lib/leaflet.label/CHANGELOG.md +35 -0
- data/lib/leaflet.label/Jakefile.js +21 -0
- data/lib/leaflet.label/MIT-LICENCE.txt +20 -0
- data/lib/leaflet.label/README.md +86 -0
- data/lib/leaflet.label/build/build.js +155 -0
- data/lib/leaflet.label/build/deps.js +24 -0
- data/lib/leaflet.label/build/hint.js +30 -0
- data/lib/leaflet.label/build/hintrc.js +47 -0
- data/lib/leaflet.label/dist/images/death.png +0 -0
- data/lib/leaflet.label/dist/leaflet.label-src.js +359 -0
- data/lib/leaflet.label/dist/leaflet.label.css +33 -0
- data/lib/leaflet.label/dist/leaflet.label.js +9 -0
- data/lib/leaflet.label/example/label.html +82 -0
- data/lib/leaflet.label/libs/leaflet/images/layers.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 +8587 -0
- data/lib/leaflet.label/libs/leaflet/leaflet.css +459 -0
- data/lib/leaflet.label/libs/leaflet/leaflet.ie.css +51 -0
- data/lib/leaflet.label/libs/leaflet/leaflet.js +8 -0
- data/lib/leaflet.label/src/FeatureGroup.Label.js +20 -0
- data/lib/leaflet.label/src/Label.js +123 -0
- data/lib/leaflet.label/src/Leaflet.label.js +5 -0
- data/lib/leaflet.label/src/Map.Label.js +7 -0
- data/lib/leaflet.label/src/Marker.Label.js +160 -0
- data/lib/leaflet.label/src/Path.Label.js +55 -0
- data/lib/leaflet.label/src/copyright.js +8 -0
- data/lib/leaflet/CHANGELOG.md +637 -0
- data/lib/leaflet/CONTRIBUTING.md +155 -0
- data/lib/leaflet/Jakefile.js +26 -0
- data/lib/leaflet/LICENSE +23 -0
- data/lib/leaflet/README.md +30 -0
- data/lib/leaflet/build/build.html +243 -0
- data/lib/leaflet/build/build.js +193 -0
- data/lib/leaflet/build/deps.js +256 -0
- data/lib/leaflet/build/hintrc.js +37 -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 +43 -0
- data/lib/leaflet/debug/leaflet-include.js +59 -0
- data/lib/leaflet/debug/map/canvas.html +47 -0
- data/lib/leaflet/debug/map/controls.html +50 -0
- data/lib/leaflet/debug/map/geolocation.html +35 -0
- data/lib/leaflet/debug/map/image-overlay.html +44 -0
- data/lib/leaflet/debug/map/map-mobile.html +35 -0
- data/lib/leaflet/debug/map/map.html +60 -0
- data/lib/leaflet/debug/map/max-bounds.html +37 -0
- data/lib/leaflet/debug/map/scroll.html +36 -0
- data/lib/leaflet/debug/map/simple-proj.html +45 -0
- data/lib/leaflet/debug/map/wms-marble.html +31 -0
- data/lib/leaflet/debug/map/wms.html +41 -0
- data/lib/leaflet/debug/map/zoomlevels.html +46 -0
- data/lib/leaflet/debug/tests/add_remove_layers.html +88 -0
- data/lib/leaflet/debug/tests/bringtoback.html +38 -0
- data/lib/leaflet/debug/tests/click_on_canvas.html +59 -0
- data/lib/leaflet/debug/tests/click_on_canvas_broken.html +49 -0
- data/lib/leaflet/debug/tests/opacity.html +57 -0
- data/lib/leaflet/debug/tests/remove_while_dragging.html +29 -0
- data/lib/leaflet/debug/tests/removetilewhilepan.html +42 -0
- data/lib/leaflet/debug/tests/reuse_popups.html +41 -0
- data/lib/leaflet/debug/tests/svg_clicks.html +55 -0
- data/lib/leaflet/debug/vector/bounds-extend.html +89 -0
- data/lib/leaflet/debug/vector/feature-group-bounds.html +91 -0
- data/lib/leaflet/debug/vector/geojson-sample.js +53 -0
- data/lib/leaflet/debug/vector/geojson.html +174 -0
- data/lib/leaflet/debug/vector/rectangle.html +54 -0
- data/lib/leaflet/debug/vector/route.js +1 -0
- data/lib/leaflet/debug/vector/touchzoomemu.html +195 -0
- data/lib/leaflet/debug/vector/us-states.js +54 -0
- data/lib/leaflet/debug/vector/vector-bounds.html +70 -0
- data/lib/leaflet/debug/vector/vector-canvas.html +93 -0
- data/lib/leaflet/debug/vector/vector-mobile.html +39 -0
- data/lib/leaflet/debug/vector/vector-simple.html +49 -0
- data/lib/leaflet/debug/vector/vector.html +38 -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-src.js +8579 -0
- data/lib/leaflet/dist/leaflet.css +459 -0
- data/lib/leaflet/dist/leaflet.ie.css +51 -0
- data/lib/leaflet/dist/leaflet.js +8 -0
- data/lib/leaflet/package.json +22 -0
- data/lib/leaflet/spec/after.js +2 -0
- data/lib/leaflet/spec/before.js +3 -0
- data/lib/leaflet/spec/expect.js +1253 -0
- data/lib/leaflet/spec/happen.js +93 -0
- data/lib/leaflet/spec/index.html +78 -0
- data/lib/leaflet/spec/karma.conf.js +64 -0
- data/lib/leaflet/spec/sinon.js +4223 -0
- data/lib/leaflet/spec/suites/LeafletSpec.js +13 -0
- data/lib/leaflet/spec/suites/SpecHelper.js +26 -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 +156 -0
- data/lib/leaflet/spec/suites/core/EventsSpec.js +336 -0
- data/lib/leaflet/spec/suites/core/UtilSpec.js +212 -0
- data/lib/leaflet/spec/suites/dom/DomEventSpec.js +102 -0
- data/lib/leaflet/spec/suites/dom/DomUtilSpec.js +89 -0
- data/lib/leaflet/spec/suites/geo/LatLngBoundsSpec.js +136 -0
- data/lib/leaflet/spec/suites/geo/LatLngSpec.js +118 -0
- data/lib/leaflet/spec/suites/geo/ProjectionSpec.js +47 -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 +36 -0
- data/lib/leaflet/spec/suites/layer/GeoJSONSpec.js +86 -0
- data/lib/leaflet/spec/suites/layer/LayerGroupSpec.js +58 -0
- data/lib/leaflet/spec/suites/layer/PopupSpec.js +59 -0
- data/lib/leaflet/spec/suites/layer/TileLayerSpec.js +87 -0
- data/lib/leaflet/spec/suites/layer/vector/CircleMarkerSpec.js +53 -0
- data/lib/leaflet/spec/suites/layer/vector/CircleSpec.js +17 -0
- data/lib/leaflet/spec/suites/layer/vector/PolygonSpec.js +55 -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 +244 -0
- data/lib/leaflet/src/Leaflet.js +23 -0
- data/lib/leaflet/src/control/Control.Attribution.js +115 -0
- data/lib/leaflet/src/control/Control.Layers.js +243 -0
- data/lib/leaflet/src/control/Control.Scale.js +112 -0
- data/lib/leaflet/src/control/Control.Zoom.js +86 -0
- data/lib/leaflet/src/control/Control.js +107 -0
- data/lib/leaflet/src/copyright.js +4 -0
- data/lib/leaflet/src/core/Browser.js +96 -0
- data/lib/leaflet/src/core/Class.js +106 -0
- data/lib/leaflet/src/core/Events.js +174 -0
- data/lib/leaflet/src/core/Handler.js +28 -0
- data/lib/leaflet/src/core/Util.js +182 -0
- data/lib/leaflet/src/dom/DomEvent.DoubleTap.js +103 -0
- data/lib/leaflet/src/dom/DomEvent.MsTouch.js +146 -0
- data/lib/leaflet/src/dom/DomEvent.js +211 -0
- data/lib/leaflet/src/dom/DomUtil.js +239 -0
- data/lib/leaflet/src/dom/Draggable.js +198 -0
- data/lib/leaflet/src/dom/PosAnimation.Timer.js +67 -0
- data/lib/leaflet/src/dom/PosAnimation.js +83 -0
- data/lib/leaflet/src/geo/LatLng.js +88 -0
- data/lib/leaflet/src/geo/LatLngBounds.js +153 -0
- data/lib/leaflet/src/geo/crs/CRS.EPSG3395.js +14 -0
- data/lib/leaflet/src/geo/crs/CRS.EPSG3857.js +21 -0
- data/lib/leaflet/src/geo/crs/CRS.EPSG4326.js +10 -0
- data/lib/leaflet/src/geo/crs/CRS.Simple.js +12 -0
- data/lib/leaflet/src/geo/crs/CRS.js +27 -0
- data/lib/leaflet/src/geo/projection/Projection.LonLat.js +13 -0
- data/lib/leaflet/src/geo/projection/Projection.Mercator.js +56 -0
- data/lib/leaflet/src/geo/projection/Projection.SphericalMercator.js +27 -0
- data/lib/leaflet/src/geo/projection/Projection.js +5 -0
- data/lib/leaflet/src/geometry/Bounds.js +95 -0
- data/lib/leaflet/src/geometry/LineUtil.js +202 -0
- data/lib/leaflet/src/geometry/Point.js +119 -0
- data/lib/leaflet/src/geometry/PolyUtil.js +55 -0
- data/lib/leaflet/src/geometry/Transformation.js +31 -0
- data/lib/leaflet/src/images/marker.svg +1 -0
- data/lib/leaflet/src/layer/FeatureGroup.js +81 -0
- data/lib/leaflet/src/layer/GeoJSON.js +245 -0
- data/lib/leaflet/src/layer/ImageOverlay.js +132 -0
- data/lib/leaflet/src/layer/LayerGroup.js +110 -0
- data/lib/leaflet/src/layer/Popup.js +316 -0
- data/lib/leaflet/src/layer/marker/DivIcon.js +43 -0
- data/lib/leaflet/src/layer/marker/Icon.Default.js +51 -0
- data/lib/leaflet/src/layer/marker/Icon.js +101 -0
- data/lib/leaflet/src/layer/marker/Marker.Drag.js +66 -0
- data/lib/leaflet/src/layer/marker/Marker.Popup.js +72 -0
- data/lib/leaflet/src/layer/marker/Marker.js +275 -0
- data/lib/leaflet/src/layer/tile/TileLayer.Anim.js +117 -0
- data/lib/leaflet/src/layer/tile/TileLayer.Canvas.js +60 -0
- data/lib/leaflet/src/layer/tile/TileLayer.WMS.js +83 -0
- data/lib/leaflet/src/layer/tile/TileLayer.js +578 -0
- data/lib/leaflet/src/layer/vector/Circle.js +98 -0
- data/lib/leaflet/src/layer/vector/CircleMarker.js +33 -0
- data/lib/leaflet/src/layer/vector/MultiPoly.js +47 -0
- data/lib/leaflet/src/layer/vector/Path.Popup.js +65 -0
- data/lib/leaflet/src/layer/vector/Path.SVG.js +219 -0
- data/lib/leaflet/src/layer/vector/Path.VML.js +125 -0
- data/lib/leaflet/src/layer/vector/Path.js +115 -0
- data/lib/leaflet/src/layer/vector/Polygon.js +81 -0
- data/lib/leaflet/src/layer/vector/Polyline.js +164 -0
- data/lib/leaflet/src/layer/vector/Rectangle.js +27 -0
- data/lib/leaflet/src/layer/vector/canvas/Circle.Canvas.js +18 -0
- data/lib/leaflet/src/layer/vector/canvas/Path.Canvas.js +196 -0
- data/lib/leaflet/src/layer/vector/canvas/Polygon.Canvas.js +37 -0
- data/lib/leaflet/src/layer/vector/canvas/Polyline.Canvas.js +30 -0
- data/lib/leaflet/src/map/Map.js +743 -0
- data/lib/leaflet/src/map/anim/Map.PanAnimation.js +88 -0
- data/lib/leaflet/src/map/anim/Map.ZoomAnimation.js +90 -0
- data/lib/leaflet/src/map/ext/Map.Geolocation.js +91 -0
- data/lib/leaflet/src/map/handler/Map.BoxZoom.js +104 -0
- data/lib/leaflet/src/map/handler/Map.DoubleClickZoom.js +23 -0
- data/lib/leaflet/src/map/handler/Map.Drag.js +146 -0
- data/lib/leaflet/src/map/handler/Map.Keyboard.js +147 -0
- data/lib/leaflet/src/map/handler/Map.ScrollWheelZoom.js +56 -0
- data/lib/leaflet/src/map/handler/Map.TouchZoom.js +121 -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.png +0 -0
- data/vendor/assets/javascripts/leaflet.draw.js +39 -0
- data/vendor/assets/javascripts/leaflet.js +145 -0
- data/vendor/assets/javascripts/leaflet.label.js +9 -0
- data/vendor/assets/stylesheets/leaflet.css.erb +459 -0
- data/vendor/assets/stylesheets/leaflet.draw.css.erb +212 -0
- data/vendor/assets/stylesheets/leaflet.draw.ie.css +44 -0
- data/vendor/assets/stylesheets/leaflet.ie.css +51 -0
- data/vendor/assets/stylesheets/leaflet.label.css +33 -0
- metadata +317 -0
@@ -0,0 +1,27 @@
|
|
1
|
+
/*
|
2
|
+
* Spherical Mercator is the most popular map projection, used by EPSG:3857 CRS used by default.
|
3
|
+
*/
|
4
|
+
|
5
|
+
L.Projection.SphericalMercator = {
|
6
|
+
MAX_LATITUDE: 85.0511287798,
|
7
|
+
|
8
|
+
project: function (latlng) { // (LatLng) -> Point
|
9
|
+
var d = L.LatLng.DEG_TO_RAD,
|
10
|
+
max = this.MAX_LATITUDE,
|
11
|
+
lat = Math.max(Math.min(max, latlng.lat), -max),
|
12
|
+
x = latlng.lng * d,
|
13
|
+
y = lat * d;
|
14
|
+
|
15
|
+
y = Math.log(Math.tan((Math.PI / 4) + (y / 2)));
|
16
|
+
|
17
|
+
return new L.Point(x, y);
|
18
|
+
},
|
19
|
+
|
20
|
+
unproject: function (point) { // (Point, Boolean) -> LatLng
|
21
|
+
var d = L.LatLng.RAD_TO_DEG,
|
22
|
+
lng = point.x * d,
|
23
|
+
lat = (2 * Math.atan(Math.exp(point.y)) - (Math.PI / 2)) * d;
|
24
|
+
|
25
|
+
return new L.LatLng(lat, lng);
|
26
|
+
}
|
27
|
+
};
|
@@ -0,0 +1,95 @@
|
|
1
|
+
/*
|
2
|
+
* L.Bounds represents a rectangular area on the screen in pixel coordinates.
|
3
|
+
*/
|
4
|
+
|
5
|
+
L.Bounds = function (a, b) { //(Point, Point) or Point[]
|
6
|
+
if (!a) { return; }
|
7
|
+
|
8
|
+
var points = b ? [a, b] : a;
|
9
|
+
|
10
|
+
for (var i = 0, len = points.length; i < len; i++) {
|
11
|
+
this.extend(points[i]);
|
12
|
+
}
|
13
|
+
};
|
14
|
+
|
15
|
+
L.Bounds.prototype = {
|
16
|
+
// extend the bounds to contain the given point
|
17
|
+
extend: function (point) { // (Point)
|
18
|
+
point = L.point(point);
|
19
|
+
|
20
|
+
if (!this.min && !this.max) {
|
21
|
+
this.min = point.clone();
|
22
|
+
this.max = point.clone();
|
23
|
+
} else {
|
24
|
+
this.min.x = Math.min(point.x, this.min.x);
|
25
|
+
this.max.x = Math.max(point.x, this.max.x);
|
26
|
+
this.min.y = Math.min(point.y, this.min.y);
|
27
|
+
this.max.y = Math.max(point.y, this.max.y);
|
28
|
+
}
|
29
|
+
return this;
|
30
|
+
},
|
31
|
+
|
32
|
+
getCenter: function (round) { // (Boolean) -> Point
|
33
|
+
return new L.Point(
|
34
|
+
(this.min.x + this.max.x) / 2,
|
35
|
+
(this.min.y + this.max.y) / 2, round);
|
36
|
+
},
|
37
|
+
|
38
|
+
getBottomLeft: function () { // -> Point
|
39
|
+
return new L.Point(this.min.x, this.max.y);
|
40
|
+
},
|
41
|
+
|
42
|
+
getTopRight: function () { // -> Point
|
43
|
+
return new L.Point(this.max.x, this.min.y);
|
44
|
+
},
|
45
|
+
|
46
|
+
getSize: function () {
|
47
|
+
return this.max.subtract(this.min);
|
48
|
+
},
|
49
|
+
|
50
|
+
contains: function (obj) { // (Bounds) or (Point) -> Boolean
|
51
|
+
var min, max;
|
52
|
+
|
53
|
+
if (typeof obj[0] === 'number' || obj instanceof L.Point) {
|
54
|
+
obj = L.point(obj);
|
55
|
+
} else {
|
56
|
+
obj = L.bounds(obj);
|
57
|
+
}
|
58
|
+
|
59
|
+
if (obj instanceof L.Bounds) {
|
60
|
+
min = obj.min;
|
61
|
+
max = obj.max;
|
62
|
+
} else {
|
63
|
+
min = max = obj;
|
64
|
+
}
|
65
|
+
|
66
|
+
return (min.x >= this.min.x) &&
|
67
|
+
(max.x <= this.max.x) &&
|
68
|
+
(min.y >= this.min.y) &&
|
69
|
+
(max.y <= this.max.y);
|
70
|
+
},
|
71
|
+
|
72
|
+
intersects: function (bounds) { // (Bounds) -> Boolean
|
73
|
+
bounds = L.bounds(bounds);
|
74
|
+
|
75
|
+
var min = this.min,
|
76
|
+
max = this.max,
|
77
|
+
min2 = bounds.min,
|
78
|
+
max2 = bounds.max,
|
79
|
+
xIntersects = (max2.x >= min.x) && (min2.x <= max.x),
|
80
|
+
yIntersects = (max2.y >= min.y) && (min2.y <= max.y);
|
81
|
+
|
82
|
+
return xIntersects && yIntersects;
|
83
|
+
},
|
84
|
+
|
85
|
+
isValid: function () {
|
86
|
+
return !!(this.min && this.max);
|
87
|
+
}
|
88
|
+
};
|
89
|
+
|
90
|
+
L.bounds = function (a, b) { // (Bounds) or (Point, Point) or (Point[])
|
91
|
+
if (!a || a instanceof L.Bounds) {
|
92
|
+
return a;
|
93
|
+
}
|
94
|
+
return new L.Bounds(a, b);
|
95
|
+
};
|
@@ -0,0 +1,202 @@
|
|
1
|
+
/*
|
2
|
+
* L.LineUtil contains different utility functions for line segments
|
3
|
+
* and polylines (clipping, simplification, distances, etc.)
|
4
|
+
*/
|
5
|
+
|
6
|
+
/*jshint bitwise:false */ // allow bitwise oprations for this file
|
7
|
+
|
8
|
+
L.LineUtil = {
|
9
|
+
|
10
|
+
// Simplify polyline with vertex reduction and Douglas-Peucker simplification.
|
11
|
+
// Improves rendering performance dramatically by lessening the number of points to draw.
|
12
|
+
|
13
|
+
simplify: function (/*Point[]*/ points, /*Number*/ tolerance) {
|
14
|
+
if (!tolerance || !points.length) {
|
15
|
+
return points.slice();
|
16
|
+
}
|
17
|
+
|
18
|
+
var sqTolerance = tolerance * tolerance;
|
19
|
+
|
20
|
+
// stage 1: vertex reduction
|
21
|
+
points = this._reducePoints(points, sqTolerance);
|
22
|
+
|
23
|
+
// stage 2: Douglas-Peucker simplification
|
24
|
+
points = this._simplifyDP(points, sqTolerance);
|
25
|
+
|
26
|
+
return points;
|
27
|
+
},
|
28
|
+
|
29
|
+
// distance from a point to a segment between two points
|
30
|
+
pointToSegmentDistance: function (/*Point*/ p, /*Point*/ p1, /*Point*/ p2) {
|
31
|
+
return Math.sqrt(this._sqClosestPointOnSegment(p, p1, p2, true));
|
32
|
+
},
|
33
|
+
|
34
|
+
closestPointOnSegment: function (/*Point*/ p, /*Point*/ p1, /*Point*/ p2) {
|
35
|
+
return this._sqClosestPointOnSegment(p, p1, p2);
|
36
|
+
},
|
37
|
+
|
38
|
+
// Douglas-Peucker simplification, see http://en.wikipedia.org/wiki/Douglas-Peucker_algorithm
|
39
|
+
_simplifyDP: function (points, sqTolerance) {
|
40
|
+
|
41
|
+
var len = points.length,
|
42
|
+
ArrayConstructor = typeof Uint8Array !== undefined + '' ? Uint8Array : Array,
|
43
|
+
markers = new ArrayConstructor(len);
|
44
|
+
|
45
|
+
markers[0] = markers[len - 1] = 1;
|
46
|
+
|
47
|
+
this._simplifyDPStep(points, markers, sqTolerance, 0, len - 1);
|
48
|
+
|
49
|
+
var i,
|
50
|
+
newPoints = [];
|
51
|
+
|
52
|
+
for (i = 0; i < len; i++) {
|
53
|
+
if (markers[i]) {
|
54
|
+
newPoints.push(points[i]);
|
55
|
+
}
|
56
|
+
}
|
57
|
+
|
58
|
+
return newPoints;
|
59
|
+
},
|
60
|
+
|
61
|
+
_simplifyDPStep: function (points, markers, sqTolerance, first, last) {
|
62
|
+
|
63
|
+
var maxSqDist = 0,
|
64
|
+
index, i, sqDist;
|
65
|
+
|
66
|
+
for (i = first + 1; i <= last - 1; i++) {
|
67
|
+
sqDist = this._sqClosestPointOnSegment(points[i], points[first], points[last], true);
|
68
|
+
|
69
|
+
if (sqDist > maxSqDist) {
|
70
|
+
index = i;
|
71
|
+
maxSqDist = sqDist;
|
72
|
+
}
|
73
|
+
}
|
74
|
+
|
75
|
+
if (maxSqDist > sqTolerance) {
|
76
|
+
markers[index] = 1;
|
77
|
+
|
78
|
+
this._simplifyDPStep(points, markers, sqTolerance, first, index);
|
79
|
+
this._simplifyDPStep(points, markers, sqTolerance, index, last);
|
80
|
+
}
|
81
|
+
},
|
82
|
+
|
83
|
+
// reduce points that are too close to each other to a single point
|
84
|
+
_reducePoints: function (points, sqTolerance) {
|
85
|
+
var reducedPoints = [points[0]];
|
86
|
+
|
87
|
+
for (var i = 1, prev = 0, len = points.length; i < len; i++) {
|
88
|
+
if (this._sqDist(points[i], points[prev]) > sqTolerance) {
|
89
|
+
reducedPoints.push(points[i]);
|
90
|
+
prev = i;
|
91
|
+
}
|
92
|
+
}
|
93
|
+
if (prev < len - 1) {
|
94
|
+
reducedPoints.push(points[len - 1]);
|
95
|
+
}
|
96
|
+
return reducedPoints;
|
97
|
+
},
|
98
|
+
|
99
|
+
// Cohen-Sutherland line clipping algorithm.
|
100
|
+
// Used to avoid rendering parts of a polyline that are not currently visible.
|
101
|
+
|
102
|
+
clipSegment: function (a, b, bounds, useLastCode) {
|
103
|
+
var codeA = useLastCode ? this._lastCode : this._getBitCode(a, bounds),
|
104
|
+
codeB = this._getBitCode(b, bounds),
|
105
|
+
|
106
|
+
codeOut, p, newCode;
|
107
|
+
|
108
|
+
// save 2nd code to avoid calculating it on the next segment
|
109
|
+
this._lastCode = codeB;
|
110
|
+
|
111
|
+
while (true) {
|
112
|
+
// if a,b is inside the clip window (trivial accept)
|
113
|
+
if (!(codeA | codeB)) {
|
114
|
+
return [a, b];
|
115
|
+
// if a,b is outside the clip window (trivial reject)
|
116
|
+
} else if (codeA & codeB) {
|
117
|
+
return false;
|
118
|
+
// other cases
|
119
|
+
} else {
|
120
|
+
codeOut = codeA || codeB,
|
121
|
+
p = this._getEdgeIntersection(a, b, codeOut, bounds),
|
122
|
+
newCode = this._getBitCode(p, bounds);
|
123
|
+
|
124
|
+
if (codeOut === codeA) {
|
125
|
+
a = p;
|
126
|
+
codeA = newCode;
|
127
|
+
} else {
|
128
|
+
b = p;
|
129
|
+
codeB = newCode;
|
130
|
+
}
|
131
|
+
}
|
132
|
+
}
|
133
|
+
},
|
134
|
+
|
135
|
+
_getEdgeIntersection: function (a, b, code, bounds) {
|
136
|
+
var dx = b.x - a.x,
|
137
|
+
dy = b.y - a.y,
|
138
|
+
min = bounds.min,
|
139
|
+
max = bounds.max;
|
140
|
+
|
141
|
+
if (code & 8) { // top
|
142
|
+
return new L.Point(a.x + dx * (max.y - a.y) / dy, max.y);
|
143
|
+
} else if (code & 4) { // bottom
|
144
|
+
return new L.Point(a.x + dx * (min.y - a.y) / dy, min.y);
|
145
|
+
} else if (code & 2) { // right
|
146
|
+
return new L.Point(max.x, a.y + dy * (max.x - a.x) / dx);
|
147
|
+
} else if (code & 1) { // left
|
148
|
+
return new L.Point(min.x, a.y + dy * (min.x - a.x) / dx);
|
149
|
+
}
|
150
|
+
},
|
151
|
+
|
152
|
+
_getBitCode: function (/*Point*/ p, bounds) {
|
153
|
+
var code = 0;
|
154
|
+
|
155
|
+
if (p.x < bounds.min.x) { // left
|
156
|
+
code |= 1;
|
157
|
+
} else if (p.x > bounds.max.x) { // right
|
158
|
+
code |= 2;
|
159
|
+
}
|
160
|
+
if (p.y < bounds.min.y) { // bottom
|
161
|
+
code |= 4;
|
162
|
+
} else if (p.y > bounds.max.y) { // top
|
163
|
+
code |= 8;
|
164
|
+
}
|
165
|
+
|
166
|
+
return code;
|
167
|
+
},
|
168
|
+
|
169
|
+
// square distance (to avoid unnecessary Math.sqrt calls)
|
170
|
+
_sqDist: function (p1, p2) {
|
171
|
+
var dx = p2.x - p1.x,
|
172
|
+
dy = p2.y - p1.y;
|
173
|
+
return dx * dx + dy * dy;
|
174
|
+
},
|
175
|
+
|
176
|
+
// return closest point on segment or distance to that point
|
177
|
+
_sqClosestPointOnSegment: function (p, p1, p2, sqDist) {
|
178
|
+
var x = p1.x,
|
179
|
+
y = p1.y,
|
180
|
+
dx = p2.x - x,
|
181
|
+
dy = p2.y - y,
|
182
|
+
dot = dx * dx + dy * dy,
|
183
|
+
t;
|
184
|
+
|
185
|
+
if (dot > 0) {
|
186
|
+
t = ((p.x - x) * dx + (p.y - y) * dy) / dot;
|
187
|
+
|
188
|
+
if (t > 1) {
|
189
|
+
x = p2.x;
|
190
|
+
y = p2.y;
|
191
|
+
} else if (t > 0) {
|
192
|
+
x += dx * t;
|
193
|
+
y += dy * t;
|
194
|
+
}
|
195
|
+
}
|
196
|
+
|
197
|
+
dx = p.x - x;
|
198
|
+
dy = p.y - y;
|
199
|
+
|
200
|
+
return sqDist ? dx * dx + dy * dy : new L.Point(x, y);
|
201
|
+
}
|
202
|
+
};
|
@@ -0,0 +1,119 @@
|
|
1
|
+
/*
|
2
|
+
* L.Point represents a point with x and y coordinates.
|
3
|
+
*/
|
4
|
+
|
5
|
+
L.Point = function (/*Number*/ x, /*Number*/ y, /*Boolean*/ round) {
|
6
|
+
this.x = (round ? Math.round(x) : x);
|
7
|
+
this.y = (round ? Math.round(y) : y);
|
8
|
+
};
|
9
|
+
|
10
|
+
L.Point.prototype = {
|
11
|
+
|
12
|
+
clone: function () {
|
13
|
+
return new L.Point(this.x, this.y);
|
14
|
+
},
|
15
|
+
|
16
|
+
// non-destructive, returns a new point
|
17
|
+
add: function (point) {
|
18
|
+
return this.clone()._add(L.point(point));
|
19
|
+
},
|
20
|
+
|
21
|
+
// destructive, used directly for performance in situations where it's safe to modify existing point
|
22
|
+
_add: function (point) {
|
23
|
+
this.x += point.x;
|
24
|
+
this.y += point.y;
|
25
|
+
return this;
|
26
|
+
},
|
27
|
+
|
28
|
+
subtract: function (point) {
|
29
|
+
return this.clone()._subtract(L.point(point));
|
30
|
+
},
|
31
|
+
|
32
|
+
_subtract: function (point) {
|
33
|
+
this.x -= point.x;
|
34
|
+
this.y -= point.y;
|
35
|
+
return this;
|
36
|
+
},
|
37
|
+
|
38
|
+
divideBy: function (num) {
|
39
|
+
return this.clone()._divideBy(num);
|
40
|
+
},
|
41
|
+
|
42
|
+
_divideBy: function (num) {
|
43
|
+
this.x /= num;
|
44
|
+
this.y /= num;
|
45
|
+
return this;
|
46
|
+
},
|
47
|
+
|
48
|
+
multiplyBy: function (num) {
|
49
|
+
return this.clone()._multiplyBy(num);
|
50
|
+
},
|
51
|
+
|
52
|
+
_multiplyBy: function (num) {
|
53
|
+
this.x *= num;
|
54
|
+
this.y *= num;
|
55
|
+
return this;
|
56
|
+
},
|
57
|
+
|
58
|
+
round: function () {
|
59
|
+
return this.clone()._round();
|
60
|
+
},
|
61
|
+
|
62
|
+
_round: function () {
|
63
|
+
this.x = Math.round(this.x);
|
64
|
+
this.y = Math.round(this.y);
|
65
|
+
return this;
|
66
|
+
},
|
67
|
+
|
68
|
+
floor: function () {
|
69
|
+
return this.clone()._floor();
|
70
|
+
},
|
71
|
+
|
72
|
+
_floor: function () {
|
73
|
+
this.x = Math.floor(this.x);
|
74
|
+
this.y = Math.floor(this.y);
|
75
|
+
return this;
|
76
|
+
},
|
77
|
+
|
78
|
+
distanceTo: function (point) {
|
79
|
+
point = L.point(point);
|
80
|
+
|
81
|
+
var x = point.x - this.x,
|
82
|
+
y = point.y - this.y;
|
83
|
+
|
84
|
+
return Math.sqrt(x * x + y * y);
|
85
|
+
},
|
86
|
+
|
87
|
+
equals: function (point) {
|
88
|
+
point = L.point(point);
|
89
|
+
|
90
|
+
return point.x === this.x &&
|
91
|
+
point.y === this.y;
|
92
|
+
},
|
93
|
+
|
94
|
+
contains: function (point) {
|
95
|
+
point = L.point(point);
|
96
|
+
|
97
|
+
return Math.abs(point.x) <= Math.abs(this.x) &&
|
98
|
+
Math.abs(point.y) <= Math.abs(this.y);
|
99
|
+
},
|
100
|
+
|
101
|
+
toString: function () {
|
102
|
+
return 'Point(' +
|
103
|
+
L.Util.formatNum(this.x) + ', ' +
|
104
|
+
L.Util.formatNum(this.y) + ')';
|
105
|
+
}
|
106
|
+
};
|
107
|
+
|
108
|
+
L.point = function (x, y, round) {
|
109
|
+
if (x instanceof L.Point) {
|
110
|
+
return x;
|
111
|
+
}
|
112
|
+
if (L.Util.isArray(x)) {
|
113
|
+
return new L.Point(x[0], x[1]);
|
114
|
+
}
|
115
|
+
if (x === undefined || x === null) {
|
116
|
+
return x;
|
117
|
+
}
|
118
|
+
return new L.Point(x, y, round);
|
119
|
+
};
|