leaflet-js 0.6.beta4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (275) hide show
  1. checksums.yaml +15 -0
  2. data/CHANGELOG.rdoc +32 -0
  3. data/LICENSE +21 -0
  4. data/README.rdoc +54 -0
  5. data/Rakefile +15 -0
  6. data/leaflet-js.gemspec +28 -0
  7. data/lib/leaflet-js.rb +10 -0
  8. data/lib/leaflet.draw/BREAKINGCHANGES.md +54 -0
  9. data/lib/leaflet.draw/CHANGELOG.md +73 -0
  10. data/lib/leaflet.draw/Jakefile.js +26 -0
  11. data/lib/leaflet.draw/MIT-LICENCE.txt +20 -0
  12. data/lib/leaflet.draw/README.md +364 -0
  13. data/lib/leaflet.draw/TODO.md +62 -0
  14. data/lib/leaflet.draw/build/build.html +243 -0
  15. data/lib/leaflet.draw/build/build.js +189 -0
  16. data/lib/leaflet.draw/build/deps.js +75 -0
  17. data/lib/leaflet.draw/build/hintrc.js +47 -0
  18. data/lib/leaflet.draw/build/leaflet.draw-include.js +42 -0
  19. data/lib/leaflet.draw/dist/images/spritesheet.png +0 -0
  20. data/lib/leaflet.draw/dist/leaflet.draw-src.js +2429 -0
  21. data/lib/leaflet.draw/dist/leaflet.draw.css +212 -0
  22. data/lib/leaflet.draw/dist/leaflet.draw.ie.css +44 -0
  23. data/lib/leaflet.draw/dist/leaflet.draw.js +10 -0
  24. data/lib/leaflet.draw/examples/basic.html +106 -0
  25. data/lib/leaflet.draw/examples/edithandlers.html +67 -0
  26. data/lib/leaflet.draw/examples/libs/images/layers.png +0 -0
  27. data/lib/leaflet.draw/examples/libs/images/marker-icon.png +0 -0
  28. data/lib/leaflet.draw/examples/libs/images/marker-icon@2x.png +0 -0
  29. data/lib/leaflet.draw/examples/libs/images/marker-shadow.png +0 -0
  30. data/lib/leaflet.draw/examples/libs/leaflet-src.js +8587 -0
  31. data/lib/leaflet.draw/examples/libs/leaflet.css +459 -0
  32. data/lib/leaflet.draw/examples/libs/leaflet.ie.css +51 -0
  33. data/lib/leaflet.draw/package.json +37 -0
  34. data/lib/leaflet.draw/spec/after.js +2 -0
  35. data/lib/leaflet.draw/spec/before.js +3 -0
  36. data/lib/leaflet.draw/spec/expect.js +1253 -0
  37. data/lib/leaflet.draw/spec/happen.js +93 -0
  38. data/lib/leaflet.draw/spec/index.html +36 -0
  39. data/lib/leaflet.draw/spec/karma.conf.js +69 -0
  40. data/lib/leaflet.draw/spec/sinon.js +4223 -0
  41. data/lib/leaflet.draw/spec/suites/DrawControlSpec.js +15 -0
  42. data/lib/leaflet.draw/spec/suites/SpecHelper.js +26 -0
  43. data/lib/leaflet.draw/src/Control.Draw.js +101 -0
  44. data/lib/leaflet.draw/src/Leaflet.draw.js +5 -0
  45. data/lib/leaflet.draw/src/Toolbar.js +187 -0
  46. data/lib/leaflet.draw/src/Tooltip.js +52 -0
  47. data/lib/leaflet.draw/src/copyright.js +8 -0
  48. data/lib/leaflet.draw/src/draw/DrawToolbar.js +107 -0
  49. data/lib/leaflet.draw/src/draw/handler/Draw.Circle.js +59 -0
  50. data/lib/leaflet.draw/src/draw/handler/Draw.Feature.js +74 -0
  51. data/lib/leaflet.draw/src/draw/handler/Draw.Marker.js +97 -0
  52. data/lib/leaflet.draw/src/draw/handler/Draw.Polygon.js +79 -0
  53. data/lib/leaflet.draw/src/draw/handler/Draw.Polyline.js +360 -0
  54. data/lib/leaflet.draw/src/draw/handler/Draw.Rectangle.js +41 -0
  55. data/lib/leaflet.draw/src/draw/handler/Draw.SimpleShape.js +67 -0
  56. data/lib/leaflet.draw/src/edit/EditToolbar.js +93 -0
  57. data/lib/leaflet.draw/src/edit/handler/Edit.Circle.js +63 -0
  58. data/lib/leaflet.draw/src/edit/handler/Edit.Poly.js +267 -0
  59. data/lib/leaflet.draw/src/edit/handler/Edit.Rectangle.js +117 -0
  60. data/lib/leaflet.draw/src/edit/handler/Edit.SimpleShape.js +138 -0
  61. data/lib/leaflet.draw/src/edit/handler/EditToolbar.Delete.js +109 -0
  62. data/lib/leaflet.draw/src/edit/handler/EditToolbar.Edit.js +233 -0
  63. data/lib/leaflet.draw/src/ext/LatLngUtil.js +18 -0
  64. data/lib/leaflet.draw/src/ext/LineUtil.Intersect.js +15 -0
  65. data/lib/leaflet.draw/src/ext/Polygon.Intersect.js +27 -0
  66. data/lib/leaflet.draw/src/ext/Polyline.Intersect.js +85 -0
  67. data/lib/leaflet.label/CHANGELOG.md +35 -0
  68. data/lib/leaflet.label/Jakefile.js +21 -0
  69. data/lib/leaflet.label/MIT-LICENCE.txt +20 -0
  70. data/lib/leaflet.label/README.md +86 -0
  71. data/lib/leaflet.label/build/build.js +155 -0
  72. data/lib/leaflet.label/build/deps.js +24 -0
  73. data/lib/leaflet.label/build/hint.js +30 -0
  74. data/lib/leaflet.label/build/hintrc.js +47 -0
  75. data/lib/leaflet.label/dist/images/death.png +0 -0
  76. data/lib/leaflet.label/dist/leaflet.label-src.js +359 -0
  77. data/lib/leaflet.label/dist/leaflet.label.css +33 -0
  78. data/lib/leaflet.label/dist/leaflet.label.js +9 -0
  79. data/lib/leaflet.label/example/label.html +82 -0
  80. data/lib/leaflet.label/libs/leaflet/images/layers.png +0 -0
  81. data/lib/leaflet.label/libs/leaflet/images/marker-icon.png +0 -0
  82. data/lib/leaflet.label/libs/leaflet/images/marker-icon@2x.png +0 -0
  83. data/lib/leaflet.label/libs/leaflet/images/marker-shadow.png +0 -0
  84. data/lib/leaflet.label/libs/leaflet/leaflet-src.js +8587 -0
  85. data/lib/leaflet.label/libs/leaflet/leaflet.css +459 -0
  86. data/lib/leaflet.label/libs/leaflet/leaflet.ie.css +51 -0
  87. data/lib/leaflet.label/libs/leaflet/leaflet.js +8 -0
  88. data/lib/leaflet.label/src/FeatureGroup.Label.js +20 -0
  89. data/lib/leaflet.label/src/Label.js +123 -0
  90. data/lib/leaflet.label/src/Leaflet.label.js +5 -0
  91. data/lib/leaflet.label/src/Map.Label.js +7 -0
  92. data/lib/leaflet.label/src/Marker.Label.js +160 -0
  93. data/lib/leaflet.label/src/Path.Label.js +55 -0
  94. data/lib/leaflet.label/src/copyright.js +8 -0
  95. data/lib/leaflet/CHANGELOG.md +637 -0
  96. data/lib/leaflet/CONTRIBUTING.md +155 -0
  97. data/lib/leaflet/Jakefile.js +26 -0
  98. data/lib/leaflet/LICENSE +23 -0
  99. data/lib/leaflet/README.md +30 -0
  100. data/lib/leaflet/build/build.html +243 -0
  101. data/lib/leaflet/build/build.js +193 -0
  102. data/lib/leaflet/build/deps.js +256 -0
  103. data/lib/leaflet/build/hintrc.js +37 -0
  104. data/lib/leaflet/debug/css/mobile.css +6 -0
  105. data/lib/leaflet/debug/css/screen.css +5 -0
  106. data/lib/leaflet/debug/hacks/jitter.html +43 -0
  107. data/lib/leaflet/debug/leaflet-include.js +59 -0
  108. data/lib/leaflet/debug/map/canvas.html +47 -0
  109. data/lib/leaflet/debug/map/controls.html +50 -0
  110. data/lib/leaflet/debug/map/geolocation.html +35 -0
  111. data/lib/leaflet/debug/map/image-overlay.html +44 -0
  112. data/lib/leaflet/debug/map/map-mobile.html +35 -0
  113. data/lib/leaflet/debug/map/map.html +60 -0
  114. data/lib/leaflet/debug/map/max-bounds.html +37 -0
  115. data/lib/leaflet/debug/map/scroll.html +36 -0
  116. data/lib/leaflet/debug/map/simple-proj.html +45 -0
  117. data/lib/leaflet/debug/map/wms-marble.html +31 -0
  118. data/lib/leaflet/debug/map/wms.html +41 -0
  119. data/lib/leaflet/debug/map/zoomlevels.html +46 -0
  120. data/lib/leaflet/debug/tests/add_remove_layers.html +88 -0
  121. data/lib/leaflet/debug/tests/bringtoback.html +38 -0
  122. data/lib/leaflet/debug/tests/click_on_canvas.html +59 -0
  123. data/lib/leaflet/debug/tests/click_on_canvas_broken.html +49 -0
  124. data/lib/leaflet/debug/tests/opacity.html +57 -0
  125. data/lib/leaflet/debug/tests/remove_while_dragging.html +29 -0
  126. data/lib/leaflet/debug/tests/removetilewhilepan.html +42 -0
  127. data/lib/leaflet/debug/tests/reuse_popups.html +41 -0
  128. data/lib/leaflet/debug/tests/svg_clicks.html +55 -0
  129. data/lib/leaflet/debug/vector/bounds-extend.html +89 -0
  130. data/lib/leaflet/debug/vector/feature-group-bounds.html +91 -0
  131. data/lib/leaflet/debug/vector/geojson-sample.js +53 -0
  132. data/lib/leaflet/debug/vector/geojson.html +174 -0
  133. data/lib/leaflet/debug/vector/rectangle.html +54 -0
  134. data/lib/leaflet/debug/vector/route.js +1 -0
  135. data/lib/leaflet/debug/vector/touchzoomemu.html +195 -0
  136. data/lib/leaflet/debug/vector/us-states.js +54 -0
  137. data/lib/leaflet/debug/vector/vector-bounds.html +70 -0
  138. data/lib/leaflet/debug/vector/vector-canvas.html +93 -0
  139. data/lib/leaflet/debug/vector/vector-mobile.html +39 -0
  140. data/lib/leaflet/debug/vector/vector-simple.html +49 -0
  141. data/lib/leaflet/debug/vector/vector.html +38 -0
  142. data/lib/leaflet/dist/images/layers.png +0 -0
  143. data/lib/leaflet/dist/images/marker-icon-2x.png +0 -0
  144. data/lib/leaflet/dist/images/marker-icon.png +0 -0
  145. data/lib/leaflet/dist/images/marker-shadow.png +0 -0
  146. data/lib/leaflet/dist/leaflet-src.js +8579 -0
  147. data/lib/leaflet/dist/leaflet.css +459 -0
  148. data/lib/leaflet/dist/leaflet.ie.css +51 -0
  149. data/lib/leaflet/dist/leaflet.js +8 -0
  150. data/lib/leaflet/package.json +22 -0
  151. data/lib/leaflet/spec/after.js +2 -0
  152. data/lib/leaflet/spec/before.js +3 -0
  153. data/lib/leaflet/spec/expect.js +1253 -0
  154. data/lib/leaflet/spec/happen.js +93 -0
  155. data/lib/leaflet/spec/index.html +78 -0
  156. data/lib/leaflet/spec/karma.conf.js +64 -0
  157. data/lib/leaflet/spec/sinon.js +4223 -0
  158. data/lib/leaflet/spec/suites/LeafletSpec.js +13 -0
  159. data/lib/leaflet/spec/suites/SpecHelper.js +26 -0
  160. data/lib/leaflet/spec/suites/control/Control.AttributionSpec.js +68 -0
  161. data/lib/leaflet/spec/suites/control/Control.LayersSpec.js +67 -0
  162. data/lib/leaflet/spec/suites/control/Control.ScaleSpec.js +6 -0
  163. data/lib/leaflet/spec/suites/core/ClassSpec.js +156 -0
  164. data/lib/leaflet/spec/suites/core/EventsSpec.js +336 -0
  165. data/lib/leaflet/spec/suites/core/UtilSpec.js +212 -0
  166. data/lib/leaflet/spec/suites/dom/DomEventSpec.js +102 -0
  167. data/lib/leaflet/spec/suites/dom/DomUtilSpec.js +89 -0
  168. data/lib/leaflet/spec/suites/geo/LatLngBoundsSpec.js +136 -0
  169. data/lib/leaflet/spec/suites/geo/LatLngSpec.js +118 -0
  170. data/lib/leaflet/spec/suites/geo/ProjectionSpec.js +47 -0
  171. data/lib/leaflet/spec/suites/geometry/BoundsSpec.js +87 -0
  172. data/lib/leaflet/spec/suites/geometry/LineUtilSpec.js +75 -0
  173. data/lib/leaflet/spec/suites/geometry/PointSpec.js +104 -0
  174. data/lib/leaflet/spec/suites/geometry/PolyUtilSpec.js +27 -0
  175. data/lib/leaflet/spec/suites/geometry/TransformationSpec.js +31 -0
  176. data/lib/leaflet/spec/suites/layer/FeatureGroupSpec.js +36 -0
  177. data/lib/leaflet/spec/suites/layer/GeoJSONSpec.js +86 -0
  178. data/lib/leaflet/spec/suites/layer/LayerGroupSpec.js +58 -0
  179. data/lib/leaflet/spec/suites/layer/PopupSpec.js +59 -0
  180. data/lib/leaflet/spec/suites/layer/TileLayerSpec.js +87 -0
  181. data/lib/leaflet/spec/suites/layer/vector/CircleMarkerSpec.js +53 -0
  182. data/lib/leaflet/spec/suites/layer/vector/CircleSpec.js +17 -0
  183. data/lib/leaflet/spec/suites/layer/vector/PolygonSpec.js +55 -0
  184. data/lib/leaflet/spec/suites/layer/vector/PolylineGeometrySpec.js +35 -0
  185. data/lib/leaflet/spec/suites/layer/vector/PolylineSpec.js +55 -0
  186. data/lib/leaflet/spec/suites/map/MapSpec.js +244 -0
  187. data/lib/leaflet/src/Leaflet.js +23 -0
  188. data/lib/leaflet/src/control/Control.Attribution.js +115 -0
  189. data/lib/leaflet/src/control/Control.Layers.js +243 -0
  190. data/lib/leaflet/src/control/Control.Scale.js +112 -0
  191. data/lib/leaflet/src/control/Control.Zoom.js +86 -0
  192. data/lib/leaflet/src/control/Control.js +107 -0
  193. data/lib/leaflet/src/copyright.js +4 -0
  194. data/lib/leaflet/src/core/Browser.js +96 -0
  195. data/lib/leaflet/src/core/Class.js +106 -0
  196. data/lib/leaflet/src/core/Events.js +174 -0
  197. data/lib/leaflet/src/core/Handler.js +28 -0
  198. data/lib/leaflet/src/core/Util.js +182 -0
  199. data/lib/leaflet/src/dom/DomEvent.DoubleTap.js +103 -0
  200. data/lib/leaflet/src/dom/DomEvent.MsTouch.js +146 -0
  201. data/lib/leaflet/src/dom/DomEvent.js +211 -0
  202. data/lib/leaflet/src/dom/DomUtil.js +239 -0
  203. data/lib/leaflet/src/dom/Draggable.js +198 -0
  204. data/lib/leaflet/src/dom/PosAnimation.Timer.js +67 -0
  205. data/lib/leaflet/src/dom/PosAnimation.js +83 -0
  206. data/lib/leaflet/src/geo/LatLng.js +88 -0
  207. data/lib/leaflet/src/geo/LatLngBounds.js +153 -0
  208. data/lib/leaflet/src/geo/crs/CRS.EPSG3395.js +14 -0
  209. data/lib/leaflet/src/geo/crs/CRS.EPSG3857.js +21 -0
  210. data/lib/leaflet/src/geo/crs/CRS.EPSG4326.js +10 -0
  211. data/lib/leaflet/src/geo/crs/CRS.Simple.js +12 -0
  212. data/lib/leaflet/src/geo/crs/CRS.js +27 -0
  213. data/lib/leaflet/src/geo/projection/Projection.LonLat.js +13 -0
  214. data/lib/leaflet/src/geo/projection/Projection.Mercator.js +56 -0
  215. data/lib/leaflet/src/geo/projection/Projection.SphericalMercator.js +27 -0
  216. data/lib/leaflet/src/geo/projection/Projection.js +5 -0
  217. data/lib/leaflet/src/geometry/Bounds.js +95 -0
  218. data/lib/leaflet/src/geometry/LineUtil.js +202 -0
  219. data/lib/leaflet/src/geometry/Point.js +119 -0
  220. data/lib/leaflet/src/geometry/PolyUtil.js +55 -0
  221. data/lib/leaflet/src/geometry/Transformation.js +31 -0
  222. data/lib/leaflet/src/images/marker.svg +1 -0
  223. data/lib/leaflet/src/layer/FeatureGroup.js +81 -0
  224. data/lib/leaflet/src/layer/GeoJSON.js +245 -0
  225. data/lib/leaflet/src/layer/ImageOverlay.js +132 -0
  226. data/lib/leaflet/src/layer/LayerGroup.js +110 -0
  227. data/lib/leaflet/src/layer/Popup.js +316 -0
  228. data/lib/leaflet/src/layer/marker/DivIcon.js +43 -0
  229. data/lib/leaflet/src/layer/marker/Icon.Default.js +51 -0
  230. data/lib/leaflet/src/layer/marker/Icon.js +101 -0
  231. data/lib/leaflet/src/layer/marker/Marker.Drag.js +66 -0
  232. data/lib/leaflet/src/layer/marker/Marker.Popup.js +72 -0
  233. data/lib/leaflet/src/layer/marker/Marker.js +275 -0
  234. data/lib/leaflet/src/layer/tile/TileLayer.Anim.js +117 -0
  235. data/lib/leaflet/src/layer/tile/TileLayer.Canvas.js +60 -0
  236. data/lib/leaflet/src/layer/tile/TileLayer.WMS.js +83 -0
  237. data/lib/leaflet/src/layer/tile/TileLayer.js +578 -0
  238. data/lib/leaflet/src/layer/vector/Circle.js +98 -0
  239. data/lib/leaflet/src/layer/vector/CircleMarker.js +33 -0
  240. data/lib/leaflet/src/layer/vector/MultiPoly.js +47 -0
  241. data/lib/leaflet/src/layer/vector/Path.Popup.js +65 -0
  242. data/lib/leaflet/src/layer/vector/Path.SVG.js +219 -0
  243. data/lib/leaflet/src/layer/vector/Path.VML.js +125 -0
  244. data/lib/leaflet/src/layer/vector/Path.js +115 -0
  245. data/lib/leaflet/src/layer/vector/Polygon.js +81 -0
  246. data/lib/leaflet/src/layer/vector/Polyline.js +164 -0
  247. data/lib/leaflet/src/layer/vector/Rectangle.js +27 -0
  248. data/lib/leaflet/src/layer/vector/canvas/Circle.Canvas.js +18 -0
  249. data/lib/leaflet/src/layer/vector/canvas/Path.Canvas.js +196 -0
  250. data/lib/leaflet/src/layer/vector/canvas/Polygon.Canvas.js +37 -0
  251. data/lib/leaflet/src/layer/vector/canvas/Polyline.Canvas.js +30 -0
  252. data/lib/leaflet/src/map/Map.js +743 -0
  253. data/lib/leaflet/src/map/anim/Map.PanAnimation.js +88 -0
  254. data/lib/leaflet/src/map/anim/Map.ZoomAnimation.js +90 -0
  255. data/lib/leaflet/src/map/ext/Map.Geolocation.js +91 -0
  256. data/lib/leaflet/src/map/handler/Map.BoxZoom.js +104 -0
  257. data/lib/leaflet/src/map/handler/Map.DoubleClickZoom.js +23 -0
  258. data/lib/leaflet/src/map/handler/Map.Drag.js +146 -0
  259. data/lib/leaflet/src/map/handler/Map.Keyboard.js +147 -0
  260. data/lib/leaflet/src/map/handler/Map.ScrollWheelZoom.js +56 -0
  261. data/lib/leaflet/src/map/handler/Map.TouchZoom.js +121 -0
  262. data/vendor/assets/images/layers.png +0 -0
  263. data/vendor/assets/images/marker-icon-2x.png +0 -0
  264. data/vendor/assets/images/marker-icon.png +0 -0
  265. data/vendor/assets/images/marker-shadow.png +0 -0
  266. data/vendor/assets/images/spritesheet.png +0 -0
  267. data/vendor/assets/javascripts/leaflet.draw.js +39 -0
  268. data/vendor/assets/javascripts/leaflet.js +145 -0
  269. data/vendor/assets/javascripts/leaflet.label.js +9 -0
  270. data/vendor/assets/stylesheets/leaflet.css.erb +459 -0
  271. data/vendor/assets/stylesheets/leaflet.draw.css.erb +212 -0
  272. data/vendor/assets/stylesheets/leaflet.draw.ie.css +44 -0
  273. data/vendor/assets/stylesheets/leaflet.ie.css +51 -0
  274. data/vendor/assets/stylesheets/leaflet.label.css +33 -0
  275. metadata +317 -0
