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,13 @@
1
+ describe('L#noConflict', function() {
2
+ it('restores the previous L value and returns Leaflet namespace', function(){
3
+
4
+ expect(L.version).to.be.ok();
5
+
6
+ var L2 = L.noConflict();
7
+
8
+ expect(L).to.eql('test');
9
+ expect(L2.version).to.be.ok();
10
+
11
+ window.L = L2;
12
+ });
13
+ });
@@ -0,0 +1,26 @@
1
+ function noSpecs() {
2
+ xit('has no specs');
3
+ }
4
+
5
+ if (!Array.prototype.map) {
6
+ Array.prototype.map = function(fun /*, thisp */) {
7
+ "use strict";
8
+
9
+ if (this === void 0 || this === null)
10
+ throw new TypeError();
11
+
12
+ var t = Object(this);
13
+ var len = t.length >>> 0;
14
+ if (typeof fun !== "function")
15
+ throw new TypeError();
16
+
17
+ var res = new Array(len);
18
+ var thisp = arguments[1];
19
+ for (var i = 0; i < len; i++) {
20
+ if (i in t)
21
+ res[i] = fun.call(thisp, t[i], i, t);
22
+ }
23
+
24
+ return res;
25
+ };
26
+ }
@@ -0,0 +1,68 @@
1
+ describe("Control.Attribution", function () {
2
+
3
+ var map, control, container;
4
+
5
+ beforeEach(function () {
6
+ map = L.map(document.createElement('div'));
7
+ control = new L.Control.Attribution({
8
+ prefix: 'prefix'
9
+ }).addTo(map);
10
+ container = control.getContainer();
11
+ });
12
+
13
+ it("contains just prefix if no attributions added", function () {
14
+ expect(container.innerHTML).to.eql('prefix');
15
+ });
16
+
17
+ describe('#addAttribution', function () {
18
+ it('adds one attribution correctly', function () {
19
+ control.addAttribution('foo');
20
+ expect(container.innerHTML).to.eql('prefix | foo');
21
+ });
22
+
23
+ it('adds no duplicate attributions', function () {
24
+ control.addAttribution('foo');
25
+ control.addAttribution('foo');
26
+ expect(container.innerHTML).to.eql('prefix | foo');
27
+ });
28
+
29
+ it('adds several attributions listed with comma', function () {
30
+ control.addAttribution('foo');
31
+ control.addAttribution('bar');
32
+ expect(container.innerHTML).to.eql('prefix | foo, bar');
33
+ });
34
+ });
35
+
36
+ describe('#removeAttribution', function () {
37
+ it('removes attribution correctly', function () {
38
+ control.addAttribution('foo');
39
+ control.addAttribution('bar');
40
+ control.removeAttribution('foo');
41
+ expect(container.innerHTML).to.eql('prefix | bar');
42
+ });
43
+ it('does nothing if removing attribution that was not present', function () {
44
+ control.addAttribution('foo');
45
+ control.addAttribution('baz');
46
+ control.removeAttribution('bar');
47
+ control.removeAttribution('baz');
48
+ control.removeAttribution('baz');
49
+ control.removeAttribution('');
50
+ expect(container.innerHTML).to.eql('prefix | foo');
51
+ });
52
+ });
53
+
54
+ describe('#setPrefix', function () {
55
+ it('changes prefix', function () {
56
+ control.setPrefix('bla');
57
+ expect(container.innerHTML).to.eql('bla');
58
+ });
59
+ });
60
+
61
+ describe('control.attribution factory', function () {
62
+ it('creates Control.Attribution instance', function () {
63
+ var options = {prefix: 'prefix'};
64
+ expect(L.control.attribution(options)).to.eql(new L.Control.Attribution(options));
65
+ });
66
+ });
67
+
68
+ });
@@ -0,0 +1,67 @@
1
+ describe("Control.Layers", function () {
2
+ var map;
3
+
4
+ beforeEach(function () {
5
+ map = L.map(document.createElement('div'));
6
+ });
7
+
8
+ describe("baselayerchange event", function () {
9
+ it("is fired on input that changes the base layer", function () {
10
+ var baseLayers = {"Layer 1": L.tileLayer(), "Layer 2": L.tileLayer()},
11
+ layers = L.control.layers(baseLayers).addTo(map),
12
+ spy = sinon.spy();
13
+
14
+ map.on('baselayerchange', spy)
15
+ .whenReady(function() {
16
+ happen.click(layers._baseLayersList.getElementsByTagName("input")[0]);
17
+
18
+ expect(spy.called).to.be.ok();
19
+ expect(spy.mostRecentCall.args[0].layer).to.be(baseLayers["Layer 1"]);
20
+ });
21
+ });
22
+
23
+ it("is not fired on input that doesn't change the base layer", function () {
24
+ var overlays = {"Marker 1": L.marker([0, 0]), "Marker 2": L.marker([0, 0])},
25
+ layers = L.control.layers({}, overlays).addTo(map),
26
+ spy = sinon.spy();
27
+
28
+ map.on('baselayerchange', spy);
29
+ happen.click(layers._overlaysList.getElementsByTagName("input")[0]);
30
+
31
+ expect(spy.called).to.not.be.ok();
32
+ });
33
+ });
34
+
35
+ describe("updates", function () {
36
+ beforeEach(function () {
37
+ map.setView([0, 0], 14);
38
+ });
39
+
40
+ it("when an included layer is addded or removed", function () {
41
+ var baseLayer = L.tileLayer(),
42
+ overlay = L.marker([0, 0]),
43
+ layers = L.control.layers({"Base": baseLayer}, {"Overlay": overlay}).addTo(map);
44
+
45
+ var spy = sinon.spy(layers, '_update');
46
+
47
+ map.addLayer(overlay);
48
+ map.removeLayer(overlay);
49
+
50
+ expect(spy.called).to.be.ok();
51
+ expect(spy.callCount).to.eql(2);
52
+ });
53
+
54
+ it("not when a non-included layer is added or removed", function () {
55
+ var baseLayer = L.tileLayer(),
56
+ overlay = L.marker([0, 0]),
57
+ layers = L.control.layers({"Base": baseLayer}).addTo(map);
58
+
59
+ var spy = sinon.spy(layers, '_update');
60
+
61
+ map.addLayer(overlay);
62
+ map.removeLayer(overlay);
63
+
64
+ expect(spy.called).to.not.be.ok();
65
+ });
66
+ });
67
+ });
@@ -0,0 +1,6 @@
1
+ describe("Control.Scale", function () {
2
+ it("can be added to an unloaded map", function () {
3
+ var map = L.map(document.createElement('div'));
4
+ new L.Control.Scale().addTo(map);
5
+ });
6
+ });
@@ -0,0 +1,156 @@
1
+ describe("Class", function() {
2
+
3
+ describe("#extend", function() {
4
+ var Klass,
5
+ constructor,
6
+ method;
7
+
8
+ beforeEach(function() {
9
+ constructor = sinon.spy();
10
+ method = sinon.spy();
11
+
12
+ Klass = L.Class.extend({
13
+ statics: {bla: 1},
14
+ includes: {mixin: true},
15
+
16
+ initialize: constructor,
17
+ foo: 5,
18
+ bar: method
19
+ });
20
+ });
21
+
22
+ it("creates a class with the given constructor & properties", function() {
23
+ var a = new Klass();
24
+
25
+ expect(constructor.called).to.be.ok();
26
+ expect(a.foo).to.eql(5);
27
+
28
+ a.bar();
29
+
30
+ expect(method.called).to.be.ok();
31
+ });
32
+
33
+ it("inherits parent classes' constructor & properties", function() {
34
+ var Klass2 = Klass.extend({baz: 2});
35
+
36
+ var b = new Klass2();
37
+
38
+ expect(b instanceof Klass).to.be.ok();
39
+ expect(b instanceof Klass2).to.be.ok();
40
+
41
+ expect(constructor.called).to.be.ok();
42
+ expect(b.baz).to.eql(2);
43
+
44
+ b.bar();
45
+
46
+ expect(method.called).to.be.ok();
47
+ });
48
+
49
+ it("supports static properties", function() {
50
+ expect(Klass.bla).to.eql(1);
51
+ });
52
+
53
+ it("inherits parent static properties", function() {
54
+ var Klass2 = Klass.extend({});
55
+
56
+ expect(Klass2.bla).to.eql(1);
57
+ });
58
+
59
+ it("overrides parent static properties", function() {
60
+ var Klass2 = Klass.extend({statics: {bla: 2}});
61
+
62
+ expect(Klass2.bla).to.eql(2);
63
+ });
64
+
65
+ it("includes the given mixin", function() {
66
+ var a = new Klass();
67
+ expect(a.mixin).to.be.ok();
68
+ });
69
+
70
+ it("includes multiple mixins", function() {
71
+ var Klass2 = L.Class.extend({
72
+ includes: [{mixin: true}, {mixin2: true}]
73
+ });
74
+ var a = new Klass2();
75
+
76
+ expect(a.mixin).to.be.ok();
77
+ expect(a.mixin2).to.be.ok();
78
+ });
79
+
80
+ it("grants the ability to include the given mixin", function() {
81
+ Klass.include({mixin2: true});
82
+
83
+ var a = new Klass();
84
+ expect(a.mixin2).to.be.ok();
85
+ });
86
+
87
+ it("merges options instead of replacing them", function() {
88
+ var KlassWithOptions1 = L.Class.extend({
89
+ options: {
90
+ foo1: 1,
91
+ foo2: 2
92
+ }
93
+ });
94
+ var KlassWithOptions2 = KlassWithOptions1.extend({
95
+ options: {
96
+ foo2: 3,
97
+ foo3: 4
98
+ }
99
+ });
100
+
101
+ var a = new KlassWithOptions2();
102
+
103
+ expect(a.options).to.eql({
104
+ foo1: 1,
105
+ foo2: 3,
106
+ foo3: 4
107
+ });
108
+ });
109
+
110
+ it("adds constructor hooks correctly", function () {
111
+ var spy1 = sinon.spy();
112
+
113
+ Klass.addInitHook(spy1);
114
+ Klass.addInitHook('bar', 1, 2, 3);
115
+
116
+ var a = new Klass();
117
+
118
+ expect(spy1.called).to.be.ok();
119
+ expect(method.calledWith(1, 2, 3));
120
+ });
121
+
122
+ it("inherits constructor hooks", function () {
123
+ var spy1 = sinon.spy(),
124
+ spy2 = sinon.spy();
125
+
126
+ var Klass2 = Klass.extend({});
127
+
128
+ Klass.addInitHook(spy1);
129
+ Klass2.addInitHook(spy2);
130
+
131
+ var a = new Klass2();
132
+
133
+ expect(spy1.called).to.be.ok();
134
+ expect(spy2.called).to.be.ok();
135
+ });
136
+
137
+ it("does not call child constructor hooks", function () {
138
+ var spy1 = sinon.spy(),
139
+ spy2 = sinon.spy();
140
+
141
+ var Klass2 = Klass.extend({});
142
+
143
+ Klass.addInitHook(spy1);
144
+ Klass2.addInitHook(spy2);
145
+
146
+ var a = new Klass();
147
+
148
+ expect(spy1.called).to.be.ok();
149
+ expect(spy2.called).to.eql(false);
150
+ });
151
+ });
152
+
153
+ // TODO Class.include
154
+
155
+ // TODO Class.mergeOptions
156
+ });
@@ -0,0 +1,336 @@
1
+ describe('Events', function() {
2
+ var Klass;
3
+
4
+ beforeEach(function() {
5
+ Klass = L.Class.extend({
6
+ includes: L.Mixin.Events
7
+ });
8
+ });
9
+
10
+ describe('#fireEvent', function() {
11
+
12
+ it('fires all listeners added through #addEventListener', function() {
13
+ var obj = new Klass(),
14
+ spy1 = sinon.spy(),
15
+ spy2 = sinon.spy(),
16
+ spy3 = sinon.spy(),
17
+ spy4 = sinon.spy(),
18
+ spy5 = sinon.spy();
19
+ spy6 = sinon.spy();
20
+
21
+ obj.addEventListener('test', spy1);
22
+ obj.addEventListener('test', spy2);
23
+ obj.addEventListener('other', spy3);
24
+ obj.addEventListener({ test: spy4, other: spy5 });
25
+ obj.addEventListener({'test other': spy6 });
26
+
27
+ expect(spy1.called).to.be(false);
28
+ expect(spy2.called).to.be(false);
29
+ expect(spy3.called).to.be(false);
30
+ expect(spy4.called).to.be(false);
31
+ expect(spy5.called).to.be(false);
32
+ expect(spy6.called).to.be(false);
33
+
34
+ obj.fireEvent('test');
35
+
36
+ expect(spy1.called).to.be(true);
37
+ expect(spy2.called).to.be(true);
38
+ expect(spy3.called).to.be(false);
39
+ expect(spy4.called).to.be(true);
40
+ expect(spy5.called).to.be(false);
41
+ expect(spy6.called).to.be(true);
42
+ expect(spy6.callCount).to.be(1);
43
+ });
44
+
45
+ it('provides event object to listeners and executes them in the right context', function() {
46
+ var obj = new Klass(),
47
+ obj2 = new Klass(),
48
+ obj3 = new Klass(),
49
+ obj4 = new Klass(),
50
+ foo = {};
51
+
52
+ function listener1(e) {
53
+ expect(e.type).to.eql('test');
54
+ expect(e.target).to.eql(obj);
55
+ expect(this).to.eql(obj);
56
+ expect(e.baz).to.eql(1);
57
+ }
58
+
59
+ function listener2(e) {
60
+ expect(e.type).to.eql('test');
61
+ expect(e.target).to.eql(obj2);
62
+ expect(this).to.eql(foo);
63
+ expect(e.baz).to.eql(2);
64
+ }
65
+
66
+ function listener3(e) {
67
+ expect(e.type).to.eql('test');
68
+ expect(e.target).to.eql(obj3);
69
+ expect(this).to.eql(obj3);
70
+ expect(e.baz).to.eql(3);
71
+ }
72
+
73
+ function listener4(e) {
74
+ expect(e.type).to.eql('test');
75
+ expect(e.target).to.eql(obj4);
76
+ expect(this).to.eql(foo);
77
+ expect(e.baz).to.eql(4);
78
+ }
79
+
80
+ obj.addEventListener('test', listener1);
81
+ obj2.addEventListener('test', listener2, foo);
82
+ obj3.addEventListener({ test: listener3 });
83
+ obj4.addEventListener({ test: listener4 }, foo);
84
+
85
+ obj.fireEvent('test', {baz: 1});
86
+ obj2.fireEvent('test', {baz: 2});
87
+ obj3.fireEvent('test', {baz: 3});
88
+ obj4.fireEvent('test', {baz: 4});
89
+ });
90
+
91
+ it('calls no listeners removed through #removeEventListener', function() {
92
+ var obj = new Klass(),
93
+ spy = sinon.spy(),
94
+ spy2 = sinon.spy(),
95
+ spy3 = sinon.spy(),
96
+ spy4 = sinon.spy(),
97
+ spy5 = sinon.spy();
98
+
99
+ obj.addEventListener('test', spy);
100
+ obj.removeEventListener('test', spy);
101
+
102
+ obj.fireEvent('test');
103
+
104
+ expect(spy.called).to.be(false);
105
+
106
+ obj.addEventListener('test2', spy2);
107
+ obj.addEventListener('test2', spy3);
108
+ obj.removeEventListener('test2');
109
+
110
+ obj.fireEvent('test2');
111
+
112
+ expect(spy2.called).to.be(false);
113
+ expect(spy3.called).to.be(false);
114
+
115
+ obj.addEventListener('test3', spy4);
116
+ obj.addEventListener('test4', spy5);
117
+ obj.removeEventListener({
118
+ test3: spy4,
119
+ test4: spy5
120
+ });
121
+
122
+ obj.fireEvent('test3');
123
+ obj.fireEvent('test4');
124
+
125
+ expect(spy4.called).to.be(false);
126
+ expect(spy5.called).to.be(false);
127
+ });
128
+
129
+ it('can handle calls to #removeEventListener on objects with no registered event listeners', function () {
130
+ var obj = new Klass();
131
+ var removeNonExistentListener = function () {
132
+ obj.removeEventListener('test');
133
+ };
134
+ expect(removeNonExistentListener).to.not.throwException();
135
+ });
136
+
137
+ // added due to context-sensitive removeListener optimization
138
+ it('fires multiple listeners with the same context with id', function () {
139
+ var obj = new Klass(),
140
+ spy1 = sinon.spy(),
141
+ spy2 = sinon.spy(),
142
+ foo = {};
143
+
144
+ L.Util.stamp(foo);
145
+
146
+ obj.addEventListener('test', spy1, foo);
147
+ obj.addEventListener('test', spy2, foo);
148
+
149
+ obj.fireEvent('test');
150
+
151
+ expect(spy1.called).to.be(true);
152
+ expect(spy2.called).to.be(true);
153
+ });
154
+
155
+ it('removes listeners with stamped contexts', function () {
156
+ var obj = new Klass(),
157
+ spy1 = sinon.spy(),
158
+ spy2 = sinon.spy(),
159
+ foo = {};
160
+
161
+ L.Util.stamp(foo);
162
+
163
+ obj.addEventListener('test', spy1, foo);
164
+ obj.addEventListener('test', spy2, foo);
165
+
166
+ obj.removeEventListener('test', spy1, foo);
167
+
168
+ obj.fireEvent('test');
169
+
170
+ expect(spy1.called).to.be(false);
171
+ expect(spy2.called).to.be(true);
172
+ });
173
+
174
+ it('removes listeners with a stamp originally added without one', function() {
175
+ var obj = new Klass(),
176
+ spy1 = sinon.spy(),
177
+ spy2 = sinon.spy(),
178
+ foo = {};
179
+
180
+ obj.addEventListener('test', spy1, foo);
181
+ L.Util.stamp(foo);
182
+ obj.addEventListener('test', spy2, foo);
183
+
184
+ obj.removeEventListener('test', spy1, foo);
185
+ obj.removeEventListener('test', spy2, foo);
186
+
187
+ obj.fireEvent('test');
188
+
189
+ expect(spy1.called).to.be(false);
190
+ expect(spy2.called).to.be(false);
191
+ });
192
+ it('doesnt lose track of listeners when removing non existent ones', function () {
193
+ var obj = new Klass(),
194
+ spy = sinon.spy(),
195
+ spy2 = sinon.spy(),
196
+ foo = {},
197
+ foo2 = {};
198
+
199
+ L.Util.stamp(foo);
200
+ L.Util.stamp(foo2);
201
+
202
+ obj.addEventListener('test', spy, foo2);
203
+
204
+ obj.removeEventListener('test', spy, foo); // Decrements test_idx to 0, even though event listener isn't registered with foo's _leaflet_id
205
+ obj.removeEventListener('test', spy, foo2); // Doesn't get removed
206
+
207
+ obj.addEventListener('test', spy2, foo);
208
+
209
+ obj.fireEvent('test');
210
+
211
+ expect(spy.called).to.be(false);
212
+ });
213
+ });
214
+
215
+ describe('#on, #off & #fire', function() {
216
+
217
+ it('works like #addEventListener && #removeEventListener', function() {
218
+ var obj = new Klass(),
219
+ spy = sinon.spy();
220
+
221
+ obj.on('test', spy);
222
+ obj.fire('test');
223
+
224
+ expect(spy.called).to.be(true);
225
+
226
+ obj.off('test', spy);
227
+ obj.fireEvent('test');
228
+
229
+ expect(spy.callCount).to.be.lessThan(2);
230
+ });
231
+
232
+ it('does not override existing methods with the same name', function() {
233
+ var spy1 = sinon.spy(),
234
+ spy2 = sinon.spy(),
235
+ spy3 = sinon.spy();
236
+
237
+ var Klass2 = L.Class.extend({
238
+ includes: L.Mixin.Events,
239
+ on: spy1,
240
+ off: spy2,
241
+ fire: spy3
242
+ });
243
+
244
+ var obj = new Klass2();
245
+
246
+ obj.on();
247
+ expect(spy1.called).to.be(true);
248
+
249
+ obj.off();
250
+ expect(spy2.called).to.be(true);
251
+
252
+ obj.fire();
253
+ expect(spy3.called).to.be(true);
254
+ });
255
+ });
256
+
257
+ describe("#clearEventListeners", function() {
258
+ it("clears all registered listeners on an object", function() {
259
+ var spy = sinon.spy(),
260
+ obj = new Klass()
261
+ otherObj = new Klass();
262
+
263
+ obj.on('test', spy, obj);
264
+ obj.on('testTwo', spy);
265
+ obj.on('test', spy, otherObj);
266
+ obj.off();
267
+
268
+ obj.fire('test');
269
+
270
+ expect(spy.called).to.be(false);
271
+ });
272
+ });
273
+
274
+ describe('#once', function() {
275
+ it('removes event listeners after first trigger', function() {
276
+ var obj = new Klass(),
277
+ spy = sinon.spy();
278
+
279
+ obj.once('test', spy, obj);
280
+ obj.fire('test');
281
+
282
+ expect(spy.called).to.be(true);
283
+
284
+ obj.fire('test');
285
+
286
+ expect(spy.callCount).to.be.lessThan(2);
287
+ });
288
+
289
+ it('works with an object hash', function() {
290
+ var obj = new Klass(),
291
+ spy = sinon.spy(),
292
+ otherSpy = sinon.spy();
293
+
294
+ obj.once({
295
+ 'test': spy,
296
+ otherTest: otherSpy
297
+ }, obj);
298
+
299
+ obj.fire('test');
300
+ obj.fire('otherTest');
301
+
302
+ expect(spy.called).to.be(true);
303
+ expect(otherSpy.called).to.be(true);
304
+
305
+ obj.fire('test');
306
+ obj.fire('otherTest');
307
+
308
+ expect(spy.callCount).to.be.lessThan(2);
309
+ expect(otherSpy.callCount).to.be.lessThan(2);
310
+ });
311
+
312
+ it("doesn't call listeners to events that have been removed", function () {
313
+ var obj = new Klass(),
314
+ spy = sinon.spy();
315
+
316
+ obj.once('test', spy, obj);
317
+ obj.off('test', spy, obj);
318
+
319
+ obj.fire('test');
320
+
321
+ expect(spy.called).to.be(false);
322
+ });
323
+
324
+ it('works if called from a context that doesnt implement #Events', function() {
325
+ var obj = new Klass(),
326
+ spy = sinon.spy(),
327
+ foo = {};
328
+
329
+ obj.once('test', spy, foo);
330
+
331
+ obj.fire('test');
332
+
333
+ expect(spy.called).to.be(true);
334
+ });
335
+ });
336
+ });