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,62 @@
1
+ ### Done
2
+
3
+ * ~~Tidy up css: include leaflet-control-toolbar for common styles~~
4
+ * ~~Rename _shapes variable in Control.Draw to make better sense.~~
5
+ * ~~Should the ext classes be renamed to Polyline.Intersect or similar?~~
6
+ * ~~Make Control.Draw inherit from Control.Toolbar.~~
7
+ * ~~Rename Handler.Draw -> Vector.Draw. What about markers? they aren't vectors, is there a better name? Maybe Feature?~~
8
+ * ~~Add enbled/disabled states for the delete & edit buttons.~~
9
+ * ~~Move control/handler files out of draw folder.~~
10
+ * ~~Rename the draw events from draw:feature t0 feature-created.~~
11
+ * ~~Revert to the correct colour for the feature that was just deselected.~~
12
+ * ~~Rename the Handler activated/deactivated events to enabled/disabled.~~
13
+ * ~~Add option for setting the selected color.~~
14
+ * ~~Check and calls to L.Feature.Draw.prototype, are they correct? In Draw.Circle it hink it should be referencing L.Draw.SimpleShape~~
15
+ * ~~Add in cancel buttons for selected button.~~
16
+ * ~~Have special behavior for selected markers. Do we just set the background color?~~
17
+ * ~~Turn the cancel button UI into a button container for things like undo.~~
18
+ * ~~Add Save to edit mode. Same as cancel but does not revert any shapes.~~
19
+ * ~~rename selectableLayers = layerGroup~~
20
+ * ~~refactor the repositioning of the actions toolbar for Control.Draw.~~
21
+ * ~~If more than 1 button in actions toolbar but not first is showing then margin is wrong.~~
22
+ * ~~Support cancelling delete?~~
23
+ * ~~Rename the _showCancel/_hideCancel methods in Control.Toolbar~~
24
+ * ~~See if any common code can move to Control.Toolbar from Control.Draw.~~
25
+ * ~~Fix the bottom border radius when the actions buttons are at the bottom~~
26
+ * ~~Fix up the toolbar rounded corners when only 1 item in the toolbar.~~
27
+ * ~~Handle layers being added/removed to the layergroup. i.e. need to be placed in edit mode or have a delete handler added~~
28
+ * ~Add support for tooltips for the edit mode.~
29
+ * ~Add handlers for Circle and Rectangle editing. (Needs a way to hook into L.Cicle and L.Rectangle)~
30
+ * ~Fix styles to look more like new Leaflet zoom in/out.~
31
+ * ~Polyline is styled as filled for edit mode.~
32
+ * ~Add visual style change to toolbar buttons on mouse over.~
33
+ * ~Add handlers to earch corner of the rectangle for resizing.~
34
+ * ~Bug: if you go edit mode, then go to draw mode.~
35
+ * ~Handle controls from being removed from map.~
36
+ * ~Add link to http://glyphicons.com/~
37
+ * ~Redo the select/delete icons.~
38
+ * ~Merge the event change pull and add edit/delete versions.~
39
+ * ~When switching from edit to delete and having edit a feature it should reset/cancel instead of saving.~
40
+ * ~Move clone methods from Edit.Feature~
41
+ * ~Renamed Edit.Feature -> Edit and Delete.Feature -> Delete, is confusing since Edit.feature is not the same as Edit.Circle etc~
42
+ * ~Get Leaflet control-design branch merged to master.~
43
+ * ~Fix action toolbar styles to match new toolbar height.~
44
+ * ~Make Tooltip sexy!~
45
+ * ~IE actions bar position.~
46
+ * ~IE editable marker background and border.~
47
+ * ~Search for TODO~
48
+ * ~Update Deps. Maybe should make it more advanced to allow people to custom build without parts? Like edit only or draw only? Also file names ahve changed.~
49
+ * ~Add some proper documentation. I.e. for the events & methods.~
50
+ * ~Add a thanks section to README. Shramov, BrunboB, tnightingale & Glyphicons. Others?~
51
+ * ~Write up a breaking changes for when 0.2 goes live. (See below)~
52
+ * ~Add events to docs~
53
+ * ~Fix the draw:enabled event. This is not used for the edit toolbar. It is simply used to state that drawing has started then ended.~
54
+ * ~Custom build tool.~
55
+ * ~Move Poly.Edit.js~
56
+ * ~Add ability to update the options after control is initialized.~
57
+ * ~Make a git tag of Leaflet.draw 0.1~
58
+ * ~Document changing the options of a draw handler.~
59
+
60
+ ### TODO
61
+
62
+ * Fix all the Show Code links in the ReadMe.
@@ -0,0 +1,243 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>Leaflet Build Helper</title>
5
+
6
+ <script type="text/javascript" src="deps.js"></script>
7
+
8
+ <style type="text/css">
9
+ body {
10
+ font: 12px/1.4 Verdana, sans-serif;
11
+ text-align: center;
12
+ padding: 2em 0;
13
+ }
14
+ #container {
15
+ text-align: left;
16
+ margin: 0 auto;
17
+ width: 780px;
18
+ }
19
+ #deplist {
20
+ list-style: none;
21
+ padding: 0;
22
+ }
23
+ #deplist li {
24
+ padding-top: 7px;
25
+ padding-bottom: 7px;
26
+ border-bottom: 1px solid #ddd;
27
+ }
28
+ #deplist li.heading {
29
+ border: none;
30
+ background: #ddd;
31
+ padding: 5px 10px;
32
+ margin-top: 25px;
33
+ border-radius: 5px;
34
+ }
35
+ #deplist input {
36
+ float: left;
37
+ margin-right: 5px;
38
+ display: inline;
39
+ }
40
+ #deplist label {
41
+ float: left;
42
+ width: 160px;
43
+ font-weight: bold;
44
+ }
45
+ #deplist div {
46
+ display: table-cell;
47
+ height: 1%;
48
+ }
49
+ #deplist .desc {
50
+ }
51
+
52
+ #deplist .deps {
53
+ color: #777;
54
+ }
55
+
56
+ #command {
57
+ width: 100%;
58
+ }
59
+ #command2 {
60
+ width: 200px;
61
+ }
62
+
63
+ #toolbar {
64
+ padding-bottom: 10px;
65
+ border-bottom: 1px solid #ddd;
66
+ }
67
+
68
+ h2 {
69
+ margin-top: 2em;
70
+ }
71
+ </style>
72
+ </head>
73
+ <body>
74
+ <div id="container">
75
+ <h1>Leaflet Build Helper</h1>
76
+
77
+ <p id="toolbar">
78
+ <a id="select-all" href="#all">Select All</a> |
79
+ <a id="deselect-all" href="#none">Deselect All</a>
80
+ </p>
81
+
82
+ <ul id="deplist"></ul>
83
+
84
+ <h2>Building using Node and UglifyJS</h2>
85
+ <ol>
86
+ <li><a href="http://nodejs.org/#download">Download and install Node</a></li>
87
+ <li>Run this in the command line:<br />
88
+ <pre><code>npm install -g jake
89
+ npm install jshint
90
+ npm install uglify-js</code></pre></li>
91
+ <li>Run this command inside the Leaflet directory: <br /><input type="text" id="command2" />
92
+ </ol>
93
+ <h2>Building using Closure Compiler</h2>
94
+ <ol>
95
+ <li><a href="http://closure-compiler.googlecode.com/files/compiler-latest.zip">Download Closure Compiler</a>, extract it into <code>closure-compiler</code> directory</li>
96
+ <li>Run this command in the root Leaflet directory: <br /><input type="text" id="command" /></li>
97
+ </ol>
98
+ </div>
99
+
100
+ <script type="text/javascript">
101
+ var deplist = document.getElementById('deplist'),
102
+ commandInput = document.getElementById('command'),
103
+ commandInput2 = document.getElementById('command2');
104
+
105
+ document.getElementById('select-all').onclick = function() {
106
+ var checks = deplist.getElementsByTagName('input');
107
+ for (var i = 0; i < checks.length; i++) {
108
+ checks[i].checked = true;
109
+ }
110
+ updateCommand();
111
+ return false;
112
+ };
113
+
114
+ document.getElementById('deselect-all').onclick = function() {
115
+ var checks = deplist.getElementsByTagName('input');
116
+ for (var i = 0; i < checks.length; i++) {
117
+ if (!checks[i].disabled) {
118
+ checks[i].checked = false;
119
+ }
120
+ }
121
+ updateCommand();
122
+ return false;
123
+ };
124
+
125
+ function updateCommand() {
126
+ var files = {};
127
+ var checks = deplist.getElementsByTagName('input');
128
+ var compsStr = '';
129
+
130
+ for (var i = 0, len = checks.length; i < len; i++) {
131
+ if (checks[i].checked) {
132
+ var srcs = deps[checks[i].id].src;
133
+ for (var j = 0, len2 = srcs.length; j < len2; j++) {
134
+ files[srcs[j]] = true;
135
+ }
136
+ compsStr = '1' + compsStr;
137
+ } else {
138
+ compsStr = '0' + compsStr;
139
+ }
140
+ }
141
+
142
+ var command = 'java -jar closure-compiler/compiler.jar ';
143
+ for (var src in files) {
144
+ command += '--js src/' + src + ' ';
145
+ }
146
+ command += '--js_output_file dist/leaflet-custom.js';
147
+
148
+ commandInput.value = command;
149
+
150
+ commandInput2.value = 'jake build[' + parseInt(compsStr, 2).toString(32) + ',custom]';
151
+ }
152
+
153
+ function inputSelect() {
154
+ this.focus();
155
+ this.select();
156
+ };
157
+
158
+ commandInput.onclick = inputSelect;
159
+ commandInput2.onclick = inputSelect;
160
+
161
+ function onCheckboxChange() {
162
+ if (this.checked) {
163
+ var depDeps = deps[this.id].deps;
164
+ if (depDeps) {
165
+ for (var i = 0; i < depDeps.length; i++) {
166
+ var check = document.getElementById(depDeps[i]);
167
+ if (!check.checked) {
168
+ check.checked = true;
169
+ check.onchange();
170
+ }
171
+ }
172
+ }
173
+ } else {
174
+ var checks = deplist.getElementsByTagName('input');
175
+ for (var i = 0; i < checks.length; i++) {
176
+ var dep = deps[checks[i].id];
177
+ if (!dep.deps) { continue; }
178
+ for (var j = 0; j < dep.deps.length; j++) {
179
+ if (dep.deps[j] === this.id) {
180
+ if (checks[i].checked) {
181
+ checks[i].checked = false;
182
+ checks[i].onchange();
183
+ }
184
+ }
185
+ }
186
+ }
187
+ }
188
+ updateCommand();
189
+ }
190
+
191
+ for (var name in deps) {
192
+ var li = document.createElement('li');
193
+
194
+ if (deps[name].heading) {
195
+ var heading = document.createElement('li');
196
+ heading.className = 'heading';
197
+ heading.appendChild(document.createTextNode(deps[name].heading));
198
+ deplist.appendChild(heading);
199
+ }
200
+
201
+ var div = document.createElement('div');
202
+
203
+ var label = document.createElement('label');
204
+
205
+ var check = document.createElement('input');
206
+ check.type = 'checkbox';
207
+ check.id = name;
208
+ label.appendChild(check);
209
+ check.onchange = onCheckboxChange;
210
+
211
+ if (name == 'Core') {
212
+ check.checked = true;
213
+ check.disabled = true;
214
+ }
215
+
216
+ label.appendChild(document.createTextNode(name));
217
+ label.htmlFor = name;
218
+
219
+ li.appendChild(label);
220
+
221
+ var desc = document.createElement('span');
222
+ desc.className = 'desc';
223
+ desc.appendChild(document.createTextNode(deps[name].desc));
224
+
225
+ var depText = deps[name].deps && deps[name].deps.join(', ');
226
+ if (depText) {
227
+ var depspan = document.createElement('span');
228
+ depspan.className = 'deps';
229
+ depspan.appendChild(document.createTextNode('Deps: ' + depText));
230
+ }
231
+
232
+ div.appendChild(desc);
233
+ div.appendChild(document.createElement('br'));
234
+ if (depText) { div.appendChild(depspan); }
235
+
236
+ li.appendChild(div);
237
+
238
+ deplist.appendChild(li);
239
+ }
240
+ updateCommand();
241
+ </script>
242
+ </body>
243
+ </html>
@@ -0,0 +1,189 @@
1
+ var fs = require('fs'),
2
+ jshint = require('jshint'),
3
+ UglifyJS = require('uglify-js'),
4
+
5
+ deps = require('./deps.js').deps,
6
+ hintrc = require('./hintrc.js').config;
7
+
8
+
9
+ function lintFiles(files) {
10
+
11
+ var errorsFound = 0,
12
+ i, j, len, len2, src, errors, e;
13
+
14
+ for (i = 0, len = files.length; i < len; i++) {
15
+
16
+ jshint.JSHINT(fs.readFileSync(files[i], 'utf8'), hintrc);
17
+ errors = jshint.JSHINT.errors;
18
+
19
+ for (j = 0, len2 = errors.length; j < len2; j++) {
20
+ e = errors[j];
21
+ console.log(files[i] + '\tline ' + e.line + '\tcol ' + e.character + '\t ' + e.reason);
22
+ }
23
+
24
+ errorsFound += len2;
25
+ }
26
+
27
+ return errorsFound;
28
+ }
29
+
30
+ function getFiles(compsBase32) {
31
+ var memo = {},
32
+ comps;
33
+
34
+ if (compsBase32) {
35
+ comps = parseInt(compsBase32, 32).toString(2).split('');
36
+ console.log('Managing dependencies...');
37
+ }
38
+
39
+ function addFiles(srcs) {
40
+ for (var j = 0, len = srcs.length; j < len; j++) {
41
+ memo[srcs[j]] = true;
42
+ }
43
+ }
44
+
45
+ for (var i in deps) {
46
+ if (comps) {
47
+ if (parseInt(comps.pop(), 2) === 1) {
48
+ console.log('\t* ' + i);
49
+ addFiles(deps[i].src);
50
+ } else {
51
+ console.log('\t ' + i);
52
+ }
53
+ } else {
54
+ addFiles(deps[i].src);
55
+ }
56
+ }
57
+
58
+ var files = [];
59
+
60
+ for (var src in memo) {
61
+ files.push('src/' + src);
62
+ }
63
+
64
+ return files;
65
+ }
66
+
67
+ exports.getFiles = getFiles;
68
+
69
+ exports.lint = function () {
70
+
71
+ var files = getFiles();
72
+
73
+ console.log('Checking for JS errors...');
74
+
75
+ var errorsFound = lintFiles(files);
76
+
77
+ if (errorsFound > 0) {
78
+ console.log(errorsFound + ' error(s) found.\n');
79
+ fail();
80
+ } else {
81
+ console.log('\tCheck passed');
82
+ }
83
+ };
84
+
85
+
86
+ function getSizeDelta(newContent, oldContent) {
87
+ if (!oldContent) {
88
+ return 'new';
89
+ }
90
+ var newLen = newContent.replace(/\r\n?/g, '\n').length,
91
+ oldLen = oldContent.replace(/\r\n?/g, '\n').length,
92
+ delta = newLen - oldLen;
93
+
94
+ return (delta >= 0 ? '+' : '') + delta;
95
+ }
96
+
97
+ function loadSilently(path) {
98
+ try {
99
+ return fs.readFileSync(path, 'utf8');
100
+ } catch (e) {
101
+ return null;
102
+ }
103
+ }
104
+
105
+ function combineFiles(files) {
106
+ var content = '';
107
+ for (var i = 0, len = files.length; i < len; i++) {
108
+ content += fs.readFileSync(files[i], 'utf8') + '\n\n';
109
+ }
110
+ return content;
111
+ }
112
+
113
+ exports.build = function (compsBase32, buildName) {
114
+
115
+ var files = getFiles(compsBase32);
116
+
117
+ console.log('Concatenating ' + files.length + ' files...');
118
+
119
+ var copy = fs.readFileSync('src/copyright.js', 'utf8'),
120
+ intro = '(function (window, document, undefined) {\n',
121
+ outro = '}(this, document));',
122
+ newSrc = copy + intro + combineFiles(files) + outro,
123
+
124
+ pathPart = 'dist/leaflet.draw' + (buildName ? '-' + buildName : ''),
125
+ srcPath = pathPart + '-src.js',
126
+
127
+ oldSrc = loadSilently(srcPath),
128
+ srcDelta = getSizeDelta(newSrc, oldSrc);
129
+
130
+ console.log('\tUncompressed size: ' + newSrc.length + ' bytes (' + srcDelta + ')');
131
+
132
+ if (newSrc === oldSrc) {
133
+ console.log('\tNo changes');
134
+ } else {
135
+ fs.writeFileSync(srcPath, newSrc);
136
+ console.log('\tSaved to ' + srcPath);
137
+ }
138
+
139
+ console.log('Compressing...');
140
+
141
+ var path = pathPart + '.js',
142
+ oldCompressed = loadSilently(path),
143
+ newCompressed = copy + UglifyJS.minify(newSrc, {
144
+ warnings: true,
145
+ fromString: true
146
+ }).code,
147
+ delta = getSizeDelta(newCompressed, oldCompressed);
148
+
149
+ console.log('\tCompressed size: ' + newCompressed.length + ' bytes (' + delta + ')');
150
+
151
+ if (newCompressed === oldCompressed) {
152
+ console.log('\tNo changes');
153
+ } else {
154
+ fs.writeFileSync(path, newCompressed);
155
+ console.log('\tSaved to ' + path);
156
+ }
157
+
158
+ };
159
+
160
+ exports.test = function() {
161
+ var karma = require('karma'),
162
+ testConfig = {configFile : __dirname + '/../spec/karma.conf.js'};
163
+
164
+ testConfig.browsers = ['PhantomJS'];
165
+
166
+ if (isArgv('--chrome')) {
167
+ testConfig.browsers.push('Chrome');
168
+ }
169
+ if (isArgv('--ff')) {
170
+ testConfig.browsers.push('Firefox');
171
+ }
172
+
173
+ if (isArgv('--cov')) {
174
+ testConfig.preprocessors = {
175
+ '../src/**/*.js': 'coverage'
176
+ };
177
+ testConfig.coverageReporter = {
178
+ type : 'html',
179
+ dir : 'coverage/'
180
+ };
181
+ testConfig.reporters = ['coverage'];
182
+ }
183
+
184
+ karma.server.start(testConfig);
185
+
186
+ function isArgv(optName) {
187
+ return process.argv.indexOf(optName) !== -1;
188
+ }
189
+ };