leaflet-js 0.7.9 → 0.8.dev2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
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,25 @@
1
+ {
2
+ "browser": true,
3
+ "node": true,
4
+ "predef": ["define", "L", "expect", "describe", "it", "sinon", "happen", "beforeEach", "afterEach"],
5
+ "strict": false,
6
+ "bitwise": true,
7
+ "camelcase": true,
8
+ "curly": true,
9
+ "eqeqeq": true,
10
+ "forin": false,
11
+ "immed": true,
12
+ "latedef": true,
13
+ "newcap": true,
14
+ "noarg": true,
15
+ "noempty": true,
16
+ "nonew": true,
17
+ "undef": true,
18
+ // "unused": true,
19
+ // "quotmark": "single",
20
+ "indent": 4,
21
+ "trailing": true,
22
+ "white": true,
23
+ "smarttabs": true
24
+ // "maxlen": 120
25
+ }
@@ -0,0 +1,14 @@
1
+ describe("Control.Draw", function () {
2
+ var map, control, container;
3
+
4
+ beforeEach(function () {
5
+ map = L.map(document.createElement('div'));
6
+ control = new L.Control.Draw({});
7
+ map.addControl(control);
8
+ container = control.getContainer();
9
+ });
10
+
11
+ it("exists", function () {
12
+ expect(container.innerHTML).to.be.ok();
13
+ });
14
+ });
@@ -0,0 +1,25 @@
1
+ describe("L.GeometryUtil", function () {
2
+ var map, control, container;
3
+
4
+ it("geodesicArea", function () {
5
+ expect(L.GeometryUtil.geodesicArea([
6
+ { lat: 0, lng: 0 },
7
+ { lat: 0, lng: 10 },
8
+ { lat: 10, lng: 10 },
9
+ { lat: 10, lng: 0 },
10
+ { lat: 0, lng: 0 }
11
+ ])).to.eql(1232921098571.292);
12
+ });
13
+
14
+ describe("readableDistance", function () {
15
+ it("metric", function () {
16
+ expect(L.GeometryUtil.readableDistance(1000, true)).to.eql('1000 m');
17
+ expect(L.GeometryUtil.readableDistance(1500, true)).to.eql('1.50 km');
18
+ });
19
+
20
+ it("imperial", function () {
21
+ expect(L.GeometryUtil.readableDistance(1609.3488537961)).to.eql('1760 yd');
22
+ expect(L.GeometryUtil.readableDistance(1610.3488537961)).to.eql('1.00 miles');
23
+ });
24
+ });
25
+ });
@@ -0,0 +1,11 @@
1
+ describe("L.LatLngUtil", function () {
2
+ it("cloneLatLngs", function () {
3
+ var latLngs = [{ lat: 0, lng: 0 }],
4
+ clone = L.LatLngUtil.cloneLatLngs(latLngs);
5
+
6
+ expect(clone[0].lat).to.eql(latLngs[0].lat);
7
+
8
+ clone[0].lat = 10;
9
+ expect(latLngs[0].lat).to.eql(0);
10
+ });
11
+ });
@@ -0,0 +1,28 @@
1
+ if (!Array.prototype.map) {
2
+ Array.prototype.map = function (fun /*, thisp */) {
3
+ "use strict";
4
+
5
+ if (this === void 0 || this === null) {
6
+ throw new TypeError();
7
+ }
8
+
9
+ var t = Object(this),
10
+ // jshint bitwise: false
11
+ len = t.length >>> 0;
12
+
13
+ if (typeof fun !== 'function') {
14
+ throw new TypeError();
15
+ }
16
+
17
+ var res = new Array(len),
18
+ thisp = arguments[1];
19
+
20
+ for (var i = 0; i < len; i++) {
21
+ if (i in t) {
22
+ res[i] = fun.call(thisp, t[i], i, t);
23
+ }
24
+ }
25
+
26
+ return res;
27
+ };
28
+ }
@@ -13,27 +13,27 @@ L.Control.Draw = L.Control.extend({
13
13
 
14
14
  L.Control.prototype.initialize.call(this, options);
15
15
 
16
- var toolbar;
16
+ var id, toolbar;
17
17
 
18
18
  this._toolbars = {};
19
19
 
20
20
  // Initialize toolbars
21
21
  if (L.DrawToolbar && this.options.draw) {
22
22
  toolbar = new L.DrawToolbar(this.options.draw);
23
-
24
- this._toolbars[L.DrawToolbar.TYPE] = toolbar;
23
+ id = L.stamp(toolbar);
24
+ this._toolbars[id] = toolbar;
25
25
 
26
26
  // Listen for when toolbar is enabled
27
- this._toolbars[L.DrawToolbar.TYPE].on('enable', this._toolbarEnabled, this);
27
+ this._toolbars[id].on('enable', this._toolbarEnabled, this);
28
28
  }
29
29
 
30
30
  if (L.EditToolbar && this.options.edit) {
31
31
  toolbar = new L.EditToolbar(this.options.edit);
32
-
33
- this._toolbars[L.EditToolbar.TYPE] = toolbar;
32
+ id = L.stamp(toolbar);
33
+ this._toolbars[id] = toolbar;
34
34
 
35
35
  // Listen for when toolbar is enabled
36
- this._toolbars[L.EditToolbar.TYPE].on('enable', this._toolbarEnabled, this);
36
+ this._toolbars[id].on('enable', this._toolbarEnabled, this);
37
37
  }
38
38
  },
39
39
 
@@ -81,10 +81,10 @@ L.Control.Draw = L.Control.extend({
81
81
  },
82
82
 
83
83
  _toolbarEnabled: function (e) {
84
- var enabledToolbar = e.target;
84
+ var id = '' + L.stamp(e.target);
85
85
 
86
86
  for (var toolbarId in this._toolbars) {
87
- if (this._toolbars[toolbarId] !== enabledToolbar) {
87
+ if (this._toolbars.hasOwnProperty(toolbarId) && toolbarId !== id) {
88
88
  this._toolbars[toolbarId].disable();
89
89
  }
90
90
  }
@@ -27,8 +27,7 @@ L.drawLocal = {
27
27
  circle: {
28
28
  tooltip: {
29
29
  start: 'Click and drag to draw circle.'
30
- },
31
- radius: 'Radius'
30
+ }
32
31
  },
33
32
  marker: {
34
33
  tooltip: {
@@ -1,9 +1,5 @@
1
1
  L.DrawToolbar = L.Toolbar.extend({
2
2
 
3
- statics: {
4
- TYPE: 'draw'
5
- },
6
-
7
3
  options: {
8
4
  polyline: {},
9
5
  polygon: {},
@@ -56,7 +56,7 @@ L.Draw.Circle = L.Draw.SimpleShape.extend({
56
56
 
57
57
  this._tooltip.updateContent({
58
58
  text: this._endLabelText,
59
- subtext: showRadius ? L.drawLocal.draw.handlers.circle.radius + ': ' + L.GeometryUtil.readableDistance(radius, useMetric) : ''
59
+ subtext: showRadius ? 'Radius: ' + L.GeometryUtil.readableDistance(radius, useMetric) : ''
60
60
  });
61
61
  }
62
62
  }
@@ -19,11 +19,11 @@ L.Draw.Feature = L.Handler.extend({
19
19
  enable: function () {
20
20
  if (this._enabled) { return; }
21
21
 
22
- L.Handler.prototype.enable.call(this);
23
-
24
22
  this.fire('enabled', { handler: this.type });
25
23
 
26
24
  this._map.fire('draw:drawstart', { layerType: this.type });
25
+
26
+ L.Handler.prototype.enable.call(this);
27
27
  },
28
28
 
29
29
  disable: function () {
@@ -13,8 +13,7 @@ L.Draw.Rectangle = L.Draw.SimpleShape.extend({
13
13
  fillColor: null, //same as color by default
14
14
  fillOpacity: 0.2,
15
15
  clickable: true
16
- },
17
- metric: true // Whether to use the metric meaurement system or imperial
16
+ }
18
17
  },
19
18
 
20
19
  initialize: function (map, options) {
@@ -38,22 +37,5 @@ L.Draw.Rectangle = L.Draw.SimpleShape.extend({
38
37
  _fireCreatedEvent: function () {
39
38
  var rectangle = new L.Rectangle(this._shape.getBounds(), this.options.shapeOptions);
40
39
  L.Draw.SimpleShape.prototype._fireCreatedEvent.call(this, rectangle);
41
- },
42
-
43
- _getTooltipText: function () {
44
- var tooltipText = L.Draw.SimpleShape.prototype._getTooltipText.call(this),
45
- shape = this._shape,
46
- latLngs, area, subtext;
47
-
48
- if (shape) {
49
- latLngs = this._shape.getLatLngs();
50
- area = L.GeometryUtil.geodesicArea(latLngs);
51
- subtext = L.GeometryUtil.readableArea(area, this.options.metric);
52
- }
53
-
54
- return {
55
- text: tooltipText.text,
56
- subtext: subtext
57
- };
58
40
  }
59
41
  });
@@ -56,12 +56,6 @@ L.Draw.SimpleShape = L.Draw.Feature.extend({
56
56
  this._isDrawing = false;
57
57
  },
58
58
 
59
- _getTooltipText: function () {
60
- return {
61
- text: this._endLabelText
62
- };
63
- },
64
-
65
59
  _onMouseDown: function (e) {
66
60
  this._isDrawing = true;
67
61
  this._startLatLng = e.latlng;
@@ -76,7 +70,7 @@ L.Draw.SimpleShape = L.Draw.Feature.extend({
76
70
 
77
71
  this._tooltip.updatePosition(latlng);
78
72
  if (this._isDrawing) {
79
- this._tooltip.updateContent(this._getTooltipText());
73
+ this._tooltip.updateContent({ text: this._endLabelText });
80
74
  this._drawShape(latlng);
81
75
  }
82
76
  },
@@ -3,10 +3,6 @@
3
3
  });*/
4
4
 
5
5
  L.EditToolbar = L.Toolbar.extend({
6
- statics: {
7
- TYPE: 'edit'
8
- },
9
-
10
6
  options: {
11
7
  edit: {
12
8
  selectedPathOptions: {
@@ -16,10 +12,7 @@ L.EditToolbar = L.Toolbar.extend({
16
12
 
17
13
  fill: true,
18
14
  fillColor: '#fe57a1',
19
- fillOpacity: 0.1,
20
-
21
- // Whether to user the existing layers color
22
- maintainColor: false
15
+ fillOpacity: 0.1
23
16
  }
24
17
  },
25
18
  remove: {},
@@ -32,7 +25,7 @@ L.EditToolbar = L.Toolbar.extend({
32
25
  if (typeof options.edit.selectedPathOptions === 'undefined') {
33
26
  options.edit.selectedPathOptions = this.options.edit.selectedPathOptions;
34
27
  }
35
- options.edit.selectedPathOptions = L.extend({}, this.options.edit.selectedPathOptions, options.edit.selectedPathOptions);
28
+ options.edit = L.extend({}, this.options.edit, options.edit);
36
29
  }
37
30
 
38
31
  if (options.remove) {
@@ -18,14 +18,6 @@ L.Edit.Poly = L.Handler.extend({
18
18
  },
19
19
 
20
20
  addHooks: function () {
21
- var poly = this._poly;
22
-
23
- if (!(poly instanceof L.Polygon)) {
24
- poly.options.editing.fill = false;
25
- }
26
-
27
- poly.setStyle(poly.options.editing);
28
-
29
21
  if (this._poly._map) {
30
22
  if (!this._markerGroup) {
31
23
  this._initMarkers();
@@ -35,12 +27,8 @@ L.Edit.Poly = L.Handler.extend({
35
27
  },
36
28
 
37
29
  removeHooks: function () {
38
- var poly = this._poly;
39
-
40
- poly.setStyle(poly.options.original);
41
-
42
- if (poly._map) {
43
- poly._map.removeLayer(this._markerGroup);
30
+ if (this._poly._map) {
31
+ this._poly._map.removeLayer(this._markerGroup);
44
32
  delete this._markerGroup;
45
33
  delete this._markers;
46
34
  }
@@ -18,12 +18,8 @@ L.Edit.SimpleShape = L.Handler.extend({
18
18
  },
19
19
 
20
20
  addHooks: function () {
21
- var shape = this._shape;
22
-
23
- shape.setStyle(shape.options.editing);
24
-
25
- if (shape._map) {
26
- this._map = shape._map;
21
+ if (this._shape._map) {
22
+ this._map = this._shape._map;
27
23
 
28
24
  if (!this._markerGroup) {
29
25
  this._initMarkers();
@@ -33,11 +29,7 @@ L.Edit.SimpleShape = L.Handler.extend({
33
29
  },
34
30
 
35
31
  removeHooks: function () {
36
- var shape = this._shape;
37
-
38
- shape.setStyle(shape.options.original);
39
-
40
- if (shape._map) {
32
+ if (this._shape._map) {
41
33
  this._unbindMarker(this._moveMarker);
42
34
 
43
35
  for (var i = 0, l = this._resizeMarkers.length; i < l; i++) {
@@ -57,7 +57,7 @@ L.EditToolbar.Delete = L.Handler.extend({
57
57
  map.getContainer().focus();
58
58
 
59
59
  this._deletableLayers.eachLayer(this._enableLayerDelete, this);
60
- this._deletedLayers = new L.LayerGroup();
60
+ this._deletedLayers = new L.layerGroup();
61
61
 
62
62
  this._tooltip = new L.Tooltip(this._map);
63
63
  this._tooltip.updateContent({ text: L.drawLocal.edit.handlers.remove.tooltip.text });
@@ -82,7 +82,6 @@ L.EditToolbar.Delete = L.Handler.extend({
82
82
  // Iterate of the deleted layers and add them back into the featureGroup
83
83
  this._deletedLayers.eachLayer(function (layer) {
84
84
  this._deletableLayers.addLayer(layer);
85
- layer.fire('revert-deleted', { layer: layer });
86
85
  }, this);
87
86
  },
88
87
 
@@ -111,8 +110,6 @@ L.EditToolbar.Delete = L.Handler.extend({
111
110
  this._deletableLayers.removeLayer(layer);
112
111
 
113
112
  this._deletedLayers.addLayer(layer);
114
-
115
- layer.fire('deleted');
116
113
  },
117
114
 
118
115
  _onMouseMove: function (e) {
@@ -8,7 +8,8 @@ L.EditToolbar.Edit = L.Handler.extend({
8
8
  initialize: function (map, options) {
9
9
  L.Handler.prototype.initialize.call(this, map);
10
10
 
11
- L.setOptions(this, options);
11
+ // Set options to the default unless already set
12
+ this._selectedPathOptions = options.selectedPathOptions;
12
13
 
13
14
  // Store the selectable layer group for ease of access
14
15
  this._featureGroup = options.featureGroup;
@@ -134,43 +135,108 @@ L.EditToolbar.Edit = L.Handler.extend({
134
135
  } else if (layer instanceof L.Marker) { // Marker
135
136
  layer.setLatLng(this._uneditedLayerProps[id].latlng);
136
137
  }
138
+ }
139
+ },
140
+
141
+ _toggleMarkerHighlight: function (marker) {
142
+ if (!marker._icon) {
143
+ return;
144
+ }
145
+ // This is quite naughty, but I don't see another way of doing it. (short of setting a new icon)
146
+ var icon = marker._icon;
147
+
148
+ icon.style.display = 'none';
149
+
150
+ if (L.DomUtil.hasClass(icon, 'leaflet-edit-marker-selected')) {
151
+ L.DomUtil.removeClass(icon, 'leaflet-edit-marker-selected');
152
+ // Offset as the border will make the icon move.
153
+ this._offsetMarker(icon, -4);
137
154
 
138
- layer.fire('revert-edited', { layer: layer });
155
+ } else {
156
+ L.DomUtil.addClass(icon, 'leaflet-edit-marker-selected');
157
+ // Offset as the border will make the icon move.
158
+ this._offsetMarker(icon, 4);
139
159
  }
160
+
161
+ icon.style.display = '';
162
+ },
163
+
164
+ _offsetMarker: function (icon, offset) {
165
+ var iconMarginTop = parseInt(icon.style.marginTop, 10) - offset,
166
+ iconMarginLeft = parseInt(icon.style.marginLeft, 10) - offset;
167
+
168
+ icon.style.marginTop = iconMarginTop + 'px';
169
+ icon.style.marginLeft = iconMarginLeft + 'px';
140
170
  },
141
171
 
142
172
  _enableLayerEdit: function (e) {
143
173
  var layer = e.layer || e.target || e,
174
+ isMarker = layer instanceof L.Marker,
144
175
  pathOptions;
145
176
 
177
+ // Don't do anything if this layer is a marker but doesn't have an icon. Markers
178
+ // should usually have icons. If using Leaflet.draw with Leafler.markercluster there
179
+ // is a chance that a marker doesn't.
180
+ if (isMarker && !layer._icon) {
181
+ return;
182
+ }
183
+
146
184
  // Back up this layer (if haven't before)
147
185
  this._backupLayer(layer);
148
186
 
149
- // Set different style for editing mode
150
- if (this.options.selectedPathOptions) {
151
- pathOptions = L.Util.extend({}, this.options.selectedPathOptions);
187
+ // Update layer style so appears editable
188
+ if (this._selectedPathOptions) {
189
+ pathOptions = L.Util.extend({}, this._selectedPathOptions);
152
190
 
153
- // Use the existing color of the layer
154
- if (pathOptions.maintainColor) {
155
- pathOptions.color = layer.options.color;
156
- pathOptions.fillColor = layer.options.fillColor;
157
- }
191
+ if (isMarker) {
192
+ this._toggleMarkerHighlight(layer);
193
+ } else {
194
+ layer.options.previousOptions = L.Util.extend({ dashArray: null }, layer.options);
195
+
196
+ // Make sure that Polylines are not filled
197
+ if (!(layer instanceof L.Circle) && !(layer instanceof L.Polygon) && !(layer instanceof L.Rectangle)) {
198
+ pathOptions.fill = false;
199
+ }
158
200
 
159
- layer.options.original = L.extend({}, layer.options);
160
- layer.options.editing = pathOptions;
201
+ layer.setStyle(pathOptions);
202
+ }
161
203
  }
162
204
 
163
- layer.editing.enable();
205
+ if (isMarker) {
206
+ layer.dragging.enable();
207
+ layer.on('dragend', this._onMarkerDragEnd);
208
+ } else {
209
+ layer.editing.enable();
210
+ }
164
211
  },
165
212
 
166
213
  _disableLayerEdit: function (e) {
167
214
  var layer = e.layer || e.target || e;
168
-
169
215
  layer.edited = false;
170
- layer.editing.disable();
171
216
 
172
- delete layer.options.editing;
173
- delete layer.options.original;
217
+ // Reset layer styles to that of before select
218
+ if (this._selectedPathOptions) {
219
+ if (layer instanceof L.Marker) {
220
+ this._toggleMarkerHighlight(layer);
221
+ } else {
222
+ // reset the layer style to what is was before being selected
223
+ layer.setStyle(layer.options.previousOptions);
224
+ // remove the cached options for the layer object
225
+ delete layer.options.previousOptions;
226
+ }
227
+ }
228
+
229
+ if (layer instanceof L.Marker) {
230
+ layer.dragging.disable();
231
+ layer.off('dragend', this._onMarkerDragEnd, this);
232
+ } else {
233
+ layer.editing.disable();
234
+ }
235
+ },
236
+
237
+ _onMarkerDragEnd: function (e) {
238
+ var layer = e.target;
239
+ layer.edited = true;
174
240
  },
175
241
 
176
242
  _onMouseMove: function (e) {