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,4 @@
1
+ /*
2
+ Leaflet, a JavaScript library for mobile-friendly interactive maps. http://leafletjs.com
3
+ (c) 2010-2013, Vladimir Agafonkin, CloudMade
4
+ */
@@ -0,0 +1,96 @@
1
+ /*
2
+ * L.Browser handles different browser and feature detections for internal Leaflet use.
3
+ */
4
+
5
+ (function () {
6
+
7
+ var ie = !!window.ActiveXObject,
8
+ ie6 = ie && !window.XMLHttpRequest,
9
+ ie7 = ie && !document.querySelector,
10
+ ielt9 = ie && !document.addEventListener,
11
+
12
+ // terrible browser detection to work around Safari / iOS / Android browser bugs
13
+ ua = navigator.userAgent.toLowerCase(),
14
+ webkit = ua.indexOf('webkit') !== -1,
15
+ chrome = ua.indexOf('chrome') !== -1,
16
+ phantomjs = ua.indexOf('phantom') !== -1,
17
+ android = ua.indexOf('android') !== -1,
18
+ android23 = ua.search('android [23]') !== -1,
19
+
20
+ mobile = typeof orientation !== undefined + '',
21
+ msTouch = window.navigator && window.navigator.msPointerEnabled &&
22
+ window.navigator.msMaxTouchPoints,
23
+ retina = ('devicePixelRatio' in window && window.devicePixelRatio > 1) ||
24
+ ('matchMedia' in window && window.matchMedia('(min-resolution:144dpi)') &&
25
+ window.matchMedia('(min-resolution:144dpi)').matches),
26
+
27
+ doc = document.documentElement,
28
+ ie3d = ie && ('transition' in doc.style),
29
+ webkit3d = ('WebKitCSSMatrix' in window) && ('m11' in new window.WebKitCSSMatrix()),
30
+ gecko3d = 'MozPerspective' in doc.style,
31
+ opera3d = 'OTransition' in doc.style,
32
+ any3d = !window.L_DISABLE_3D && (ie3d || webkit3d || gecko3d || opera3d) && !phantomjs;
33
+
34
+
35
+ // PhantomJS has 'ontouchstart' in document.documentElement, but doesn't actually support touch.
36
+ // https://github.com/Leaflet/Leaflet/pull/1434#issuecomment-13843151
37
+
38
+ var touch = !window.L_NO_TOUCH && !phantomjs && (function () {
39
+
40
+ var startName = 'ontouchstart';
41
+
42
+ // IE10+ (We simulate these into touch* events in L.DomEvent and L.DomEvent.MsTouch) or WebKit, etc.
43
+ if (msTouch || (startName in doc)) {
44
+ return true;
45
+ }
46
+
47
+ // Firefox/Gecko
48
+ var div = document.createElement('div'),
49
+ supported = false;
50
+
51
+ if (!div.setAttribute) {
52
+ return false;
53
+ }
54
+ div.setAttribute(startName, 'return;');
55
+
56
+ if (typeof div[startName] === 'function') {
57
+ supported = true;
58
+ }
59
+
60
+ div.removeAttribute(startName);
61
+ div = null;
62
+
63
+ return supported;
64
+ }());
65
+
66
+
67
+ L.Browser = {
68
+ ie: ie,
69
+ ie6: ie6,
70
+ ie7: ie7,
71
+ ielt9: ielt9,
72
+ webkit: webkit,
73
+
74
+ android: android,
75
+ android23: android23,
76
+
77
+ chrome: chrome,
78
+
79
+ ie3d: ie3d,
80
+ webkit3d: webkit3d,
81
+ gecko3d: gecko3d,
82
+ opera3d: opera3d,
83
+ any3d: any3d,
84
+
85
+ mobile: mobile,
86
+ mobileWebkit: mobile && webkit,
87
+ mobileWebkit3d: mobile && webkit3d,
88
+ mobileOpera: mobile && window.opera,
89
+
90
+ touch: touch,
91
+ msTouch: msTouch,
92
+
93
+ retina: retina
94
+ };
95
+
96
+ }());
@@ -0,0 +1,106 @@
1
+ /*
2
+ * L.Class powers the OOP facilities of the library.
3
+ * Thanks to John Resig and Dean Edwards for inspiration!
4
+ */
5
+
6
+ L.Class = function () {};
7
+
8
+ L.Class.extend = function (props) {
9
+
10
+ // extended class with the new prototype
11
+ var NewClass = function () {
12
+
13
+ // call the constructor
14
+ if (this.initialize) {
15
+ this.initialize.apply(this, arguments);
16
+ }
17
+
18
+ // call all constructor hooks
19
+ if (this._initHooks) {
20
+ this.callInitHooks();
21
+ }
22
+ };
23
+
24
+ // instantiate class without calling constructor
25
+ var F = function () {};
26
+ F.prototype = this.prototype;
27
+
28
+ var proto = new F();
29
+ proto.constructor = NewClass;
30
+
31
+ NewClass.prototype = proto;
32
+
33
+ //inherit parent's statics
34
+ for (var i in this) {
35
+ if (this.hasOwnProperty(i) && i !== 'prototype') {
36
+ NewClass[i] = this[i];
37
+ }
38
+ }
39
+
40
+ // mix static properties into the class
41
+ if (props.statics) {
42
+ L.extend(NewClass, props.statics);
43
+ delete props.statics;
44
+ }
45
+
46
+ // mix includes into the prototype
47
+ if (props.includes) {
48
+ L.Util.extend.apply(null, [proto].concat(props.includes));
49
+ delete props.includes;
50
+ }
51
+
52
+ // merge options
53
+ if (props.options && proto.options) {
54
+ props.options = L.extend({}, proto.options, props.options);
55
+ }
56
+
57
+ // mix given properties into the prototype
58
+ L.extend(proto, props);
59
+
60
+ proto._initHooks = [];
61
+
62
+ var parent = this;
63
+ // jshint camelcase: false
64
+ NewClass.__super__ = parent.prototype;
65
+
66
+ // add method for calling all hooks
67
+ proto.callInitHooks = function () {
68
+
69
+ if (this._initHooksCalled) { return; }
70
+
71
+ if (parent.prototype.callInitHooks) {
72
+ parent.prototype.callInitHooks.call(this);
73
+ }
74
+
75
+ this._initHooksCalled = true;
76
+
77
+ for (var i = 0, len = proto._initHooks.length; i < len; i++) {
78
+ proto._initHooks[i].call(this);
79
+ }
80
+ };
81
+
82
+ return NewClass;
83
+ };
84
+
85
+
86
+ // method for adding properties to prototype
87
+ L.Class.include = function (props) {
88
+ L.extend(this.prototype, props);
89
+ };
90
+
91
+ // merge new default options to the Class
92
+ L.Class.mergeOptions = function (options) {
93
+ L.extend(this.prototype.options, options);
94
+ };
95
+
96
+ // add a constructor hook
97
+ L.Class.addInitHook = function (fn) { // (Function) || (String, args...)
98
+ var args = Array.prototype.slice.call(arguments, 1);
99
+
100
+ var init = typeof fn === 'function' ? fn : function () {
101
+ this[fn].apply(this, args);
102
+ };
103
+
104
+ this.prototype._initHooks = this.prototype._initHooks || [];
105
+ this.prototype._initHooks.push(init);
106
+ };
@@ -0,0 +1,174 @@
1
+ /*
2
+ * L.Mixin.Events is used to add custom events functionality to Leaflet classes.
3
+ */
4
+
5
+ var eventsKey = '_leaflet_events';
6
+
7
+ L.Mixin = {};
8
+
9
+ L.Mixin.Events = {
10
+
11
+ addEventListener: function (types, fn, context) { // (String, Function[, Object]) or (Object[, Object])
12
+
13
+ // types can be a map of types/handlers
14
+ if (L.Util.invokeEach(types, this.addEventListener, this, fn, context)) { return this; }
15
+
16
+ var events = this[eventsKey] = this[eventsKey] || {},
17
+ contextId = context && L.stamp(context),
18
+ i, len, event, type, indexKey, indexLenKey, typeIndex;
19
+
20
+ // types can be a string of space-separated words
21
+ types = L.Util.splitWords(types);
22
+
23
+ for (i = 0, len = types.length; i < len; i++) {
24
+ event = {
25
+ action: fn,
26
+ context: context || this
27
+ };
28
+ type = types[i];
29
+
30
+ if (context) {
31
+ // store listeners of a particular context in a separate hash (if it has an id)
32
+ // gives a major performance boost when removing thousands of map layers
33
+
34
+ indexKey = type + '_idx',
35
+ indexLenKey = indexKey + '_len',
36
+
37
+ typeIndex = events[indexKey] = events[indexKey] || {};
38
+
39
+ if (!typeIndex[contextId]) {
40
+ typeIndex[contextId] = [];
41
+
42
+ // keep track of the number of keys in the index to quickly check if it's empty
43
+ events[indexLenKey] = (events[indexLenKey] || 0) + 1;
44
+ }
45
+
46
+ typeIndex[contextId].push(event);
47
+
48
+
49
+ } else {
50
+ events[type] = events[type] || [];
51
+ events[type].push(event);
52
+ }
53
+ }
54
+
55
+ return this;
56
+ },
57
+
58
+ hasEventListeners: function (type) { // (String) -> Boolean
59
+ var events = this[eventsKey];
60
+ return !!events && ((type in events && events[type].length > 0) ||
61
+ (type + '_idx' in events && events[type + '_idx_len'] > 0));
62
+ },
63
+
64
+ removeEventListener: function (types, fn, context) { // ([String, Function, Object]) or (Object[, Object])
65
+
66
+ if (!this[eventsKey]) {
67
+ return this;
68
+ }
69
+
70
+ if (!types) {
71
+ return this.clearAllEventListeners();
72
+ }
73
+
74
+ if (L.Util.invokeEach(types, this.removeEventListener, this, fn, context)) { return this; }
75
+
76
+ var events = this[eventsKey],
77
+ contextId = context && L.stamp(context),
78
+ i, len, type, listeners, j, indexKey, indexLenKey, typeIndex;
79
+
80
+ types = L.Util.splitWords(types);
81
+
82
+ for (i = 0, len = types.length; i < len; i++) {
83
+ type = types[i];
84
+ indexKey = type + '_idx';
85
+ indexLenKey = indexKey + '_len';
86
+
87
+ typeIndex = events[indexKey];
88
+
89
+ if (!fn) {
90
+ // clear all listeners for a type if function isn't specified
91
+ delete events[type];
92
+ delete events[indexKey];
93
+
94
+ } else {
95
+ listeners = context && typeIndex ? typeIndex[contextId] : events[type];
96
+
97
+ if (listeners) {
98
+ for (j = listeners.length - 1; j >= 0; j--) {
99
+ if ((listeners[j].action === fn) && (!context || (listeners[j].context === context))) {
100
+ listeners.splice(j, 1);
101
+ }
102
+ }
103
+
104
+ if (context && typeIndex && (listeners.length === 0)) {
105
+ delete typeIndex[contextId];
106
+ events[indexLenKey]--;
107
+ }
108
+ }
109
+ }
110
+ }
111
+
112
+ return this;
113
+ },
114
+
115
+ clearAllEventListeners: function () {
116
+ delete this[eventsKey];
117
+ return this;
118
+ },
119
+
120
+ fireEvent: function (type, data) { // (String[, Object])
121
+ if (!this.hasEventListeners(type)) {
122
+ return this;
123
+ }
124
+
125
+ var event = L.Util.extend({}, data, { type: type, target: this });
126
+
127
+ var events = this[eventsKey],
128
+ listeners, i, len, typeIndex, contextId;
129
+
130
+ if (events[type]) {
131
+ // make sure adding/removing listeners inside other listeners won't cause infinite loop
132
+ listeners = events[type].slice();
133
+
134
+ for (i = 0, len = listeners.length; i < len; i++) {
135
+ listeners[i].action.call(listeners[i].context || this, event);
136
+ }
137
+ }
138
+
139
+ // fire event for the context-indexed listeners as well
140
+ typeIndex = events[type + '_idx'];
141
+
142
+ for (contextId in typeIndex) {
143
+ listeners = typeIndex[contextId];
144
+
145
+ if (listeners) {
146
+ for (i = 0, len = listeners.length; i < len; i++) {
147
+ listeners[i].action.call(listeners[i].context || this, event);
148
+ }
149
+ }
150
+ }
151
+
152
+ return this;
153
+ },
154
+
155
+ addOneTimeEventListener: function (types, fn, context) {
156
+
157
+ if (L.Util.invokeEach(types, this.addOneTimeEventListener, this, fn, context)) { return this; }
158
+
159
+ var handler = L.bind(function () {
160
+ this
161
+ .removeEventListener(types, fn, context)
162
+ .removeEventListener(types, handler, context);
163
+ }, this);
164
+
165
+ return this
166
+ .addEventListener(types, fn, context)
167
+ .addEventListener(types, handler, context);
168
+ }
169
+ };
170
+
171
+ L.Mixin.Events.on = L.Mixin.Events.addEventListener;
172
+ L.Mixin.Events.off = L.Mixin.Events.removeEventListener;
173
+ L.Mixin.Events.once = L.Mixin.Events.addOneTimeEventListener;
174
+ L.Mixin.Events.fire = L.Mixin.Events.fireEvent;
@@ -0,0 +1,28 @@
1
+ /*
2
+ L.Handler is a base class for handler classes that are used internally to inject
3
+ interaction features like dragging to classes like Map and Marker.
4
+ */
5
+
6
+ L.Handler = L.Class.extend({
7
+ initialize: function (map) {
8
+ this._map = map;
9
+ },
10
+
11
+ enable: function () {
12
+ if (this._enabled) { return; }
13
+
14
+ this._enabled = true;
15
+ this.addHooks();
16
+ },
17
+
18
+ disable: function () {
19
+ if (!this._enabled) { return; }
20
+
21
+ this._enabled = false;
22
+ this.removeHooks();
23
+ },
24
+
25
+ enabled: function () {
26
+ return !!this._enabled;
27
+ }
28
+ });
@@ -0,0 +1,182 @@
1
+ /*
2
+ * L.Util contains various utility functions used throughout Leaflet code.
3
+ */
4
+
5
+ L.Util = {
6
+ extend: function (dest) { // (Object[, Object, ...]) ->
7
+ var sources = Array.prototype.slice.call(arguments, 1),
8
+ i, j, len, src;
9
+
10
+ for (j = 0, len = sources.length; j < len; j++) {
11
+ src = sources[j] || {};
12
+ for (i in src) {
13
+ if (src.hasOwnProperty(i)) {
14
+ dest[i] = src[i];
15
+ }
16
+ }
17
+ }
18
+ return dest;
19
+ },
20
+
21
+ bind: function (fn, obj) { // (Function, Object) -> Function
22
+ var args = arguments.length > 2 ? Array.prototype.slice.call(arguments, 2) : null;
23
+ return function () {
24
+ return fn.apply(obj, args || arguments);
25
+ };
26
+ },
27
+
28
+ stamp: (function () {
29
+ var lastId = 0, key = '_leaflet_id';
30
+ return function (/*Object*/ obj) {
31
+ obj[key] = obj[key] || ++lastId;
32
+ return obj[key];
33
+ };
34
+ }()),
35
+
36
+ invokeEach: function (obj, method, context) {
37
+ var i, args;
38
+
39
+ if (typeof obj === 'object') {
40
+ args = Array.prototype.slice.call(arguments, 3);
41
+
42
+ for (i in obj) {
43
+ method.apply(context, [i, obj[i]].concat(args));
44
+ }
45
+ return true;
46
+ }
47
+
48
+ return false;
49
+ },
50
+
51
+ limitExecByInterval: function (fn, time, context) {
52
+ var lock, execOnUnlock;
53
+
54
+ return function wrapperFn() {
55
+ var args = arguments;
56
+
57
+ if (lock) {
58
+ execOnUnlock = true;
59
+ return;
60
+ }
61
+
62
+ lock = true;
63
+
64
+ setTimeout(function () {
65
+ lock = false;
66
+
67
+ if (execOnUnlock) {
68
+ wrapperFn.apply(context, args);
69
+ execOnUnlock = false;
70
+ }
71
+ }, time);
72
+
73
+ fn.apply(context, args);
74
+ };
75
+ },
76
+
77
+ falseFn: function () {
78
+ return false;
79
+ },
80
+
81
+ formatNum: function (num, digits) {
82
+ var pow = Math.pow(10, digits || 5);
83
+ return Math.round(num * pow) / pow;
84
+ },
85
+
86
+ trim: function (str) {
87
+ return str.trim ? str.trim() : str.replace(/^\s+|\s+$/g, '');
88
+ },
89
+
90
+ splitWords: function (str) {
91
+ return L.Util.trim(str).split(/\s+/);
92
+ },
93
+
94
+ setOptions: function (obj, options) {
95
+ obj.options = L.extend({}, obj.options, options);
96
+ return obj.options;
97
+ },
98
+
99
+ getParamString: function (obj, existingUrl) {
100
+ var params = [];
101
+ for (var i in obj) {
102
+ params.push(encodeURIComponent(i) + '=' + encodeURIComponent(obj[i]));
103
+ }
104
+ return ((!existingUrl || existingUrl.indexOf('?') === -1) ? '?' : '&') + params.join('&');
105
+ },
106
+
107
+ template: function (str, data) {
108
+ return str.replace(/\{ *([\w_]+) *\}/g, function (str, key) {
109
+ var value = data[key];
110
+ if (value === undefined) {
111
+ throw new Error('No value provided for variable ' + str);
112
+ } else if (typeof value === 'function') {
113
+ value = value(data);
114
+ }
115
+ return value;
116
+ });
117
+ },
118
+
119
+ isArray: function (obj) {
120
+ return (Object.prototype.toString.call(obj) === '[object Array]');
121
+ },
122
+
123
+ emptyImageUrl: 'data:image/gif;base64,R0lGODlhAQABAAD/ACwAAAAAAQABAAACADs='
124
+ };
125
+
126
+ (function () {
127
+
128
+ // inspired by http://paulirish.com/2011/requestanimationframe-for-smart-animating/
129
+
130
+ function getPrefixed(name) {
131
+ var i, fn,
132
+ prefixes = ['webkit', 'moz', 'o', 'ms'];
133
+
134
+ for (i = 0; i < prefixes.length && !fn; i++) {
135
+ fn = window[prefixes[i] + name];
136
+ }
137
+
138
+ return fn;
139
+ }
140
+
141
+ var lastTime = 0;
142
+
143
+ function timeoutDefer(fn) {
144
+ var time = +new Date(),
145
+ timeToCall = Math.max(0, 16 - (time - lastTime));
146
+
147
+ lastTime = time + timeToCall;
148
+ return window.setTimeout(fn, timeToCall);
149
+ }
150
+
151
+ var requestFn = window.requestAnimationFrame ||
152
+ getPrefixed('RequestAnimationFrame') || timeoutDefer;
153
+
154
+ var cancelFn = window.cancelAnimationFrame ||
155
+ getPrefixed('CancelAnimationFrame') ||
156
+ getPrefixed('CancelRequestAnimationFrame') ||
157
+ function (id) { window.clearTimeout(id); };
158
+
159
+
160
+ L.Util.requestAnimFrame = function (fn, context, immediate, element) {
161
+ fn = L.bind(fn, context);
162
+
163
+ if (immediate && requestFn === timeoutDefer) {
164
+ fn();
165
+ } else {
166
+ return requestFn.call(window, fn, element);
167
+ }
168
+ };
169
+
170
+ L.Util.cancelAnimFrame = function (id) {
171
+ if (id) {
172
+ cancelFn.call(window, id);
173
+ }
174
+ };
175
+
176
+ }());
177
+
178
+ // shortcuts for most used utility functions
179
+ L.extend = L.Util.extend;
180
+ L.bind = L.Util.bind;
181
+ L.stamp = L.Util.stamp;
182
+ L.setOptions = L.Util.setOptions;