@@ -0,0 +1,117 @@
1
+ /*
2
+ Zoom animation logic for L.TileLayer.
3
+ */
4
+
5
+ L.TileLayer.include({
6
+ _animateZoom: function (e) {
7
+ var firstFrame = false;
8
+
9
+ if (!this._animating) {
10
+ this._animating = true;
11
+ firstFrame = true;
12
+ }
13
+
14
+ if (firstFrame) {
15
+ this._prepareBgBuffer();
16
+ }
17
+
18
+ var transform = L.DomUtil.TRANSFORM,
19
+ bg = this._bgBuffer;
20
+
21
+ if (firstFrame) {
22
+ //prevent bg buffer from clearing right after zoom
23
+ clearTimeout(this._clearBgBufferTimer);
24
+
25
+ // hack to make sure transform is updated before running animation
26
+ L.Util.falseFn(bg.offsetWidth);
27
+ }
28
+
29
+ var scaleStr = L.DomUtil.getScaleString(e.scale, e.origin),
30
+ oldTransform = bg.style[transform];
31
+
32
+ bg.style[transform] = e.backwards ?
33
+ (e.delta ? L.DomUtil.getTranslateString(e.delta) : oldTransform) + ' ' + scaleStr :
34
+ scaleStr + ' ' + oldTransform;
35
+ },
36
+
37
+ _endZoomAnim: function () {
38
+ var front = this._tileContainer,
39
+ bg = this._bgBuffer;
40
+
41
+ front.style.visibility = '';
42
+ front.style.zIndex = 2;
43
+
44
+ bg.style.zIndex = 1;
45
+
46
+ // force reflow
47
+ L.Util.falseFn(bg.offsetWidth);
48
+
49
+ this._animating = false;
50
+ },
51
+
52
+ _clearBgBuffer: function () {
53
+ var map = this._map;
54
+
55
+ if (map && !map._animatingZoom && !map.touchZoom._zooming) {
56
+ this._bgBuffer.innerHTML = '';
57
+ this._bgBuffer.style[L.DomUtil.TRANSFORM] = '';
58
+ }
59
+ },
60
+
61
+ _prepareBgBuffer: function () {
62
+
63
+ var front = this._tileContainer,
64
+ bg = this._bgBuffer;
65
+
66
+ // if foreground layer doesn't have many tiles but bg layer does,
67
+ // keep the existing bg layer and just zoom it some more
68
+
69
+ if (bg && this._getLoadedTilesPercentage(bg) > 0.5 &&
70
+ this._getLoadedTilesPercentage(front) < 0.5) {
71
+
72
+ front.style.visibility = 'hidden';
73
+ this._stopLoadingImages(front);
74
+ return;
75
+ }
76
+
77
+ // prepare the buffer to become the front tile pane
78
+ bg.style.visibility = 'hidden';
79
+ bg.style[L.DomUtil.TRANSFORM] = '';
80
+
81
+ // switch out the current layer to be the new bg layer (and vice-versa)
82
+ this._tileContainer = bg;
83
+ bg = this._bgBuffer = front;
84
+
85
+ this._stopLoadingImages(bg);
86
+ },
87
+
88
+ _getLoadedTilesPercentage: function (container) {
89
+ var tiles = container.getElementsByTagName('img'),
90
+ i, len, count = 0;
91
+
92
+ for (i = 0, len = tiles.length; i < len; i++) {
93
+ if (tiles[i].complete) {
94
+ count++;
95
+ }
96
+ }
97
+ return count / len;
98
+ },
99
+
100
+ // stops loading all tiles in the background layer
101
+ _stopLoadingImages: function (container) {
102
+ var tiles = Array.prototype.slice.call(container.getElementsByTagName('img')),
103
+ i, len, tile;
104
+
105
+ for (i = 0, len = tiles.length; i < len; i++) {
106
+ tile = tiles[i];
107
+
108
+ if (!tile.complete) {
109
+ tile.onload = L.Util.falseFn;
110
+ tile.onerror = L.Util.falseFn;
111
+ tile.src = L.Util.emptyImageUrl;
112
+
113
+ tile.parentNode.removeChild(tile);
114
+ }
115
+ }
116
+ }
117
+ });
@@ -0,0 +1,60 @@
1
+ /*
2
+ * L.TileLayer.Canvas is a class that you can use as a base for creating
3
+ * dynamically drawn Canvas-based tile layers.
4
+ */
5
+
6
+ L.TileLayer.Canvas = L.TileLayer.extend({
7
+ options: {
8
+ async: false
9
+ },
10
+
11
+ initialize: function (options) {
12
+ L.setOptions(this, options);
13
+ },
14
+
15
+ redraw: function () {
16
+ for (var i in this._tiles) {
17
+ this._redrawTile(this._tiles[i]);
18
+ }
19
+ return this;
20
+ },
21
+
22
+ _redrawTile: function (tile) {
23
+ this.drawTile(tile, tile._tilePoint, this._map._zoom);
24
+ },
25
+
26
+ _createTileProto: function () {
27
+ var proto = this._canvasProto = L.DomUtil.create('canvas', 'leaflet-tile');
28
+ proto.width = proto.height = this.options.tileSize;
29
+ },
30
+
31
+ _createTile: function () {
32
+ var tile = this._canvasProto.cloneNode(false);
33
+ tile.onselectstart = tile.onmousemove = L.Util.falseFn;
34
+ return tile;
35
+ },
36
+
37
+ _loadTile: function (tile, tilePoint) {
38
+ tile._layer = this;
39
+ tile._tilePoint = tilePoint;
40
+
41
+ this._redrawTile(tile);
42
+
43
+ if (!this.options.async) {
44
+ this.tileDrawn(tile);
45
+ }
46
+ },
47
+
48
+ drawTile: function (/*tile, tilePoint*/) {
49
+ // override with rendering code
50
+ },
51
+
52
+ tileDrawn: function (tile) {
53
+ this._tileOnLoad.call(tile);
54
+ }
55
+ });
56
+
57
+
58
+ L.tileLayer.canvas = function (options) {
59
+ return new L.TileLayer.Canvas(options);
60
+ };
@@ -0,0 +1,83 @@
1
+ /*
2
+ * L.TileLayer.WMS is used for putting WMS tile layers on the map.
3
+ */
4
+
5
+ L.TileLayer.WMS = L.TileLayer.extend({
6
+
7
+ defaultWmsParams: {
8
+ service: 'WMS',
9
+ request: 'GetMap',
10
+ version: '1.1.1',
11
+ layers: '',
12
+ styles: '',
13
+ format: 'image/jpeg',
14
+ transparent: false
15
+ },
16
+
17
+ initialize: function (url, options) { // (String, Object)
18
+
19
+ this._url = url;
20
+
21
+ var wmsParams = L.extend({}, this.defaultWmsParams),
22
+ tileSize = options.tileSize || this.options.tileSize;
23
+
24
+ if (options.detectRetina && L.Browser.retina) {
25
+ wmsParams.width = wmsParams.height = tileSize * 2;
26
+ } else {
27
+ wmsParams.width = wmsParams.height = tileSize;
28
+ }
29
+
30
+ for (var i in options) {
31
+ // all keys that are not TileLayer options go to WMS params
32
+ if (!this.options.hasOwnProperty(i)) {
33
+ wmsParams[i] = options[i];
34
+ }
35
+ }
36
+
37
+ this.wmsParams = wmsParams;
38
+
39
+ L.setOptions(this, options);
40
+ },
41
+
42
+ onAdd: function (map) {
43
+
44
+ var projectionKey = parseFloat(this.wmsParams.version) >= 1.3 ? 'crs' : 'srs';
45
+ this.wmsParams[projectionKey] = map.options.crs.code;
46
+
47
+ L.TileLayer.prototype.onAdd.call(this, map);
48
+ },
49
+
50
+ getTileUrl: function (tilePoint, zoom) { // (Point, Number) -> String
51
+
52
+ var map = this._map,
53
+ crs = map.options.crs,
54
+ tileSize = this.options.tileSize,
55
+
56
+ nwPoint = tilePoint.multiplyBy(tileSize),
57
+ sePoint = nwPoint.add([tileSize, tileSize]),
58
+
59
+ nw = crs.project(map.unproject(nwPoint, zoom)),
60
+ se = crs.project(map.unproject(sePoint, zoom)),
61
+
62
+ bbox = [nw.x, se.y, se.x, nw.y].join(','),
63
+
64
+ url = L.Util.template(this._url, {s: this._getSubdomain(tilePoint)});
65
+
66
+ return url + L.Util.getParamString(this.wmsParams, url) + '&bbox=' + bbox;
67
+ },
68
+
69
+ setParams: function (params, noRedraw) {
70
+
71
+ L.extend(this.wmsParams, params);
72
+
73
+ if (!noRedraw) {
74
+ this.redraw();
75
+ }
76
+
77
+ return this;
78
+ }
79
+ });
80
+
81
+ L.tileLayer.wms = function (url, options) {
82
+ return new L.TileLayer.WMS(url, options);
83
+ };
@@ -0,0 +1,578 @@
1
+ /*
2
+ * L.TileLayer is used for standard xyz-numbered tile layers.
3
+ */
4
+
5
+ L.TileLayer = L.Class.extend({
6
+ includes: L.Mixin.Events,
7
+
8
+ options: {
9
+ minZoom: 0,
10
+ maxZoom: 18,
11
+ tileSize: 256,
12
+ subdomains: 'abc',
13
+ errorTileUrl: '',
14
+ attribution: '',
15
+ zoomOffset: 0,
16
+ opacity: 1,
17
+ /* (undefined works too)
18
+ zIndex: null,
19
+ tms: false,
20
+ continuousWorld: false,
21
+ noWrap: false,
22
+ zoomReverse: false,
23
+ detectRetina: false,
24
+ reuseTiles: false,
25
+ bounds: false,
26
+ */
27
+ unloadInvisibleTiles: L.Browser.mobile,
28
+ updateWhenIdle: L.Browser.mobile
29
+ },
30
+
31
+ initialize: function (url, options) {
32
+ options = L.setOptions(this, options);
33
+
34
+ // detecting retina displays, adjusting tileSize and zoom levels
35
+ if (options.detectRetina && L.Browser.retina && options.maxZoom > 0) {
36
+
37
+ options.tileSize = Math.floor(options.tileSize / 2);
38
+ options.zoomOffset++;
39
+
40
+ if (options.minZoom > 0) {
41
+ options.minZoom--;
42
+ }
43
+ this.options.maxZoom--;
44
+ }
45
+
46
+ if (options.bounds) {
47
+ options.bounds = L.latLngBounds(options.bounds);
48
+ }
49
+
50
+ this._url = url;
51
+
52
+ var subdomains = this.options.subdomains;
53
+
54
+ if (typeof subdomains === 'string') {
55
+ this.options.subdomains = subdomains.split('');
56
+ }
57
+ },
58
+
59
+ onAdd: function (map) {
60
+ this._map = map;
61
+ this._animated = map.options.zoomAnimation && L.Browser.any3d;
62
+
63
+ // create a container div for tiles
64
+ this._initContainer();
65
+
66
+ // create an image to clone for tiles
67
+ this._createTileProto();
68
+
69
+ // set up events
70
+ map.on({
71
+ 'viewreset': this._reset,
72
+ 'moveend': this._update
73
+ }, this);
74
+
75
+ if (this._animated) {
76
+ map.on({
77
+ 'zoomanim': this._animateZoom,
78
+ 'zoomend': this._endZoomAnim
79
+ }, this);
80
+ }
81
+
82
+ if (!this.options.updateWhenIdle) {
83
+ this._limitedUpdate = L.Util.limitExecByInterval(this._update, 150, this);
84
+ map.on('move', this._limitedUpdate, this);
85
+ }
86
+
87
+ this._reset();
88
+ this._update();
89
+ },
90
+
91
+ addTo: function (map) {
92
+ map.addLayer(this);
93
+ return this;
94
+ },
95
+
96
+ onRemove: function (map) {
97
+ this._container.parentNode.removeChild(this._container);
98
+
99
+ map.off({
100
+ 'viewreset': this._reset,
101
+ 'moveend': this._update
102
+ }, this);
103
+
104
+ if (this._animated) {
105
+ map.off({
106
+ 'zoomanim': this._animateZoom,
107
+ 'zoomend': this._endZoomAnim
108
+ }, this);
109
+ }
110
+
111
+ if (!this.options.updateWhenIdle) {
112
+ map.off('move', this._limitedUpdate, this);
113
+ }
114
+
115
+ this._container = null;
116
+ this._map = null;
117
+ },
118
+
119
+ bringToFront: function () {
120
+ var pane = this._map._panes.tilePane;
121
+
122
+ if (this._container) {
123
+ pane.appendChild(this._container);
124
+ this._setAutoZIndex(pane, Math.max);
125
+ }
126
+
127
+ return this;
128
+ },
129
+
130
+ bringToBack: function () {
131
+ var pane = this._map._panes.tilePane;
132
+
133
+ if (this._container) {
134
+ pane.insertBefore(this._container, pane.firstChild);
135
+ this._setAutoZIndex(pane, Math.min);
136
+ }
137
+
138
+ return this;
139
+ },
140
+
141
+ getAttribution: function () {
142
+ return this.options.attribution;
143
+ },
144
+
145
+ getContainer: function () {
146
+ return this._container;
147
+ },
148
+
149
+ setOpacity: function (opacity) {
150
+ this.options.opacity = opacity;
151
+
152
+ if (this._map) {
153
+ this._updateOpacity();
154
+ }
155
+
156
+ return this;
157
+ },
158
+
159
+ setZIndex: function (zIndex) {
160
+ this.options.zIndex = zIndex;
161
+ this._updateZIndex();
162
+
163
+ return this;
164
+ },
165
+
166
+ setUrl: function (url, noRedraw) {
167
+ this._url = url;
168
+
169
+ if (!noRedraw) {
170
+ this.redraw();
171
+ }
172
+
173
+ return this;
174
+ },
175
+
176
+ redraw: function () {
177
+ if (this._map) {
178
+ this._reset({hard: true});
179
+ this._update();
180
+ }
181
+ return this;
182
+ },
183
+
184
+ _updateZIndex: function () {
185
+ if (this._container && this.options.zIndex !== undefined) {
186
+ this._container.style.zIndex = this.options.zIndex;
187
+ }
188
+ },
189
+
190
+ _setAutoZIndex: function (pane, compare) {
191
+
192
+ var layers = pane.children,
193
+ edgeZIndex = -compare(Infinity, -Infinity), // -Infinity for max, Infinity for min
194
+ zIndex, i, len;
195
+
196
+ for (i = 0, len = layers.length; i < len; i++) {
197
+
198
+ if (layers[i] !== this._container) {
199
+ zIndex = parseInt(layers[i].style.zIndex, 10);
200
+
201
+ if (!isNaN(zIndex)) {
202
+ edgeZIndex = compare(edgeZIndex, zIndex);
203
+ }
204
+ }
205
+ }
206
+
207
+ this.options.zIndex = this._container.style.zIndex =
208
+ (isFinite(edgeZIndex) ? edgeZIndex : 0) + compare(1, -1);
209
+ },
210
+
211
+ _updateOpacity: function () {
212
+ var i,
213
+ tiles = this._tiles;
214
+
215
+ if (L.Browser.ielt9) {
216
+ for (i in tiles) {
217
+ L.DomUtil.setOpacity(tiles[i], this.options.opacity);
218
+ }
219
+ } else {
220
+ L.DomUtil.setOpacity(this._container, this.options.opacity);
221
+ }
222
+
223
+ // stupid webkit hack to force redrawing of tiles
224
+ if (L.Browser.webkit) {
225
+ for (i in tiles) {
226
+ tiles[i].style.webkitTransform += ' translate(0,0)';
227
+ }
228
+ }
229
+ },
230
+
231
+ _initContainer: function () {
232
+ var tilePane = this._map._panes.tilePane;
233
+
234
+ if (!this._container) {
235
+ this._container = L.DomUtil.create('div', 'leaflet-layer');
236
+
237
+ this._updateZIndex();
238
+
239
+ if (this._animated) {
240
+ var className = 'leaflet-tile-container leaflet-zoom-animated';
241
+
242
+ this._bgBuffer = L.DomUtil.create('div', className, this._container);
243
+ this._tileContainer = L.DomUtil.create('div', className, this._container);
244
+ } else {
245
+ this._tileContainer = this._container;
246
+ }
247
+
248
+ tilePane.appendChild(this._container);
249
+
250
+ if (this.options.opacity < 1) {
251
+ this._updateOpacity();
252
+ }
253
+ }
254
+ },
255
+
256
+ _reset: function (e) {
257
+ for (var key in this._tiles) {
258
+ this.fire('tileunload', {tile: this._tiles[key]});
259
+ }
260
+
261
+ this._tiles = {};
262
+ this._tilesToLoad = 0;
263
+
264
+ if (this.options.reuseTiles) {
265
+ this._unusedTiles = [];
266
+ }
267
+
268
+ this._tileContainer.innerHTML = '';
269
+
270
+ if (this._animated && e && e.hard) {
271
+ this._clearBgBuffer();
272
+ }
273
+
274
+ this._initContainer();
275
+ },
276
+
277
+ _update: function () {
278
+
279
+ if (!this._map) { return; }
280
+
281
+ var bounds = this._map.getPixelBounds(),
282
+ zoom = this._map.getZoom(),
283
+ tileSize = this.options.tileSize;
284
+
285
+ if (zoom > this.options.maxZoom || zoom < this.options.minZoom) {
286
+ return;
287
+ }
288
+
289
+ var tileBounds = L.bounds(
290
+ bounds.min.divideBy(tileSize)._floor(),
291
+ bounds.max.divideBy(tileSize)._floor());
292
+
293
+ this._addTilesFromCenterOut(tileBounds);
294
+
295
+ if (this.options.unloadInvisibleTiles || this.options.reuseTiles) {
296
+ this._removeOtherTiles(tileBounds);
297
+ }
298
+ },
299
+
300
+ _addTilesFromCenterOut: function (bounds) {
301
+ var queue = [],
302
+ center = bounds.getCenter();
303
+
304
+ var j, i, point;
305
+
306
+ for (j = bounds.min.y; j <= bounds.max.y; j++) {
307
+ for (i = bounds.min.x; i <= bounds.max.x; i++) {
308
+ point = new L.Point(i, j);
309
+
310
+ if (this._tileShouldBeLoaded(point)) {
311
+ queue.push(point);
312
+ }
313
+ }
314
+ }
315
+
316
+ var tilesToLoad = queue.length;
317
+
318
+ if (tilesToLoad === 0) { return; }
319
+
320
+ // load tiles in order of their distance to center
321
+ queue.sort(function (a, b) {
322
+ return a.distanceTo(center) - b.distanceTo(center);
323
+ });
324
+
325
+ var fragment = document.createDocumentFragment();
326
+
327
+ // if its the first batch of tiles to load
328
+ if (!this._tilesToLoad) {
329
+ this.fire('loading');
330
+ }
331
+
332
+ this._tilesToLoad += tilesToLoad;
333
+
334
+ for (i = 0; i < tilesToLoad; i++) {
335
+ this._addTile(queue[i], fragment);
336
+ }
337
+
338
+ this._tileContainer.appendChild(fragment);
339
+ },
340
+
341
+ _tileShouldBeLoaded: function (tilePoint) {
342
+ if ((tilePoint.x + ':' + tilePoint.y) in this._tiles) {
343
+ return false; // already loaded
344
+ }
345
+
346
+ var options = this.options;
347
+
348
+ if (!options.continuousWorld && options.noWrap) {
349
+ var limit = this._getWrapTileNum();
350
+
351
+ // don't load if exceeds world bounds
352
+ if (tilePoint.x < 0 || tilePoint.x >= limit ||
353
+ tilePoint.y < 0 || tilePoint.y >= limit) { return false; }
354
+ }
355
+
356
+ if (options.bounds) {
357
+ var tileSize = options.tileSize,
358
+ nwPoint = tilePoint.multiplyBy(tileSize),
359
+ sePoint = nwPoint.add([tileSize, tileSize]),
360
+ nw = this._map.unproject(nwPoint),
361
+ se = this._map.unproject(sePoint);
362
+
363
+ // TODO temporary hack, will be removed after refactoring projections
364
+ // https://github.com/Leaflet/Leaflet/issues/1618
365
+ if (!options.continuousWorld && !options.noWrap) {
366
+ nw = nw.wrap();
367
+ se = se.wrap();
368
+ }
369
+
370
+ if (!options.bounds.intersects([nw, se])) { return false; }
371
+ }
372
+
373
+ return true;
374
+ },
375
+
376
+ _removeOtherTiles: function (bounds) {
377
+ var kArr, x, y, key;
378
+
379
+ for (key in this._tiles) {
380
+ kArr = key.split(':');
381
+ x = parseInt(kArr[0], 10);
382
+ y = parseInt(kArr[1], 10);
383
+
384
+ // remove tile if it's out of bounds
385
+ if (x < bounds.min.x || x > bounds.max.x || y < bounds.min.y || y > bounds.max.y) {
386
+ this._removeTile(key);
387
+ }
388
+ }
389
+ },
390
+
391
+ _removeTile: function (key) {
392
+ var tile = this._tiles[key];
393
+
394
+ this.fire('tileunload', {tile: tile, url: tile.src});
395
+
396
+ if (this.options.reuseTiles) {
397
+ L.DomUtil.removeClass(tile, 'leaflet-tile-loaded');
398
+ this._unusedTiles.push(tile);
399
+
400
+ } else if (tile.parentNode === this._tileContainer) {
401
+ this._tileContainer.removeChild(tile);
402
+ }
403
+
404
+ // for https://github.com/CloudMade/Leaflet/issues/137
405
+ if (!L.Browser.android) {
406
+ tile.onload = null;
407
+ tile.src = L.Util.emptyImageUrl;
408
+ }
409
+
410
+ delete this._tiles[key];
411
+ },
412
+
413
+ _addTile: function (tilePoint, container) {
414
+ var tilePos = this._getTilePos(tilePoint);
415
+
416
+ // get unused tile - or create a new tile
417
+ var tile = this._getTile();
418
+
419
+ /*
420
+ Chrome 20 layouts much faster with top/left (verify with timeline, frames)
421
+ Android 4 browser has display issues with top/left and requires transform instead
422
+ Android 2 browser requires top/left or tiles disappear on load or first drag
423
+ (reappear after zoom) https://github.com/CloudMade/Leaflet/issues/866
424
+ (other browsers don't currently care) - see debug/hacks/jitter.html for an example
425
+ */
426
+ L.DomUtil.setPosition(tile, tilePos, L.Browser.chrome || L.Browser.android23);
427
+
428
+ this._tiles[tilePoint.x + ':' + tilePoint.y] = tile;
429
+
430
+ this._loadTile(tile, tilePoint);
431
+
432
+ if (tile.parentNode !== this._tileContainer) {
433
+ container.appendChild(tile);
434
+ }
435
+ },
436
+
437
+ _getZoomForUrl: function () {
438
+
439
+ var options = this.options,
440
+ zoom = this._map.getZoom();
441
+
442
+ if (options.zoomReverse) {
443
+ zoom = options.maxZoom - zoom;
444
+ }
445
+
446
+ return zoom + options.zoomOffset;
447
+ },
448
+
449
+ _getTilePos: function (tilePoint) {
450
+ var origin = this._map.getPixelOrigin(),
451
+ tileSize = this.options.tileSize;
452
+
453
+ return tilePoint.multiplyBy(tileSize).subtract(origin);
454
+ },
455
+
456
+ // image-specific code (override to implement e.g. Canvas or SVG tile layer)
457
+
458
+ getTileUrl: function (tilePoint) {
459
+ return L.Util.template(this._url, L.extend({
460
+ s: this._getSubdomain(tilePoint),
461
+ z: tilePoint.z,
462
+ x: tilePoint.x,
463
+ y: tilePoint.y
464
+ }, this.options));
465
+ },
466
+
467
+ _getWrapTileNum: function () {
468
+ // TODO refactor, limit is not valid for non-standard projections
469
+ return Math.pow(2, this._getZoomForUrl());
470
+ },
471
+
472
+ _adjustTilePoint: function (tilePoint) {
473
+
474
+ var limit = this._getWrapTileNum();
475
+
476
+ // wrap tile coordinates
477
+ if (!this.options.continuousWorld && !this.options.noWrap) {
478
+ tilePoint.x = ((tilePoint.x % limit) + limit) % limit;
479
+ }
480
+
481
+ if (this.options.tms) {
482
+ tilePoint.y = limit - tilePoint.y - 1;
483
+ }
484
+
485
+ tilePoint.z = this._getZoomForUrl();
486
+ },
487
+
488
+ _getSubdomain: function (tilePoint) {
489
+ var index = Math.abs(tilePoint.x + tilePoint.y) % this.options.subdomains.length;
490
+ return this.options.subdomains[index];
491
+ },
492
+
493
+ _createTileProto: function () {
494
+ var img = this._tileImg = L.DomUtil.create('img', 'leaflet-tile');
495
+ img.style.width = img.style.height = this.options.tileSize + 'px';
496
+ img.galleryimg = 'no';
497
+ },
498
+
499
+ _getTile: function () {
500
+ if (this.options.reuseTiles && this._unusedTiles.length > 0) {
501
+ var tile = this._unusedTiles.pop();
502
+ this._resetTile(tile);
503
+ return tile;
504
+ }
505
+ return this._createTile();
506
+ },
507
+
508
+ // Override if data stored on a tile needs to be cleaned up before reuse
509
+ _resetTile: function (/*tile*/) {},
510
+
511
+ _createTile: function () {
512
+ var tile = this._tileImg.cloneNode(false);
513
+ tile.onselectstart = tile.onmousemove = L.Util.falseFn;
514
+
515
+ if (L.Browser.ielt9 && this.options.opacity !== undefined) {
516
+ L.DomUtil.setOpacity(tile, this.options.opacity);
517
+ }
518
+ return tile;
519
+ },
520
+
521
+ _loadTile: function (tile, tilePoint) {
522
+ tile._layer = this;
523
+ tile.onload = this._tileOnLoad;
524
+ tile.onerror = this._tileOnError;
525
+
526
+ this._adjustTilePoint(tilePoint);
527
+ tile.src = this.getTileUrl(tilePoint);
528
+ },
529
+
530
+ _tileLoaded: function () {
531
+ this._tilesToLoad--;
532
+ if (!this._tilesToLoad) {
533
+ this.fire('load');
534
+
535
+ if (this._animated) {
536
+ // clear scaled tiles after all new tiles are loaded (for performance)
537
+ clearTimeout(this._clearBgBufferTimer);
538
+ this._clearBgBufferTimer = setTimeout(L.bind(this._clearBgBuffer, this), 500);
539
+ }
540
+ }
541
+ },
542
+
543
+ _tileOnLoad: function () {
544
+ var layer = this._layer;
545
+
546
+ //Only if we are loading an actual image
547
+ if (this.src !== L.Util.emptyImageUrl) {
548
+ L.DomUtil.addClass(this, 'leaflet-tile-loaded');
549
+
550
+ layer.fire('tileload', {
551
+ tile: this,
552
+ url: this.src
553
+ });
554
+ }
555
+
556
+ layer._tileLoaded();
557
+ },
558
+
559
+ _tileOnError: function () {
560
+ var layer = this._layer;
561
+
562
+ layer.fire('tileerror', {
563
+ tile: this,
564
+ url: this.src
565
+ });
566
+
567
+ var newUrl = layer.options.errorTileUrl;
568
+ if (newUrl) {
569
+ this.src = newUrl;
570
+ }
571
+
572
+ layer._tileLoaded();
573
+ }
574
+ });
575
+
576
+ L.tileLayer = function (url, options) {
577
+ return new L.TileLayer(url, options);
578
+ };