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,31 @@
1
+ describe("Transformation", function() {
2
+ var t, p;
3
+
4
+ beforeEach(function() {
5
+ t = new L.Transformation(1, 2, 3, 4);
6
+ p = new L.Point(10, 20);
7
+ });
8
+
9
+ describe('#transform', function () {
10
+ it("performs a transformation", function() {
11
+ var p2 = t.transform(p, 2);
12
+ expect(p2).to.eql(new L.Point(24, 128));
13
+ });
14
+ it('assumes a scale of 1 if not specified', function () {
15
+ var p2 = t.transform(p);
16
+ expect(p2).to.eql(new L.Point(12, 64));
17
+ });
18
+ });
19
+
20
+ describe('#untransform', function () {
21
+ it("performs a reverse transformation", function() {
22
+ var p2 = t.transform(p, 2);
23
+ var p3 = t.untransform(p2, 2);
24
+ expect(p3).to.eql(p);
25
+ });
26
+ it('assumes a scale of 1 if not specified', function () {
27
+ var p2 = t.transform(p);
28
+ expect(t.untransform(new L.Point(12, 64))).to.eql(new L.Point(10, 20));
29
+ });
30
+ });
31
+ });
@@ -0,0 +1,36 @@
1
+ describe('CircleMarker', function () {
2
+ describe("#_propagateEvent", function () {
3
+ var map, marker;
4
+ beforeEach(function () {
5
+ map = L.map(document.createElement('div'));
6
+ map.setView([0, 0], 1);
7
+ marker = L.marker([0, 0]);
8
+ });
9
+ describe("when a Marker is added to multiple FeatureGroups ", function () {
10
+ it("e.layer should be the Marker", function () {
11
+ var fg1 = L.featureGroup(),
12
+ fg2 = L.featureGroup();
13
+
14
+ fg1.addLayer(marker);
15
+ fg2.addLayer(marker);
16
+
17
+ var wasClicked = 0;
18
+ fg2.on('click', function(e) {
19
+ expect(e.layer).to.be(marker);
20
+ expect(e.target).to.be(fg2);
21
+ wasClicked |= 1;
22
+ });
23
+
24
+ fg1.on('click', function (e) {
25
+ expect(e.layer).to.be(marker);
26
+ expect(e.target).to.be(fg1);
27
+ wasClicked |= 2;
28
+ });
29
+
30
+ marker.fire('click', { type: 'click' });
31
+
32
+ expect(wasClicked).to.be(3);
33
+ });
34
+ });
35
+ });
36
+ });
@@ -0,0 +1,86 @@
1
+ describe("L.Marker#toGeoJSON", function () {
2
+ it("returns a Point object", function () {
3
+ var marker = new L.Marker([10, 20]);
4
+ expect(marker.toGeoJSON()).to.eql({
5
+ type: 'Point',
6
+ coordinates: [20, 10]
7
+ });
8
+ });
9
+ });
10
+
11
+ describe("L.Polyline#toGeoJSON", function () {
12
+ it("returns a LineString object", function () {
13
+ var polyline = new L.Polyline([[10, 20], [2, 5]]);
14
+ expect(polyline.toGeoJSON()).to.eql({
15
+ type: 'LineString',
16
+ coordinates: [[20, 10], [5, 2]]
17
+ });
18
+ });
19
+ });
20
+
21
+ describe("L.MultiPolyline#toGeoJSON", function () {
22
+ it("returns a MultiLineString object", function () {
23
+ var multiPolyline = new L.MultiPolyline([[[10, 20], [2, 5]], [[1, 2], [3, 4]]]);
24
+ expect(multiPolyline.toGeoJSON()).to.eql({
25
+ type: 'MultiLineString',
26
+ coordinates: [
27
+ [[20, 10], [5, 2]],
28
+ [[2, 1], [4, 3]]
29
+ ]
30
+ });
31
+ });
32
+ });
33
+
34
+ describe("L.Polygon#toGeoJSON", function () {
35
+ it("returns a Polygon object (no holes)", function () {
36
+ var polygon = new L.Polygon([[1, 2], [3, 4], [5, 6]]);
37
+ expect(polygon.toGeoJSON()).to.eql({
38
+ type: 'Polygon',
39
+ coordinates: [[[2, 1], [4, 3], [6, 5], [2, 1]]]
40
+ });
41
+ });
42
+
43
+ it("returns a Polygon object (with holes)", function () {
44
+ var polygon = new L.Polygon([[[1, 2], [3, 4], [5, 6]], [[7, 8], [9, 10], [11, 12]]]);
45
+ expect(polygon.toGeoJSON()).to.eql({
46
+ type: 'Polygon',
47
+ coordinates: [
48
+ [[2, 1], [4, 3], [6, 5], [2, 1]],
49
+ [[8, 7], [10, 9], [12, 11], [8, 7]]
50
+ ]
51
+ });
52
+ });
53
+ });
54
+
55
+ describe("L.MultiPolygon#toGeoJSON", function () {
56
+ it("returns a MultiPolygon object", function () {
57
+ var multiPolygon = new L.MultiPolygon([[[1, 2], [3, 4], [5, 6]]]);
58
+ expect(multiPolygon.toGeoJSON()).to.eql({
59
+ type: 'MultiPolygon',
60
+ coordinates: [
61
+ [[[2, 1], [4, 3], [6, 5], [2, 1]]]
62
+ ]
63
+ });
64
+ });
65
+ });
66
+
67
+ describe("L.LayerGroup#toGeoJSON", function () {
68
+ it("returns a GeometryCollection object", function () {
69
+ var marker = new L.Marker([10, 20]),
70
+ polyline = new L.Polyline([[10, 20], [2, 5]]),
71
+ layerGroup = new L.LayerGroup([marker, polyline]);
72
+ expect(layerGroup.toGeoJSON()).to.eql({
73
+ type: 'GeometryCollection',
74
+ geometries: [marker.toGeoJSON(), polyline.toGeoJSON()]
75
+ });
76
+ });
77
+
78
+ it("omits layers which do not implement toGeoJSON", function () {
79
+ var tileLayer = new L.TileLayer(),
80
+ layerGroup = new L.LayerGroup([tileLayer]);
81
+ expect(layerGroup.toGeoJSON()).to.eql({
82
+ type: 'GeometryCollection',
83
+ geometries: []
84
+ });
85
+ });
86
+ });
@@ -0,0 +1,58 @@
1
+ describe('LayerGroup', function () {
2
+ describe("#addLayer", function () {
3
+ it('adds a layer', function() {
4
+ var lg = L.layerGroup(),
5
+ marker = L.marker([0, 0]);
6
+
7
+ expect(lg.addLayer(marker)).to.eql(lg);
8
+
9
+ expect(lg.hasLayer(marker)).to.be(true);
10
+ });
11
+ });
12
+ describe("#removeLayer", function () {
13
+ it('removes a layer', function() {
14
+ var lg = L.layerGroup(),
15
+ marker = L.marker([0, 0]);
16
+
17
+ lg.addLayer(marker);
18
+ expect(lg.removeLayer(marker)).to.eql(lg);
19
+
20
+ expect(lg.hasLayer(marker)).to.be(false);
21
+ });
22
+ });
23
+ describe("#clearLayers", function () {
24
+ it('removes all layers', function() {
25
+ var lg = L.layerGroup(),
26
+ marker = L.marker([0, 0]);
27
+
28
+ lg.addLayer(marker);
29
+ expect(lg.clearLayers()).to.eql(lg);
30
+
31
+ expect(lg.hasLayer(marker)).to.be(false);
32
+ });
33
+ });
34
+ describe("#getLayers", function () {
35
+ it('gets all layers', function() {
36
+ var lg = L.layerGroup(),
37
+ marker = L.marker([0, 0]);
38
+
39
+ lg.addLayer(marker);
40
+
41
+ expect(lg.getLayers()).to.eql([marker]);
42
+ });
43
+ });
44
+ describe("#eachLayer", function () {
45
+ it('iterates over all layers', function() {
46
+ var lg = L.layerGroup(),
47
+ marker = L.marker([0, 0]),
48
+ ctx = { foo: 'bar' };
49
+
50
+ lg.addLayer(marker);
51
+
52
+ lg.eachLayer(function(layer) {
53
+ expect(layer).to.eql(marker);
54
+ expect(this).to.eql(ctx);
55
+ }, ctx);
56
+ });
57
+ });
58
+ });
@@ -0,0 +1,59 @@
1
+ describe('Popup', function() {
2
+
3
+ var map;
4
+
5
+ beforeEach(function () {
6
+ var c = document.createElement('div');
7
+ c.style.width = '400px';
8
+ c.style.height = '400px';
9
+ map = new L.Map(c);
10
+ map.setView(new L.LatLng(55.8, 37.6), 6);
11
+ });
12
+
13
+ it("should trigger popupopen on marker when popup opens", function() {
14
+ var marker1 = new L.Marker(new L.LatLng(55.8, 37.6));
15
+ var marker2 = new L.Marker(new L.LatLng(57.123076977278, 44.861962891635));
16
+
17
+ map.addLayer(marker1);
18
+ map.addLayer(marker2);
19
+
20
+ marker1.bindPopup('Popup1');
21
+ marker2.bindPopup('Popup2');
22
+
23
+ var spy = sinon.spy();
24
+
25
+ marker1.on('popupopen', spy);
26
+
27
+ expect(spy.called).to.be(false);
28
+ marker2.openPopup();
29
+ expect(spy.called).to.be(false);
30
+ marker1.openPopup();
31
+ expect(spy.called).to.be(true);
32
+ });
33
+
34
+ it("should trigger popupclose on marker when popup closes", function() {
35
+ var marker1 = new L.Marker(new L.LatLng(55.8, 37.6));
36
+ var marker2 = new L.Marker(new L.LatLng(57.123076977278, 44.861962891635));
37
+
38
+ map.addLayer(marker1);
39
+ map.addLayer(marker2);
40
+
41
+ marker1.bindPopup('Popup1');
42
+ marker2.bindPopup('Popup2');
43
+
44
+ var spy = sinon.spy();
45
+
46
+ marker1.on('popupclose', spy);
47
+
48
+ expect(spy.called).to.be(false);
49
+ marker2.openPopup();
50
+ expect(spy.called).to.be(false);
51
+ marker1.openPopup();
52
+ expect(spy.called).to.be(false);
53
+ marker2.openPopup();
54
+ expect(spy.called).to.be(true);
55
+ marker1.openPopup();
56
+ marker1.closePopup();
57
+ expect(spy.callCount).to.be(2);
58
+ });
59
+ });
@@ -0,0 +1,87 @@
1
+
2
+ describe('TileLayer', function () {
3
+ var tileUrl = '';
4
+
5
+ describe("#getMaxZoom, #getMinZoom", function () {
6
+ var map;
7
+ beforeEach(function () {
8
+ map = L.map(document.createElement('div'));
9
+ });
10
+ describe("when a tilelayer is added to a map with no other layers", function () {
11
+ it("has the same zoomlevels as the tilelayer", function () {
12
+ var maxZoom = 10,
13
+ minZoom = 5;
14
+ map.setView([0, 0], 1);
15
+
16
+ L.tileLayer(tileUrl, {
17
+ maxZoom: maxZoom,
18
+ minZoom: minZoom
19
+ }).addTo(map);
20
+ expect(map.getMaxZoom()).to.be(maxZoom);
21
+ expect(map.getMinZoom()).to.be(minZoom);
22
+ });
23
+ });
24
+
25
+ describe("accessing a tilelayer's properties", function () {
26
+ it('provides a container', function () {
27
+ map.setView([0, 0], 1);
28
+
29
+ var layer = L.tileLayer(tileUrl).addTo(map);
30
+ expect(layer.getContainer()).to.be.ok();
31
+ });
32
+ });
33
+
34
+ describe("when a tilelayer is added to a map that already has a tilelayer", function () {
35
+ it("has its zoomlevels updated to fit the new layer", function () {
36
+ map.setView([0, 0], 1);
37
+
38
+ L.tileLayer(tileUrl, { minZoom:10, maxZoom: 15 }).addTo(map);
39
+ expect(map.getMinZoom()).to.be(10);
40
+ expect(map.getMaxZoom()).to.be(15);
41
+
42
+ L.tileLayer(tileUrl, { minZoom:5, maxZoom: 10 }).addTo(map);
43
+ expect(map.getMinZoom()).to.be(5); // changed
44
+ expect(map.getMaxZoom()).to.be(15); // unchanged
45
+
46
+
47
+ L.tileLayer(tileUrl,{ minZoom:10, maxZoom: 20 }).addTo(map);
48
+ expect(map.getMinZoom()).to.be(5); // unchanged
49
+ expect(map.getMaxZoom()).to.be(20); // changed
50
+
51
+
52
+ L.tileLayer(tileUrl, { minZoom:0, maxZoom: 25 }).addTo(map);
53
+ expect(map.getMinZoom()).to.be(0); // changed
54
+ expect(map.getMaxZoom()).to.be(25); // changed
55
+ });
56
+ });
57
+ describe("when a tilelayer is removed from a map", function () {
58
+ it("has its zoomlevels updated to only fit the layers it currently has", function () {
59
+ var tiles = [ L.tileLayer(tileUrl, { minZoom:10, maxZoom: 15 }).addTo(map),
60
+ L.tileLayer(tileUrl, { minZoom:5, maxZoom: 10 }).addTo(map),
61
+ L.tileLayer(tileUrl, { minZoom:10, maxZoom: 20 }).addTo(map),
62
+ L.tileLayer(tileUrl, { minZoom:0, maxZoom: 25 }).addTo(map)
63
+ ];
64
+ map.whenReady(function() {
65
+ expect(map.getMinZoom()).to.be(0);
66
+ expect(map.getMaxZoom()).to.be(25);
67
+
68
+ map.removeLayer(tiles[0]);
69
+ expect(map.getMinZoom()).to.be(0);
70
+ expect(map.getMaxZoom()).to.be(25);
71
+
72
+ map.removeLayer(tiles[3]);
73
+ expect(map.getMinZoom()).to.be(5);
74
+ expect(map.getMaxZoom()).to.be(20);
75
+
76
+ map.removeLayer(tiles[2]);
77
+ expect(map.getMinZoom()).to.be(5);
78
+ expect(map.getMaxZoom()).to.be(10);
79
+
80
+ map.removeLayer(tiles[1]);
81
+ expect(map.getMinZoom()).to.be(0);
82
+ expect(map.getMaxZoom()).to.be(Infinity);
83
+ });
84
+ });
85
+ });
86
+ });
87
+ });
@@ -0,0 +1,53 @@
1
+ describe('CircleMarker', function() {
2
+ describe("#_radius", function() {
3
+ var map;
4
+ beforeEach(function() {
5
+ map = L.map(document.createElement('div'));
6
+ map.setView([0, 0], 1);
7
+ });
8
+ describe("when a CircleMarker is added to the map ", function() {
9
+ describe("with a radius set as an option", function() {
10
+ it("takes that radius", function() {
11
+ var marker = L.circleMarker([0, 0], { radius: 20 }).addTo(map);
12
+
13
+ expect(marker._radius).to.be(20);
14
+ });
15
+ });
16
+
17
+ describe("and radius is set before adding it", function () {
18
+ it("takes that radius", function () {
19
+ var marker = L.circleMarker([0, 0], { radius: 20 });
20
+ marker.setRadius(15);
21
+ marker.addTo(map);
22
+ expect(marker._radius).to.be(15);
23
+ });
24
+ });
25
+
26
+ describe("and radius is set after adding it", function () {
27
+ it("takes that radius", function () {
28
+ var marker = L.circleMarker([0, 0], { radius: 20 });
29
+ marker.addTo(map);
30
+ marker.setRadius(15);
31
+ expect(marker._radius).to.be(15);
32
+ });
33
+ });
34
+
35
+ describe("and setStyle is used to change the radius after adding", function () {
36
+ it("takes the given radius", function() {
37
+ var marker = L.circleMarker([0, 0], { radius: 20 });
38
+ marker.addTo(map);
39
+ marker.setStyle({ radius: 15 });
40
+ expect(marker._radius).to.be(15);
41
+ });
42
+ });
43
+ describe("and setStyle is used to change the radius before adding", function () {
44
+ it("takes the given radius", function () {
45
+ var marker = L.circleMarker([0, 0], { radius: 20 });
46
+ marker.setStyle({ radius: 15 });
47
+ marker.addTo(map);
48
+ expect(marker._radius).to.be(15);
49
+ });
50
+ });
51
+ });
52
+ });
53
+ });
@@ -0,0 +1,17 @@
1
+ describe('Circle', function () {
2
+ describe('#getBounds', function () {
3
+
4
+ var circle;
5
+
6
+ beforeEach(function () {
7
+ circle = L.circle([50, 30], 200);
8
+ });
9
+
10
+ it('returns bounds', function () {
11
+ var bounds = circle.getBounds();
12
+
13
+ expect(bounds.getSouthWest().equals([49.998203369, 29.997204939])).to.be.ok();
14
+ expect(bounds.getNorthEast().equals([50.001796631, 30.002795061])).to.be.ok();
15
+ });
16
+ });
17
+ });
@@ -0,0 +1,55 @@
1
+ describe('Polygon', function() {
2
+
3
+ var c = document.createElement('div');
4
+ c.style.width = '400px';
5
+ c.style.height = '400px';
6
+ var map = new L.Map(c);
7
+ map.setView(new L.LatLng(55.8, 37.6), 6);
8
+
9
+ describe("#initialize", function() {
10
+ it("doesn't overwrite the given latlng array", function () {
11
+ var originalLatLngs = [
12
+ [1, 2],
13
+ [3, 4]
14
+ ];
15
+ var sourceLatLngs = originalLatLngs.slice();
16
+
17
+ var polygon = new L.Polygon(sourceLatLngs);
18
+
19
+ expect(sourceLatLngs).to.eql(originalLatLngs);
20
+ expect(polygon._latlngs).to.not.eql(sourceLatLngs);
21
+ });
22
+ });
23
+
24
+ describe("#setLatLngs", function () {
25
+ it("doesn't overwrite the given latlng array", function () {
26
+ var originalLatLngs = [
27
+ [1, 2],
28
+ [3, 4]
29
+ ];
30
+ var sourceLatLngs = originalLatLngs.slice();
31
+
32
+ var polygon = new L.Polygon(sourceLatLngs);
33
+
34
+ polygon.setLatLngs(sourceLatLngs);
35
+
36
+ expect(sourceLatLngs).to.eql(originalLatLngs);
37
+ });
38
+ });
39
+
40
+ describe("#spliceLatLngs", function () {
41
+ it("splices the internal latLngs", function () {
42
+ var latLngs = [
43
+ [1, 2],
44
+ [3, 4],
45
+ [5, 6]
46
+ ];
47
+
48
+ var polygon = new L.Polygon(latLngs);
49
+
50
+ polygon.spliceLatLngs(1, 1, [7, 8]);
51
+
52
+ expect(polygon._latlngs).to.eql([L.latLng([1, 2]), L.latLng([7, 8]), L.latLng([5, 6])]);
53
+ });
54
+ });
55
+ });