leaflet-js 0.7.9 → 0.8.dev2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (341) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.rdoc +0 -10
  3. data/Rakefile +3 -3
  4. data/leaflet-js.gemspec +7 -13
  5. data/lib/leaflet-js.rb +10 -2
  6. data/lib/leaflet.draw/BREAKINGCHANGES.md +54 -0
  7. data/lib/leaflet.draw/CHANGELOG.md +130 -0
  8. data/lib/leaflet.draw/Jakefile.js +48 -0
  9. data/lib/leaflet.draw/MIT-LICENCE.txt +20 -0
  10. data/lib/leaflet.draw/README.md +427 -0
  11. data/lib/leaflet.draw/TODO.md +62 -0
  12. data/lib/leaflet.draw/build/build.html +243 -0
  13. data/lib/leaflet.draw/build/build.js +187 -0
  14. data/lib/leaflet.draw/build/deps.js +76 -0
  15. data/lib/leaflet.draw/build/hintrc.js +39 -0
  16. data/lib/leaflet.draw/build/leaflet.draw-include.js +42 -0
  17. data/{vendor/assets/Leaflet.draw → lib/leaflet.draw}/dist/images/spritesheet-2x.png +0 -0
  18. data/{vendor/assets/Leaflet.draw → lib/leaflet.draw}/dist/images/spritesheet.png +0 -0
  19. data/lib/leaflet.draw/dist/leaflet.draw-src.js +2872 -0
  20. data/lib/leaflet.draw/dist/leaflet.draw.css +295 -0
  21. data/lib/leaflet.draw/dist/leaflet.draw.js +10 -0
  22. data/lib/leaflet.draw/examples/basic.html +113 -0
  23. data/lib/leaflet.draw/examples/edithandlers.html +66 -0
  24. data/{vendor/assets/Leaflet/dist → lib/leaflet.draw/examples/libs}/images/layers-2x.png +0 -0
  25. data/{vendor/assets/Leaflet/dist → lib/leaflet.draw/examples/libs}/images/layers.png +0 -0
  26. data/{vendor/assets/Leaflet/dist → lib/leaflet.draw/examples/libs}/images/marker-icon-2x.png +0 -0
  27. data/{vendor/assets/Leaflet/dist → 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/{vendor/assets/Leaflet/dist → lib/leaflet.draw/examples/libs}/images/marker-shadow.png +0 -0
  30. data/lib/leaflet.draw/examples/libs/leaflet-src.js +9191 -0
  31. data/{vendor/assets/leaflet.css.erb → lib/leaflet.draw/examples/libs/leaflet.css} +2 -2
  32. data/lib/leaflet.draw/package.json +40 -0
  33. data/lib/leaflet.draw/spec/after.js +2 -0
  34. data/lib/leaflet.draw/spec/before.js +3 -0
  35. data/lib/leaflet.draw/spec/expect.js +1253 -0
  36. data/lib/leaflet.draw/spec/happen.js +93 -0
  37. data/lib/leaflet.draw/spec/index.html +38 -0
  38. data/lib/leaflet.draw/spec/karma.conf.js +72 -0
  39. data/lib/leaflet.draw/spec/sinon.js +4223 -0
  40. data/lib/leaflet.draw/spec/spec.hintrc.js +25 -0
  41. data/lib/leaflet.draw/spec/suites/DrawControlSpec.js +14 -0
  42. data/lib/leaflet.draw/spec/suites/GeometryUtilSpec.js +25 -0
  43. data/lib/leaflet.draw/spec/suites/LatLngUtilSpec.js +11 -0
  44. data/lib/leaflet.draw/spec/suites/SpecHelper.js +28 -0
  45. data/{vendor/assets/Leaflet.draw → lib/leaflet.draw}/src/Control.Draw.js +9 -9
  46. data/{vendor/assets/Leaflet.draw → lib/leaflet.draw}/src/Leaflet.draw.js +1 -2
  47. data/{vendor/assets/Leaflet.draw → lib/leaflet.draw}/src/Toolbar.js +0 -0
  48. data/{vendor/assets/Leaflet.draw → lib/leaflet.draw}/src/Tooltip.js +0 -0
  49. data/{vendor/assets/Leaflet.draw → lib/leaflet.draw}/src/copyright.js +0 -0
  50. data/{vendor/assets/Leaflet.draw → lib/leaflet.draw}/src/draw/DrawToolbar.js +0 -4
  51. data/{vendor/assets/Leaflet.draw → lib/leaflet.draw}/src/draw/handler/Draw.Circle.js +1 -1
  52. data/{vendor/assets/Leaflet.draw → lib/leaflet.draw}/src/draw/handler/Draw.Feature.js +2 -2
  53. data/{vendor/assets/Leaflet.draw → lib/leaflet.draw}/src/draw/handler/Draw.Marker.js +0 -0
  54. data/{vendor/assets/Leaflet.draw → lib/leaflet.draw}/src/draw/handler/Draw.Polygon.js +0 -0
  55. data/{vendor/assets/Leaflet.draw → lib/leaflet.draw}/src/draw/handler/Draw.Polyline.js +0 -0
  56. data/{vendor/assets/Leaflet.draw → lib/leaflet.draw}/src/draw/handler/Draw.Rectangle.js +1 -19
  57. data/{vendor/assets/Leaflet.draw → lib/leaflet.draw}/src/draw/handler/Draw.SimpleShape.js +1 -7
  58. data/{vendor/assets/Leaflet.draw → lib/leaflet.draw}/src/edit/EditToolbar.js +2 -9
  59. data/{vendor/assets/Leaflet.draw → lib/leaflet.draw}/src/edit/handler/Edit.Circle.js +0 -0
  60. data/{vendor/assets/Leaflet.draw → lib/leaflet.draw}/src/edit/handler/Edit.Poly.js +2 -14
  61. data/{vendor/assets/Leaflet.draw → lib/leaflet.draw}/src/edit/handler/Edit.Rectangle.js +0 -0
  62. data/{vendor/assets/Leaflet.draw → lib/leaflet.draw}/src/edit/handler/Edit.SimpleShape.js +3 -11
  63. data/{vendor/assets/Leaflet.draw → lib/leaflet.draw}/src/edit/handler/EditToolbar.Delete.js +1 -4
  64. data/{vendor/assets/Leaflet.draw → lib/leaflet.draw}/src/edit/handler/EditToolbar.Edit.js +83 -17
  65. data/{vendor/assets/Leaflet.draw → lib/leaflet.draw}/src/ext/GeometryUtil.js +1 -1
  66. data/{vendor/assets/Leaflet.draw → lib/leaflet.draw}/src/ext/LatLngUtil.js +0 -0
  67. data/{vendor/assets/Leaflet.draw → lib/leaflet.draw}/src/ext/LineUtil.Intersect.js +0 -0
  68. data/{vendor/assets/Leaflet.draw → lib/leaflet.draw}/src/ext/Polygon.Intersect.js +0 -0
  69. data/{vendor/assets/Leaflet.draw → lib/leaflet.draw}/src/ext/Polyline.Intersect.js +0 -0
  70. data/{vendor/assets/Leaflet.draw → lib/leaflet.draw}/src/images/spritesheet.svg +0 -0
  71. data/lib/leaflet.label/CHANGELOG.md +67 -0
  72. data/lib/leaflet.label/Jakefile.js +21 -0
  73. data/lib/leaflet.label/MIT-LICENCE.txt +20 -0
  74. data/lib/leaflet.label/README.md +103 -0
  75. data/lib/leaflet.label/build/build.js +155 -0
  76. data/lib/leaflet.label/build/deps.js +26 -0
  77. data/lib/leaflet.label/build/hint.js +30 -0
  78. data/lib/leaflet.label/build/hintrc.js +51 -0
  79. data/lib/leaflet.label/dist/images/death.png +0 -0
  80. data/lib/leaflet.label/dist/leaflet.label-src.js +542 -0
  81. data/{vendor/assets → lib/leaflet.label/dist}/leaflet.label.css +0 -0
  82. data/lib/leaflet.label/dist/leaflet.label.js +9 -0
  83. data/lib/leaflet.label/example/label.html +85 -0
  84. data/lib/leaflet.label/libs/leaflet/images/layers-2x.png +0 -0
  85. data/lib/leaflet.label/libs/leaflet/images/layers.png +0 -0
  86. data/lib/leaflet.label/libs/leaflet/images/marker-icon-2x.png +0 -0
  87. data/lib/leaflet.label/libs/leaflet/images/marker-icon.png +0 -0
  88. data/lib/leaflet.label/libs/leaflet/images/marker-icon@2x.png +0 -0
  89. data/lib/leaflet.label/libs/leaflet/images/marker-shadow.png +0 -0
  90. data/lib/leaflet.label/libs/leaflet/leaflet-src.js +9108 -0
  91. data/lib/leaflet.label/libs/leaflet/leaflet.css +478 -0
  92. data/lib/leaflet.label/libs/leaflet/leaflet.js +9 -0
  93. data/lib/leaflet.label/package.json +19 -0
  94. data/{vendor/assets/Leaflet.label → lib/leaflet.label}/src/BaseMarkerMethods.js +0 -0
  95. data/{vendor/assets/Leaflet.label → lib/leaflet.label}/src/CircleMarker.Label.js +0 -0
  96. data/{vendor/assets/Leaflet.label → lib/leaflet.label}/src/FeatureGroup.Label.js +0 -0
  97. data/{vendor/assets/Leaflet.label → lib/leaflet.label}/src/Label.js +2 -5
  98. data/{vendor/assets/Leaflet.label → lib/leaflet.label}/src/Leaflet.label.js +1 -1
  99. data/{vendor/assets/Leaflet.label → lib/leaflet.label}/src/Map.Label.js +0 -0
  100. data/{vendor/assets/Leaflet.label → lib/leaflet.label}/src/Marker.Label.js +0 -0
  101. data/{vendor/assets/Leaflet.label → lib/leaflet.label}/src/Path.Label.js +0 -0
  102. data/{vendor/assets/Leaflet.label → lib/leaflet.label}/src/copyright.js +0 -0
  103. data/lib/leaflet/CHANGELOG.md +1007 -0
  104. data/lib/leaflet/CONTRIBUTING.md +155 -0
  105. data/lib/leaflet/FAQ.md +138 -0
  106. data/lib/leaflet/Jakefile.js +56 -0
  107. data/lib/leaflet/LICENSE +23 -0
  108. data/lib/leaflet/PLUGIN-GUIDE.md +127 -0
  109. data/lib/leaflet/README.md +34 -0
  110. data/lib/leaflet/build/build.html +227 -0
  111. data/lib/leaflet/build/build.js +190 -0
  112. data/lib/leaflet/build/deps.js +258 -0
  113. data/lib/leaflet/build/hintrc.js +40 -0
  114. data/lib/leaflet/debug/css/mobile.css +6 -0
  115. data/lib/leaflet/debug/css/screen.css +5 -0
  116. data/lib/leaflet/debug/hacks/jitter.html +42 -0
  117. data/lib/leaflet/debug/leaflet-include.js +59 -0
  118. data/lib/leaflet/debug/map/canvas.html +49 -0
  119. data/lib/leaflet/debug/map/controls.html +49 -0
  120. data/lib/leaflet/debug/map/geolocation.html +34 -0
  121. data/lib/leaflet/debug/map/grid.html +45 -0
  122. data/lib/leaflet/debug/map/iframe.html +11 -0
  123. data/lib/leaflet/debug/map/image-overlay.html +43 -0
  124. data/lib/leaflet/debug/map/map-mobile.html +34 -0
  125. data/lib/leaflet/debug/map/map.html +61 -0
  126. data/lib/leaflet/debug/map/max-bounds.html +38 -0
  127. data/lib/leaflet/debug/map/opacity.html +223 -0
  128. data/lib/leaflet/debug/map/scroll.html +41 -0
  129. data/lib/leaflet/debug/map/simple-proj.html +59 -0
  130. data/lib/leaflet/debug/map/wms-marble.html +30 -0
  131. data/lib/leaflet/debug/map/wms.html +40 -0
  132. data/lib/leaflet/debug/map/zoomlevels.html +45 -0
  133. data/lib/leaflet/debug/tests/add_remove_layers.html +87 -0
  134. data/lib/leaflet/debug/tests/bringtoback.html +37 -0
  135. data/lib/leaflet/debug/tests/canvasloop.html +47 -0
  136. data/lib/leaflet/debug/tests/click_on_canvas.html +58 -0
  137. data/lib/leaflet/debug/tests/click_on_canvas_broken.html +49 -0
  138. data/lib/leaflet/debug/tests/dragging_and_copyworldjump.html +61 -0
  139. data/lib/leaflet/debug/tests/opacity.html +56 -0
  140. data/lib/leaflet/debug/tests/popupcontextmenuclicks.html +59 -0
  141. data/lib/leaflet/debug/tests/remove_while_dragging.html +28 -0
  142. data/lib/leaflet/debug/tests/removetilewhilepan.html +41 -0
  143. data/lib/leaflet/debug/tests/reuse_popups.html +40 -0
  144. data/lib/leaflet/debug/tests/rtl.html +42 -0
  145. data/lib/leaflet/debug/tests/rtl2.html +27 -0
  146. data/lib/leaflet/debug/tests/set_icon_reuse_dom.html +43 -0
  147. data/lib/leaflet/debug/tests/svg_clicks.html +54 -0
  148. data/lib/leaflet/debug/vector/bounds-extend.html +88 -0
  149. data/lib/leaflet/debug/vector/feature-group-bounds.html +90 -0
  150. data/lib/leaflet/debug/vector/geojson-sample.js +53 -0
  151. data/lib/leaflet/debug/vector/geojson.html +173 -0
  152. data/lib/leaflet/debug/vector/rectangle.html +53 -0
  153. data/lib/leaflet/debug/vector/route.js +1 -0
  154. data/lib/leaflet/debug/vector/touchzoomemu.html +194 -0
  155. data/lib/leaflet/debug/vector/us-states.js +54 -0
  156. data/lib/leaflet/debug/vector/vector-bounds.html +69 -0
  157. data/lib/leaflet/debug/vector/vector-canvas.html +92 -0
  158. data/lib/leaflet/debug/vector/vector-mobile.html +38 -0
  159. data/lib/leaflet/debug/vector/vector-simple.html +47 -0
  160. data/lib/leaflet/debug/vector/vector.html +37 -0
  161. data/lib/leaflet/debug/vector/vector2.html +58 -0
  162. data/lib/leaflet/dist/images/layers-2x.png +0 -0
  163. data/lib/leaflet/dist/images/layers.png +0 -0
  164. data/lib/leaflet/dist/images/marker-icon-2x.png +0 -0
  165. data/lib/leaflet/dist/images/marker-icon.png +0 -0
  166. data/lib/leaflet/dist/images/marker-shadow.png +0 -0
  167. data/lib/leaflet/dist/leaflet.css +494 -0
  168. data/lib/leaflet/package.json +28 -0
  169. data/lib/leaflet/spec/after.js +2 -0
  170. data/lib/leaflet/spec/expect.js +1253 -0
  171. data/lib/leaflet/spec/index.html +87 -0
  172. data/lib/leaflet/spec/karma.conf.js +68 -0
  173. data/lib/leaflet/spec/sinon.js +4223 -0
  174. data/lib/leaflet/spec/spec.hintrc.js +25 -0
  175. data/lib/leaflet/spec/suites/SpecHelper.js +42 -0
  176. data/lib/leaflet/spec/suites/control/Control.AttributionSpec.js +68 -0
  177. data/lib/leaflet/spec/suites/control/Control.LayersSpec.js +67 -0
  178. data/lib/leaflet/spec/suites/control/Control.ScaleSpec.js +6 -0
  179. data/lib/leaflet/spec/suites/core/ClassSpec.js +166 -0
  180. data/lib/leaflet/spec/suites/core/EventsSpec.js +416 -0
  181. data/lib/leaflet/spec/suites/core/UtilSpec.js +237 -0
  182. data/lib/leaflet/spec/suites/dom/DomEventSpec.js +102 -0
  183. data/lib/leaflet/spec/suites/dom/DomUtilSpec.js +59 -0
  184. data/lib/leaflet/spec/suites/dom/PosAnimationSpec.js +27 -0
  185. data/lib/leaflet/spec/suites/geo/CRSSpec.js +151 -0
  186. data/lib/leaflet/spec/suites/geo/LatLngBoundsSpec.js +144 -0
  187. data/lib/leaflet/spec/suites/geo/LatLngSpec.js +102 -0
  188. data/lib/leaflet/spec/suites/geo/ProjectionSpec.js +96 -0
  189. data/lib/leaflet/spec/suites/geometry/BoundsSpec.js +87 -0
  190. data/lib/leaflet/spec/suites/geometry/LineUtilSpec.js +75 -0
  191. data/lib/leaflet/spec/suites/geometry/PointSpec.js +104 -0
  192. data/lib/leaflet/spec/suites/geometry/PolyUtilSpec.js +27 -0
  193. data/lib/leaflet/spec/suites/geometry/TransformationSpec.js +31 -0
  194. data/lib/leaflet/spec/suites/layer/FeatureGroupSpec.js +86 -0
  195. data/lib/leaflet/spec/suites/layer/GeoJSONSpec.js +282 -0
  196. data/lib/leaflet/spec/suites/layer/LayerGroupSpec.js +71 -0
  197. data/lib/leaflet/spec/suites/layer/PopupSpec.js +119 -0
  198. data/lib/leaflet/spec/suites/layer/marker/MarkerSpec.js +117 -0
  199. data/lib/leaflet/spec/suites/layer/tile/GridLayerSpec.js +70 -0
  200. data/lib/leaflet/spec/suites/layer/tile/TileLayerSpec.js +88 -0
  201. data/lib/leaflet/spec/suites/layer/vector/CircleMarkerSpec.js +53 -0
  202. data/lib/leaflet/spec/suites/layer/vector/CircleSpec.js +18 -0
  203. data/lib/leaflet/spec/suites/layer/vector/PolygonSpec.js +96 -0
  204. data/lib/leaflet/spec/suites/layer/vector/PolylineGeometrySpec.js +35 -0
  205. data/lib/leaflet/spec/suites/layer/vector/PolylineSpec.js +55 -0
  206. data/lib/leaflet/spec/suites/map/MapSpec.js +553 -0
  207. data/lib/leaflet/spec/suites/map/handler/Map.DragSpec.js +38 -0
  208. data/{vendor/assets/Leaflet → lib/leaflet}/src/Leaflet.js +16 -11
  209. data/{vendor/assets/Leaflet → lib/leaflet}/src/control/Control.Attribution.js +1 -23
  210. data/{vendor/assets/Leaflet → lib/leaflet}/src/control/Control.Layers.js +42 -57
  211. data/lib/leaflet/src/control/Control.Scale.js +102 -0
  212. data/{vendor/assets/Leaflet → lib/leaflet}/src/control/Control.Zoom.js +11 -18
  213. data/{vendor/assets/Leaflet → lib/leaflet}/src/control/Control.js +7 -9
  214. data/lib/leaflet/src/copyright.js +4 -0
  215. data/lib/leaflet/src/core/Browser.js +65 -0
  216. data/{vendor/assets/Leaflet → lib/leaflet}/src/core/Class.js +8 -13
  217. data/lib/leaflet/src/core/Events.js +226 -0
  218. data/{vendor/assets/Leaflet → lib/leaflet}/src/core/Handler.js +0 -0
  219. data/lib/leaflet/src/core/Util.js +196 -0
  220. data/{vendor/assets/Leaflet → lib/leaflet}/src/dom/DomEvent.DoubleTap.js +20 -27
  221. data/lib/leaflet/src/dom/DomEvent.Pointer.js +107 -0
  222. data/{vendor/assets/Leaflet → lib/leaflet}/src/dom/DomEvent.js +70 -59
  223. data/lib/leaflet/src/dom/DomUtil.js +213 -0
  224. data/{vendor/assets/Leaflet → lib/leaflet}/src/dom/Draggable.js +10 -19
  225. data/{vendor/assets/Leaflet → lib/leaflet}/src/dom/PosAnimation.Timer.js +0 -0
  226. data/{vendor/assets/Leaflet → lib/leaflet}/src/dom/PosAnimation.js +4 -3
  227. data/lib/leaflet/src/geo/LatLng.js +67 -0
  228. data/{vendor/assets/Leaflet → lib/leaflet}/src/geo/LatLngBounds.js +0 -0
  229. data/lib/leaflet/src/geo/crs/CRS.EPSG3395.js +13 -0
  230. data/lib/leaflet/src/geo/crs/CRS.EPSG3857.js +17 -0
  231. data/{vendor/assets/Leaflet → lib/leaflet}/src/geo/crs/CRS.EPSG4326.js +2 -3
  232. data/lib/leaflet/src/geo/crs/CRS.Earth.js +19 -0
  233. data/{vendor/assets/Leaflet → lib/leaflet}/src/geo/crs/CRS.Simple.js +10 -1
  234. data/lib/leaflet/src/geo/crs/CRS.js +63 -0
  235. data/{vendor/assets/Leaflet → lib/leaflet}/src/geo/projection/Projection.LonLat.js +5 -1
  236. data/lib/leaflet/src/geo/projection/Projection.Mercator.js +43 -0
  237. data/lib/leaflet/src/geo/projection/Projection.SphericalMercator.js +31 -0
  238. data/{vendor/assets/Leaflet → lib/leaflet}/src/geometry/Bounds.js +0 -0
  239. data/{vendor/assets/Leaflet → lib/leaflet}/src/geometry/LineUtil.js +16 -5
  240. data/{vendor/assets/Leaflet → lib/leaflet}/src/geometry/Point.js +10 -0
  241. data/{vendor/assets/Leaflet → lib/leaflet}/src/geometry/PolyUtil.js +0 -0
  242. data/{vendor/assets/Leaflet → lib/leaflet}/src/geometry/Transformation.js +0 -0
  243. data/{vendor/assets/Leaflet → lib/leaflet}/src/images/layers.svg +0 -0
  244. data/lib/leaflet/src/images/logo.svg +85 -0
  245. data/{vendor/assets/Leaflet → lib/leaflet}/src/images/marker.svg +0 -0
  246. data/{vendor/assets/Leaflet → lib/leaflet}/src/layer/FeatureGroup.js +3 -20
  247. data/lib/leaflet/src/layer/GeoJSON.js +275 -0
  248. data/lib/leaflet/src/layer/ImageOverlay.js +123 -0
  249. data/lib/leaflet/src/layer/Layer.Popup.js +87 -0
  250. data/lib/leaflet/src/layer/Layer.js +150 -0
  251. data/{vendor/assets/Leaflet → lib/leaflet}/src/layer/LayerGroup.js +12 -14
  252. data/{vendor/assets/Leaflet → lib/leaflet}/src/layer/Popup.js +65 -83
  253. data/{vendor/assets/Leaflet → lib/leaflet}/src/layer/marker/DivIcon.js +3 -8
  254. data/{vendor/assets/Leaflet → lib/leaflet}/src/layer/marker/Icon.Default.js +6 -12
  255. data/{vendor/assets/Leaflet → lib/leaflet}/src/layer/marker/Icon.js +8 -25
  256. data/{vendor/assets/Leaflet → lib/leaflet}/src/layer/marker/Marker.Drag.js +13 -11
  257. data/lib/leaflet/src/layer/marker/Marker.Popup.js +16 -0
  258. data/{vendor/assets/Leaflet → lib/leaflet}/src/layer/marker/Marker.js +52 -103
  259. data/lib/leaflet/src/layer/tile/GridLayer.js +536 -0
  260. data/lib/leaflet/src/layer/tile/TileLayer.WMS.js +79 -0
  261. data/lib/leaflet/src/layer/tile/TileLayer.js +148 -0
  262. data/lib/leaflet/src/layer/vector/Canvas.js +292 -0
  263. data/lib/leaflet/src/layer/vector/Circle.js +67 -0
  264. data/lib/leaflet/src/layer/vector/CircleMarker.js +72 -0
  265. data/lib/leaflet/src/layer/vector/Path.js +79 -0
  266. data/lib/leaflet/src/layer/vector/Polygon.js +75 -0
  267. data/lib/leaflet/src/layer/vector/Polyline.js +223 -0
  268. data/{vendor/assets/Leaflet → lib/leaflet}/src/layer/vector/Rectangle.js +27 -27
  269. data/lib/leaflet/src/layer/vector/Renderer.js +75 -0
  270. data/lib/leaflet/src/layer/vector/SVG.VML.js +134 -0
  271. data/lib/leaflet/src/layer/vector/SVG.js +189 -0
  272. data/{vendor/assets/Leaflet → lib/leaflet}/src/map/Map.js +83 -199
  273. data/{vendor/assets/Leaflet → lib/leaflet}/src/map/anim/Map.PanAnimation.js +0 -0
  274. data/{vendor/assets/Leaflet → lib/leaflet}/src/map/anim/Map.ZoomAnimation.js +30 -38
  275. data/{vendor/assets/Leaflet → lib/leaflet}/src/map/ext/Map.Geolocation.js +8 -8
  276. data/lib/leaflet/src/map/handler/Map.BoxZoom.js +105 -0
  277. data/{vendor/assets/Leaflet → lib/leaflet}/src/map/handler/Map.DoubleClickZoom.js +0 -0
  278. data/{vendor/assets/Leaflet → lib/leaflet}/src/map/handler/Map.Drag.js +12 -10
  279. data/{vendor/assets/Leaflet → lib/leaflet}/src/map/handler/Map.Keyboard.js +19 -17
  280. data/{vendor/assets/Leaflet → lib/leaflet}/src/map/handler/Map.ScrollWheelZoom.js +10 -6
  281. data/{vendor/assets/Leaflet → lib/leaflet}/src/map/handler/Map.Tap.js +8 -6
  282. data/{vendor/assets/Leaflet → lib/leaflet}/src/map/handler/Map.TouchZoom.js +16 -32
  283. data/vendor/assets/images/layers-2x.png +0 -0
  284. data/vendor/assets/images/layers.png +0 -0
  285. data/vendor/assets/images/marker-icon-2x.png +0 -0
  286. data/vendor/assets/images/marker-icon.png +0 -0
  287. data/vendor/assets/images/marker-shadow.png +0 -0
  288. data/vendor/assets/images/spritesheet-2x.png +0 -0
  289. data/vendor/assets/images/spritesheet.png +0 -0
  290. data/vendor/assets/{leaflet-js.js → javascripts/leaflet-js.js} +2 -2
  291. data/vendor/assets/javascripts/leaflet.draw.js +37 -0
  292. data/vendor/assets/javascripts/leaflet.js +149 -0
  293. data/vendor/assets/javascripts/leaflet.label.js +11 -0
  294. data/vendor/assets/{leaflet-js.css → stylesheets/leaflet-js.css} +0 -0
  295. data/vendor/assets/stylesheets/leaflet.css.erb +478 -0
  296. data/vendor/assets/{leaflet.draw.css.erb → stylesheets/leaflet.draw.css.erb} +2 -2
  297. data/vendor/assets/{leaflet.draw.ie.css → stylesheets/leaflet.draw.ie.css} +0 -0
  298. data/vendor/assets/stylesheets/leaflet.label.css +52 -0
  299. metadata +298 -137
  300. data/lib/leaflet-js/engine.rb +0 -7
  301. data/lib/leaflet-js/version.rb +0 -3
  302. data/vendor/assets/Leaflet.draw/src/edit/handler/Edit.Marker.js +0 -75
  303. data/vendor/assets/Leaflet/src/control/Control.Scale.js +0 -112
  304. data/vendor/assets/Leaflet/src/copyright.js +0 -5
  305. data/vendor/assets/Leaflet/src/core/Browser.js +0 -66
  306. data/vendor/assets/Leaflet/src/core/Events.js +0 -178
  307. data/vendor/assets/Leaflet/src/core/Util.js +0 -182
  308. data/vendor/assets/Leaflet/src/dom/DomEvent.Pointer.js +0 -156
  309. data/vendor/assets/Leaflet/src/dom/DomUtil.js +0 -289
  310. data/vendor/assets/Leaflet/src/geo/LatLng.js +0 -99
  311. data/vendor/assets/Leaflet/src/geo/crs/CRS.EPSG3395.js +0 -14
  312. data/vendor/assets/Leaflet/src/geo/crs/CRS.EPSG3857.js +0 -21
  313. data/vendor/assets/Leaflet/src/geo/crs/CRS.js +0 -32
  314. data/vendor/assets/Leaflet/src/geo/projection/Projection.Mercator.js +0 -56
  315. data/vendor/assets/Leaflet/src/geo/projection/Projection.SphericalMercator.js +0 -27
  316. data/vendor/assets/Leaflet/src/geo/projection/Projection.js +0 -5
  317. data/vendor/assets/Leaflet/src/layer/GeoJSON.js +0 -286
  318. data/vendor/assets/Leaflet/src/layer/ImageOverlay.js +0 -141
  319. data/vendor/assets/Leaflet/src/layer/marker/Marker.Popup.js +0 -90
  320. data/vendor/assets/Leaflet/src/layer/tile/TileLayer.Anim.js +0 -110
  321. data/vendor/assets/Leaflet/src/layer/tile/TileLayer.Canvas.js +0 -61
  322. data/vendor/assets/Leaflet/src/layer/tile/TileLayer.WMS.js +0 -87
  323. data/vendor/assets/Leaflet/src/layer/tile/TileLayer.js +0 -597
  324. data/vendor/assets/Leaflet/src/layer/vector/Circle.js +0 -98
  325. data/vendor/assets/Leaflet/src/layer/vector/CircleMarker.js +0 -45
  326. data/vendor/assets/Leaflet/src/layer/vector/MultiPoly.js +0 -57
  327. data/vendor/assets/Leaflet/src/layer/vector/Path.Popup.js +0 -65
  328. data/vendor/assets/Leaflet/src/layer/vector/Path.SVG.js +0 -230
  329. data/vendor/assets/Leaflet/src/layer/vector/Path.VML.js +0 -135
  330. data/vendor/assets/Leaflet/src/layer/vector/Path.js +0 -119
  331. data/vendor/assets/Leaflet/src/layer/vector/Polygon.js +0 -92
  332. data/vendor/assets/Leaflet/src/layer/vector/Polyline.js +0 -164
  333. data/vendor/assets/Leaflet/src/layer/vector/canvas/Circle.Canvas.js +0 -18
  334. data/vendor/assets/Leaflet/src/layer/vector/canvas/CircleMarker.Canvas.js +0 -9
  335. data/vendor/assets/Leaflet/src/layer/vector/canvas/Path.Canvas.js +0 -204
  336. data/vendor/assets/Leaflet/src/layer/vector/canvas/Polygon.Canvas.js +0 -37
  337. data/vendor/assets/Leaflet/src/layer/vector/canvas/Polyline.Canvas.js +0 -30
  338. data/vendor/assets/Leaflet/src/map/handler/Map.BoxZoom.js +0 -118
  339. data/vendor/assets/leaflet.draw.js +0 -38
  340. data/vendor/assets/leaflet.js +0 -155
  341. data/vendor/assets/leaflet.label.js +0 -11
@@ -0,0 +1,237 @@
1
+ describe('Util', function () {
2
+
3
+ describe('#extend', function () {
4
+ var a;
5
+
6
+ beforeEach(function () {
7
+ a = {
8
+ foo: 5,
9
+ bar: 'asd'
10
+ };
11
+ });
12
+
13
+ it('extends the first argument with the properties of the second', function () {
14
+ L.Util.extend(a, {
15
+ bar: 7,
16
+ baz: 3
17
+ });
18
+
19
+ expect(a).to.eql({
20
+ foo: 5,
21
+ bar: 7,
22
+ baz: 3
23
+ });
24
+ });
25
+
26
+ it('accepts more than 2 arguments', function () {
27
+ L.Util.extend(a, {bar: 7}, {baz: 3});
28
+
29
+ expect(a).to.eql({
30
+ foo: 5,
31
+ bar: 7,
32
+ baz: 3
33
+ });
34
+ });
35
+ });
36
+
37
+ describe('#bind', function () {
38
+ it('returns the given function with the given context', function () {
39
+ var fn = function () {
40
+ return this;
41
+ };
42
+
43
+ var fn2 = L.Util.bind(fn, { foo: 'bar' });
44
+
45
+ expect(fn2()).to.eql({ foo: 'bar' });
46
+ });
47
+
48
+ it('passes additional arguments to the bound function', function () {
49
+ var fn = sinon.spy(),
50
+ foo = {},
51
+ a = {},
52
+ b = {},
53
+ c = {};
54
+
55
+ var fn2 = L.Util.bind(fn, foo, a, b);
56
+
57
+ fn2(c);
58
+
59
+ expect(fn.calledWith(a, b, c)).to.be.ok();
60
+ });
61
+ });
62
+
63
+ describe('#stamp', function () {
64
+ it('sets a unique id on the given object and returns it', function () {
65
+ var a = {},
66
+ id = L.Util.stamp(a);
67
+
68
+ expect(typeof id).to.eql('number');
69
+ expect(L.Util.stamp(a)).to.eql(id);
70
+
71
+ var b = {},
72
+ id2 = L.Util.stamp(b);
73
+
74
+ expect(id2).not.to.eql(id);
75
+ });
76
+ });
77
+
78
+ describe('#falseFn', function () {
79
+ it('returns false', function () {
80
+ expect(L.Util.falseFn()).to.be(false);
81
+ });
82
+ });
83
+
84
+ describe('#formatNum', function () {
85
+ it('formats numbers with a given precision', function () {
86
+ expect(L.Util.formatNum(13.12325555, 3)).to.eql(13.123);
87
+ expect(L.Util.formatNum(13.12325555)).to.eql(13.12326);
88
+ });
89
+ });
90
+
91
+
92
+ describe('#getParamString', function () {
93
+ it('creates a valid query string for appending depending on url input', function () {
94
+ var a = {
95
+ url: 'http://example.com/get',
96
+ obj: {bar: 7, baz: 3},
97
+ result: '?bar=7&baz=3'
98
+ };
99
+
100
+ expect(L.Util.getParamString(a.obj, a.url)).to.eql(a.result);
101
+
102
+ var b = {
103
+ url: 'http://example.com/get?justone=qs',
104
+ obj: {bar: 7, baz: 3},
105
+ result: '&bar=7&baz=3'
106
+ };
107
+
108
+ expect(L.Util.getParamString(b.obj, b.url)).to.eql(b.result);
109
+
110
+ var c = {
111
+ url: undefined,
112
+ obj: {bar: 7, baz: 3},
113
+ result: '?bar=7&baz=3'
114
+ };
115
+
116
+ expect(L.Util.getParamString(c.obj, c.url)).to.eql(c.result);
117
+ });
118
+ });
119
+
120
+ describe('#requestAnimFrame', function () {
121
+ it('calles a function on next frame, unless canceled', function (done) {
122
+ var spy = sinon.spy(),
123
+ foo = {};
124
+
125
+ L.Util.requestAnimFrame(spy);
126
+
127
+ L.Util.requestAnimFrame(function () {
128
+ expect(this).to.eql(foo);
129
+ done();
130
+ }, foo);
131
+
132
+ L.Util.cancelAnimFrame(spy);
133
+ });
134
+ });
135
+
136
+ describe('#throttle', function () {
137
+ it('limits execution to not more often than specified time interval', function (done) {
138
+ var spy = sinon.spy();
139
+
140
+ var fn = L.Util.throttle(spy, 20);
141
+
142
+ fn();
143
+ fn();
144
+ fn();
145
+
146
+ expect(spy.callCount).to.eql(1);
147
+
148
+ setTimeout(function () {
149
+ expect(spy.callCount).to.eql(2);
150
+ done();
151
+ }, 30);
152
+ });
153
+ });
154
+
155
+ describe('#splitWords', function () {
156
+ it('splits words into an array', function () {
157
+ expect(L.Util.splitWords('foo bar baz')).to.eql(['foo', 'bar', 'baz']);
158
+ });
159
+ });
160
+
161
+ describe('#setOptions', function () {
162
+ it('sets specified options on object', function () {
163
+ var o = {};
164
+ L.Util.setOptions(o, {foo: 'bar'});
165
+ expect(o.options.foo).to.eql('bar');
166
+ });
167
+
168
+ it('returns options', function () {
169
+ var o = {};
170
+ var r = L.Util.setOptions(o, {foo: 'bar'});
171
+ expect(r).to.equal(o.options);
172
+ });
173
+
174
+ it('accepts undefined', function () {
175
+ var o = {};
176
+ L.Util.setOptions(o, undefined);
177
+ expect(o.options).to.eql({});
178
+ });
179
+
180
+ it('creates a distinct options object', function () {
181
+ var opts = {},
182
+ o = L.Util.create({options: opts});
183
+ L.Util.setOptions(o, {});
184
+ expect(o.options).not.to.equal(opts);
185
+ });
186
+
187
+ it("doesn't create a distinct options object if object already has own options", function () {
188
+ var opts = {},
189
+ o = {options: opts};
190
+ L.Util.setOptions(o, {});
191
+ expect(o.options).to.equal(opts);
192
+ });
193
+
194
+ it('inherits options prototypally', function () {
195
+ var opts = {},
196
+ o = L.Util.create({options: opts});
197
+ L.Util.setOptions(o, {});
198
+ opts.foo = 'bar';
199
+ expect(o.options.foo).to.eql('bar');
200
+ });
201
+ });
202
+
203
+ describe('#template', function () {
204
+ it('evaluates templates with a given data object', function () {
205
+ var tpl = 'Hello {foo} and {bar}!';
206
+
207
+ var str = L.Util.template(tpl, {
208
+ foo: 'Vlad',
209
+ bar: 'Dave'
210
+ });
211
+
212
+ expect(str).to.eql('Hello Vlad and Dave!');
213
+ });
214
+ it('does not modify text without a token variable', function () {
215
+ expect(L.Util.template('foo', {})).to.eql('foo');
216
+ });
217
+
218
+ it('supports templates with double quotes', function () {
219
+ expect(L.Util.template('He said: "{foo}"!', {
220
+ foo: 'Hello'
221
+ })).to.eql('He said: "Hello"!');
222
+ });
223
+
224
+ it('throws when a template token is not given', function () {
225
+ expect(function () {
226
+ L.Util.template(undefined, {foo: 'bar'});
227
+ }).to.throwError();
228
+ });
229
+ });
230
+
231
+ describe('#isArray', function () {
232
+ expect(L.Util.isArray([1, 2, 3])).to.be(true);
233
+ expect(L.Util.isArray(new Array(1, 2, 3))).to.be(true);
234
+ expect(L.Util.isArray('blabla')).to.be(false);
235
+ expect(L.Util.isArray({0: 1, 1: 2})).to.be(false);
236
+ });
237
+ });
@@ -0,0 +1,102 @@
1
+ describe('DomEvent', function () {
2
+ var el;
3
+
4
+ function simulateClick(el) {
5
+ if (document.createEvent) {
6
+ var e = document.createEvent('MouseEvents');
7
+ e.initMouseEvent('click', true, true, window,
8
+ 0, 0, 0, 0, 0, false, false, false, false, 0, null);
9
+ return el.dispatchEvent(e);
10
+ } else if (el.fireEvent) {
11
+ return el.fireEvent('onclick');
12
+ }
13
+ }
14
+
15
+ beforeEach(function () {
16
+ el = document.createElement('div');
17
+ el.style.position = 'absolute';
18
+ el.style.top = el.style.left = '-10000px';
19
+ document.body.appendChild(el);
20
+ });
21
+
22
+ afterEach(function () {
23
+ document.body.removeChild(el);
24
+ });
25
+
26
+ describe('#addListener', function () {
27
+ it('adds a listener and calls it on event', function () {
28
+ var listener1 = sinon.spy(),
29
+ listener2 = sinon.spy();
30
+
31
+ L.DomEvent.addListener(el, 'click', listener1);
32
+ L.DomEvent.addListener(el, 'click', listener2);
33
+
34
+ simulateClick(el);
35
+
36
+ expect(listener1.called).to.be.ok();
37
+ expect(listener2.called).to.be.ok();
38
+ });
39
+
40
+ it('binds "this" to the given context', function () {
41
+ var obj = {foo: 'bar'},
42
+ result;
43
+
44
+ L.DomEvent.addListener(el, 'click', function () {
45
+ result = this;
46
+ }, obj);
47
+
48
+ simulateClick(el);
49
+
50
+ expect(result).to.eql(obj);
51
+ });
52
+
53
+ it('passes an event object to the listener', function () {
54
+ var type;
55
+
56
+ L.DomEvent.addListener(el, 'click', function (e) {
57
+ type = e && e.type;
58
+ });
59
+ simulateClick(el);
60
+
61
+ expect(type).to.eql('click');
62
+ });
63
+ });
64
+
65
+ describe('#removeListener', function () {
66
+ it('removes a previously added listener', function () {
67
+ var listener = sinon.spy();
68
+
69
+ L.DomEvent.addListener(el, 'click', listener);
70
+ L.DomEvent.removeListener(el, 'click', listener);
71
+
72
+ simulateClick(el);
73
+
74
+ expect(listener.called).to.not.be.ok();
75
+ });
76
+ });
77
+
78
+ describe('#stopPropagation', function () {
79
+ it('stops propagation of the given event', function () {
80
+ var child = document.createElement('div'),
81
+ listener = sinon.spy();
82
+
83
+ el.appendChild(child);
84
+
85
+ L.DomEvent.addListener(child, 'click', L.DomEvent.stopPropagation);
86
+ L.DomEvent.addListener(el, 'click', listener);
87
+
88
+ simulateClick(child);
89
+
90
+ expect(listener.called).to.not.be.ok();
91
+
92
+ el.removeChild(child);
93
+ });
94
+ });
95
+ describe('#preventDefault', function () {
96
+ it('prevents the default action of event', function () {
97
+ L.DomEvent.addListener(el, 'click', L.DomEvent.preventDefault);
98
+
99
+ expect(simulateClick(el)).to.be(false);
100
+ });
101
+ });
102
+ });
@@ -0,0 +1,59 @@
1
+ describe('DomUtil', function () {
2
+ var el;
3
+
4
+ beforeEach(function () {
5
+ el = document.createElement('div');
6
+ el.style.position = 'absolute';
7
+ el.style.top = el.style.left = '-10000px';
8
+ document.body.appendChild(el);
9
+ });
10
+
11
+ afterEach(function () {
12
+ document.body.removeChild(el);
13
+ });
14
+
15
+ describe('#get', function () {
16
+ it('gets element by id if the given argument is string', function () {
17
+ el.id = 'testId';
18
+ expect(L.DomUtil.get(el.id)).to.eql(el);
19
+ });
20
+
21
+ it('returns the element if it is given as an argument', function () {
22
+ expect(L.DomUtil.get(el)).to.eql(el);
23
+ });
24
+ });
25
+
26
+ describe('#addClass, #removeClass, #hasClass', function () {
27
+ it('has defined class for test element', function () {
28
+ el.className = 'bar foo baz ';
29
+ expect(L.DomUtil.hasClass(el, 'foo')).to.be.ok();
30
+ expect(L.DomUtil.hasClass(el, 'bar')).to.be.ok();
31
+ expect(L.DomUtil.hasClass(el, 'baz')).to.be.ok();
32
+ expect(L.DomUtil.hasClass(el, 'boo')).to.not.be.ok();
33
+ });
34
+
35
+ it('adds or removes the class', function () {
36
+ el.className = '';
37
+ L.DomUtil.addClass(el, 'foo');
38
+
39
+ expect(el.className).to.eql('foo');
40
+ expect(L.DomUtil.hasClass(el, 'foo')).to.be.ok();
41
+
42
+ L.DomUtil.addClass(el, 'bar');
43
+ expect(el.className).to.eql('foo bar');
44
+ expect(L.DomUtil.hasClass(el, 'foo')).to.be.ok();
45
+
46
+ L.DomUtil.removeClass(el, 'foo');
47
+ expect(el.className).to.eql('bar');
48
+ expect(L.DomUtil.hasClass(el, 'foo')).to.not.be.ok();
49
+
50
+ el.className = 'foo bar barz';
51
+ L.DomUtil.removeClass(el, 'bar');
52
+ expect(el.className).to.eql('foo barz');
53
+ });
54
+ });
55
+
56
+ // describe('#setPosition', noSpecs);
57
+
58
+ // describe('#getStyle', noSpecs);
59
+ });
@@ -0,0 +1,27 @@
1
+ describe('PosAnimation', function () {
2
+ var el;
3
+
4
+ beforeEach(function () {
5
+ el = document.createElement('div');
6
+ this.subject = new L.PosAnimation();
7
+ this.subject._el = el;
8
+ });
9
+
10
+ describe('#_onStep', function () {
11
+ it("sets element position and fires step event if it is able to get current position", function () {
12
+ var point = new L.Point(5, 5, true);
13
+ sinon.stub(this.subject, '_getPos').returns(point);
14
+ this.subject.fire = sinon.stub();
15
+ this.subject._onStep();
16
+ expect(this.subject.fire.withArgs('step').calledOnce).to.be(true);
17
+ expect(L.DomUtil.getPosition(this.subject._el)).to.be(point);
18
+ });
19
+
20
+ it('stops transition if a position returned', function () {
21
+ sinon.stub(this.subject, '_onTransitionEnd');
22
+ sinon.stub(this.subject, '_getPos').returns(undefined);
23
+ this.subject._onStep();
24
+ expect(this.subject._onTransitionEnd.calledOnce).to.be(true);
25
+ });
26
+ });
27
+ });
@@ -0,0 +1,151 @@
1
+ describe("CRS.EPSG3857", function () {
2
+ var crs = L.CRS.EPSG3857;
3
+
4
+ describe("#latLngToPoint", function () {
5
+ it("projects a center point", function () {
6
+ expect(crs.latLngToPoint(L.latLng(0, 0), 0)).near(new L.Point(128, 128), 0.01);
7
+ });
8
+
9
+ it("projects the northeast corner of the world", function () {
10
+ expect(crs.latLngToPoint(L.latLng(85.0511287798, 180), 0)).near(new L.Point(256, 0));
11
+ });
12
+ });
13
+
14
+ describe("#pointToLatLng", function () {
15
+ it("reprojects a center point", function () {
16
+ expect(crs.pointToLatLng(new L.Point(128, 128), 0)).nearLatLng(L.latLng(0, 0), 0.01);
17
+ });
18
+
19
+ it("reprojects the northeast corner of the world", function () {
20
+ expect(crs.pointToLatLng(new L.Point(256, 0), 0)).nearLatLng(L.latLng(85.0511287798, 180));
21
+ });
22
+ });
23
+
24
+ describe("project", function () {
25
+ it('projects geo coords into meter coords correctly', function () {
26
+ expect(crs.project(new L.LatLng(50, 30))).near(new L.Point(3339584.7238, 6446275.84102));
27
+ expect(crs.project(new L.LatLng(85.0511287798, 180))).near(new L.Point(20037508.34279, 20037508.34278));
28
+ expect(crs.project(new L.LatLng(-85.0511287798, -180))).near(new L.Point(-20037508.34279, -20037508.34278));
29
+ });
30
+ });
31
+
32
+ describe("unproject", function () {
33
+ it('unprojects meter coords into geo coords correctly', function () {
34
+ expect(crs.unproject(new L.Point(3339584.7238, 6446275.84102))).nearLatLng(new L.LatLng(50, 30));
35
+ expect(crs.unproject(new L.Point(20037508.34279, 20037508.34278))).nearLatLng(new L.LatLng(85.051129, 180));
36
+ expect(crs.unproject(new L.Point(-20037508.34279, -20037508.34278))).nearLatLng(new L.LatLng(-85.051129, -180));
37
+ });
38
+ });
39
+
40
+ describe("#getProjectedBounds", function () {
41
+ it("gives correct size", function () {
42
+ var i,
43
+ worldSize = 256,
44
+ crsSize;
45
+ for (i = 0; i <= 22; i++) {
46
+ crsSize = crs.getProjectedBounds(i).getSize();
47
+ expect(crsSize.x).equal(worldSize);
48
+ expect(crsSize.y).equal(worldSize);
49
+ worldSize *= 2;
50
+ }
51
+ });
52
+ });
53
+
54
+ describe('#wrapLatLng', function () {
55
+ it("wraps longitude to lie between -180 and 180 by default", function () {
56
+ expect(crs.wrapLatLng(new L.LatLng(0, 190)).lng).to.eql(-170);
57
+ expect(crs.wrapLatLng(new L.LatLng(0, 360)).lng).to.eql(0);
58
+ expect(crs.wrapLatLng(new L.LatLng(0, 380)).lng).to.eql(20);
59
+ expect(crs.wrapLatLng(new L.LatLng(0, -190)).lng).to.eql(170);
60
+ expect(crs.wrapLatLng(new L.LatLng(0, -360)).lng).to.eql(0);
61
+ expect(crs.wrapLatLng(new L.LatLng(0, -380)).lng).to.eql(-20);
62
+ expect(crs.wrapLatLng(new L.LatLng(0, 90)).lng).to.eql(90);
63
+ expect(crs.wrapLatLng(new L.LatLng(0, 180)).lng).to.eql(180);
64
+ });
65
+
66
+ });
67
+
68
+ });
69
+
70
+ describe("CRS.EPSG4326", function () {
71
+ var crs = L.CRS.EPSG4326;
72
+
73
+ describe("#getSize", function () {
74
+ it("gives correct size", function () {
75
+ var i,
76
+ worldSize = 256,
77
+ crsSize;
78
+ for (i = 0; i <= 22; i++) {
79
+ crsSize = crs.getProjectedBounds(i).getSize();
80
+ expect(crsSize.x).equal(worldSize * 2);
81
+ // Lat bounds are half as high (-90/+90 compared to -180/+180)
82
+ expect(crsSize.y).equal(worldSize);
83
+ worldSize *= 2;
84
+ }
85
+ });
86
+ });
87
+ });
88
+
89
+ describe("CRS.EPSG3395", function () {
90
+ var crs = L.CRS.EPSG3395;
91
+
92
+ describe("#latLngToPoint", function () {
93
+ it("projects a center point", function () {
94
+ expect(crs.latLngToPoint(L.latLng(0, 0), 0)).near(new L.Point(128, 128), 0.01);
95
+ });
96
+
97
+ it("projects the northeast corner of the world", function () {
98
+ expect(crs.latLngToPoint(L.latLng(85.0840591556, 180), 0)).near(new L.Point(256, 0));
99
+ });
100
+ });
101
+
102
+ describe("#pointToLatLng", function () {
103
+ it("reprojects a center point", function () {
104
+ expect(crs.pointToLatLng(new L.Point(128, 128), 0)).nearLatLng(L.latLng(0, 0), 0.01);
105
+ });
106
+
107
+ it("reprojects the northeast corner of the world", function () {
108
+ expect(crs.pointToLatLng(new L.Point(256, 0), 0)).nearLatLng(L.latLng(85.0840591556, 180));
109
+ });
110
+ });
111
+ });
112
+
113
+ describe("CRS.Simple", function () {
114
+ var crs = L.CRS.Simple;
115
+
116
+ describe("#latLngToPoint", function () {
117
+ it("converts LatLng coords to pixels", function () {
118
+ expect(crs.latLngToPoint(L.latLng(0, 0), 0)).near(new L.Point(0, 0));
119
+ expect(crs.latLngToPoint(L.latLng(700, 300), 0)).near(new L.Point(300, -700));
120
+ expect(crs.latLngToPoint(L.latLng(-200, 1000), 1)).near(new L.Point(2000, 400));
121
+ });
122
+ });
123
+
124
+ describe("#pointToLatLng", function () {
125
+ it("converts pixels to LatLng coords", function () {
126
+ expect(crs.pointToLatLng(L.point(0, 0), 0)).nearLatLng(new L.LatLng(0, 0));
127
+ expect(crs.pointToLatLng(L.point(300, -700), 0)).nearLatLng(new L.LatLng(700, 300));
128
+ expect(crs.pointToLatLng(L.point(2000, 400), 1)).nearLatLng(new L.LatLng(-200, 1000));
129
+ });
130
+ });
131
+
132
+ describe("getProjectedBounds", function () {
133
+ it("returns nothing", function () {
134
+ expect(crs.getProjectedBounds(5)).to.be(null);
135
+ });
136
+ });
137
+
138
+ describe("wrapLatLng", function () {
139
+ it("returns coords as is", function () {
140
+ expect(crs.wrapLatLng(new L.LatLng(270, 400)).equals(new L.LatLng(270, 400))).to.be(true);
141
+ });
142
+ it("wraps coords if configured", function () {
143
+ var crs = L.extend({}, L.CRS.Simple, {
144
+ wrapLng: [-200, 200],
145
+ wrapLat: [-200, 200]
146
+ });
147
+
148
+ expect(crs.wrapLatLng(new L.LatLng(300, -250))).nearLatLng(new L.LatLng(-100, 150));
149
+ });
150
+ });
151
+ });