leaflet-js 0.6.beta4 → 0.7.0

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 (226) hide show
  1. checksums.yaml +6 -14
  2. data/CHANGELOG.rdoc +3 -0
  3. data/leaflet-js.gemspec +2 -2
  4. data/lib/leaflet.draw/CHANGELOG.md +45 -0
  5. data/lib/leaflet.draw/README.md +70 -23
  6. data/lib/leaflet.draw/build/deps.js +1 -0
  7. data/lib/leaflet.draw/dist/images/spritesheet-2x.png +0 -0
  8. data/lib/leaflet.draw/dist/images/spritesheet.png +0 -0
  9. data/lib/leaflet.draw/dist/leaflet.draw-src.js +489 -136
  10. data/lib/leaflet.draw/dist/leaflet.draw.css +34 -2
  11. data/lib/leaflet.draw/dist/leaflet.draw.ie.css +5 -0
  12. data/lib/leaflet.draw/dist/leaflet.draw.js +2 -2
  13. data/lib/leaflet.draw/examples/basic.html +14 -7
  14. data/lib/leaflet.draw/examples/libs/images/layers-2x.png +0 -0
  15. data/lib/leaflet.draw/examples/libs/images/layers.png +0 -0
  16. data/lib/leaflet.draw/examples/libs/images/marker-icon-2x.png +0 -0
  17. data/lib/leaflet.draw/examples/libs/leaflet-src.js +1129 -608
  18. data/lib/leaflet.draw/examples/libs/leaflet.css +85 -66
  19. data/lib/leaflet.draw/package.json +2 -2
  20. data/lib/leaflet.draw/spec/suites/DrawControlSpec.js +1 -1
  21. data/lib/leaflet.draw/spec/suites/GeometryUtilSpec.js +25 -0
  22. data/lib/leaflet.draw/spec/suites/LatLngUtilSpec.js +9 -0
  23. data/lib/leaflet.draw/src/Control.Draw.js +1 -0
  24. data/lib/leaflet.draw/src/Leaflet.draw.js +89 -1
  25. data/lib/leaflet.draw/src/Toolbar.js +2 -6
  26. data/lib/leaflet.draw/src/Tooltip.js +20 -7
  27. data/lib/leaflet.draw/src/draw/DrawToolbar.js +26 -22
  28. data/lib/leaflet.draw/src/draw/handler/Draw.Circle.js +11 -6
  29. data/lib/leaflet.draw/src/draw/handler/Draw.Feature.js +6 -2
  30. data/lib/leaflet.draw/src/draw/handler/Draw.Marker.js +7 -2
  31. data/lib/leaflet.draw/src/draw/handler/Draw.Polygon.js +29 -7
  32. data/lib/leaflet.draw/src/draw/handler/Draw.Polyline.js +44 -21
  33. data/lib/leaflet.draw/src/draw/handler/Draw.Rectangle.js +3 -3
  34. data/lib/leaflet.draw/src/draw/handler/Draw.SimpleShape.js +14 -1
  35. data/lib/leaflet.draw/src/edit/EditToolbar.js +86 -16
  36. data/lib/leaflet.draw/src/edit/handler/Edit.Poly.js +10 -7
  37. data/lib/leaflet.draw/src/edit/handler/Edit.SimpleShape.js +1 -2
  38. data/lib/leaflet.draw/src/edit/handler/EditToolbar.Delete.js +15 -3
  39. data/lib/leaflet.draw/src/edit/handler/EditToolbar.Edit.js +56 -38
  40. data/lib/leaflet.draw/src/ext/GeometryUtil.js +68 -0
  41. data/lib/leaflet.draw/src/images/spritesheet.svg +41 -0
  42. data/lib/leaflet.label/CHANGELOG.md +32 -0
  43. data/lib/leaflet.label/README.md +21 -4
  44. data/lib/leaflet.label/build/build.js +2 -2
  45. data/lib/leaflet.label/build/deps.js +2 -0
  46. data/lib/leaflet.label/build/hintrc.js +4 -0
  47. data/lib/leaflet.label/dist/leaflet.label-src.js +266 -83
  48. data/lib/leaflet.label/dist/leaflet.label.css +23 -4
  49. data/lib/leaflet.label/dist/leaflet.label.js +1 -1
  50. data/lib/leaflet.label/example/label.html +6 -3
  51. data/lib/leaflet.label/libs/leaflet/images/layers-2x.png +0 -0
  52. data/lib/leaflet.label/libs/leaflet/images/layers.png +0 -0
  53. data/lib/leaflet.label/libs/leaflet/images/marker-icon-2x.png +0 -0
  54. data/lib/leaflet.label/libs/leaflet/leaflet-src.js +1129 -608
  55. data/lib/leaflet.label/libs/leaflet/leaflet.css +85 -66
  56. data/lib/leaflet.label/libs/leaflet/leaflet.js +6 -5
  57. data/lib/leaflet.label/package.json +19 -0
  58. data/lib/leaflet.label/src/BaseMarkerMethods.js +129 -0
  59. data/lib/leaflet.label/src/CircleMarker.Label.js +7 -0
  60. data/lib/leaflet.label/src/Label.js +161 -37
  61. data/lib/leaflet.label/src/Leaflet.label.js +1 -1
  62. data/lib/leaflet.label/src/Map.Label.js +0 -2
  63. data/lib/leaflet.label/src/Marker.Label.js +15 -120
  64. data/lib/leaflet.label/src/Path.Label.js +11 -11
  65. data/lib/leaflet/CHANGELOG.md +299 -31
  66. data/lib/leaflet/CONTRIBUTING.md +3 -3
  67. data/lib/leaflet/FAQ.md +138 -0
  68. data/lib/leaflet/Jakefile.js +24 -4
  69. data/lib/leaflet/PLUGIN-GUIDE.md +127 -0
  70. data/lib/leaflet/README.md +10 -6
  71. data/lib/leaflet/build/build.html +3 -19
  72. data/lib/leaflet/build/build.js +21 -51
  73. data/lib/leaflet/build/deps.js +10 -7
  74. data/lib/leaflet/build/hintrc.js +6 -4
  75. data/lib/leaflet/debug/hacks/jitter.html +0 -1
  76. data/lib/leaflet/debug/map/canvas.html +11 -12
  77. data/lib/leaflet/debug/map/controls.html +3 -4
  78. data/lib/leaflet/debug/map/geolocation.html +0 -1
  79. data/lib/leaflet/debug/map/iframe.html +11 -0
  80. data/lib/leaflet/debug/map/image-overlay.html +0 -1
  81. data/lib/leaflet/debug/map/map-mobile.html +0 -1
  82. data/lib/leaflet/debug/map/map.html +1 -2
  83. data/lib/leaflet/debug/map/max-bounds.html +2 -1
  84. data/lib/leaflet/debug/map/opacity.html +223 -0
  85. data/lib/leaflet/debug/map/scroll.html +6 -1
  86. data/lib/leaflet/debug/map/simple-proj.html +0 -1
  87. data/lib/leaflet/debug/map/wms-marble.html +4 -5
  88. data/lib/leaflet/debug/map/wms.html +0 -1
  89. data/lib/leaflet/debug/map/zoomlevels.html +0 -1
  90. data/lib/leaflet/debug/tests/add_remove_layers.html +5 -6
  91. data/lib/leaflet/debug/tests/bringtoback.html +0 -1
  92. data/lib/leaflet/debug/tests/canvasloop.html +47 -0
  93. data/lib/leaflet/debug/tests/click_on_canvas.html +0 -1
  94. data/lib/leaflet/debug/tests/dragging_and_copyworldjump.html +61 -0
  95. data/lib/leaflet/debug/tests/opacity.html +0 -1
  96. data/lib/leaflet/debug/tests/popupcontextmenuclicks.html +59 -0
  97. data/lib/leaflet/debug/tests/remove_while_dragging.html +4 -5
  98. data/lib/leaflet/debug/tests/removetilewhilepan.html +0 -1
  99. data/lib/leaflet/debug/tests/reuse_popups.html +0 -1
  100. data/lib/leaflet/debug/tests/rtl.html +42 -0
  101. data/lib/leaflet/debug/tests/rtl2.html +27 -0
  102. data/lib/leaflet/debug/tests/set_icon_reuse_dom.html +43 -0
  103. data/lib/leaflet/debug/tests/svg_clicks.html +3 -4
  104. data/lib/leaflet/debug/vector/bounds-extend.html +0 -1
  105. data/lib/leaflet/debug/vector/feature-group-bounds.html +0 -1
  106. data/lib/leaflet/debug/vector/geojson.html +0 -1
  107. data/lib/leaflet/debug/vector/rectangle.html +0 -1
  108. data/lib/leaflet/debug/vector/touchzoomemu.html +2 -3
  109. data/lib/leaflet/debug/vector/vector-bounds.html +0 -1
  110. data/lib/leaflet/debug/vector/vector-canvas.html +0 -1
  111. data/lib/leaflet/debug/vector/vector-mobile.html +0 -1
  112. data/lib/leaflet/debug/vector/vector-simple.html +0 -1
  113. data/lib/leaflet/debug/vector/vector.html +0 -1
  114. data/lib/leaflet/dist/images/layers-2x.png +0 -0
  115. data/lib/leaflet/dist/images/layers.png +0 -0
  116. data/lib/leaflet/dist/leaflet.css +85 -66
  117. data/lib/leaflet/package.json +25 -20
  118. data/lib/leaflet/spec/after.js +1 -1
  119. data/lib/leaflet/spec/index.html +21 -13
  120. data/lib/leaflet/spec/karma.conf.js +51 -50
  121. data/lib/leaflet/spec/spec.hintrc.js +25 -0
  122. data/lib/leaflet/spec/suites/LeafletSpec.js +2 -2
  123. data/lib/leaflet/spec/suites/SpecHelper.js +37 -21
  124. data/lib/leaflet/spec/suites/control/Control.LayersSpec.js +1 -1
  125. data/lib/leaflet/spec/suites/core/ClassSpec.js +12 -12
  126. data/lib/leaflet/spec/suites/core/EventsSpec.js +74 -18
  127. data/lib/leaflet/spec/suites/core/UtilSpec.js +69 -25
  128. data/lib/leaflet/spec/suites/dom/DomEventSpec.js +16 -16
  129. data/lib/leaflet/spec/suites/dom/DomUtilSpec.js +9 -16
  130. data/lib/leaflet/spec/suites/dom/PosAnimationSpec.js +27 -0
  131. data/lib/leaflet/spec/suites/geo/CRSSpec.js +47 -0
  132. data/lib/leaflet/spec/suites/geo/LatLngBoundsSpec.js +22 -14
  133. data/lib/leaflet/spec/suites/geo/LatLngSpec.js +22 -8
  134. data/lib/leaflet/spec/suites/geo/ProjectionSpec.js +21 -20
  135. data/lib/leaflet/spec/suites/geometry/BoundsSpec.js +15 -15
  136. data/lib/leaflet/spec/suites/geometry/PointSpec.js +12 -12
  137. data/lib/leaflet/spec/suites/geometry/TransformationSpec.js +4 -4
  138. data/lib/leaflet/spec/suites/layer/FeatureGroupSpec.js +59 -9
  139. data/lib/leaflet/spec/suites/layer/GeoJSONSpec.js +213 -17
  140. data/lib/leaflet/spec/suites/layer/LayerGroupSpec.js +6 -6
  141. data/lib/leaflet/spec/suites/layer/PopupSpec.js +65 -5
  142. data/lib/leaflet/spec/suites/layer/TileLayerSpec.js +16 -15
  143. data/lib/leaflet/spec/suites/layer/marker/MarkerSpec.js +94 -0
  144. data/lib/leaflet/spec/suites/layer/vector/CircleMarkerSpec.js +7 -7
  145. data/lib/leaflet/spec/suites/layer/vector/PolygonSpec.js +38 -2
  146. data/lib/leaflet/spec/suites/layer/vector/PolylineGeometrySpec.js +4 -4
  147. data/lib/leaflet/spec/suites/layer/vector/PolylineSpec.js +2 -2
  148. data/lib/leaflet/spec/suites/map/MapSpec.js +318 -26
  149. data/lib/leaflet/spec/suites/map/handler/Map.DragSpec.js +38 -0
  150. data/lib/leaflet/src/Leaflet.js +2 -2
  151. data/lib/leaflet/src/control/Control.Attribution.js +6 -0
  152. data/lib/leaflet/src/control/Control.Layers.js +33 -24
  153. data/lib/leaflet/src/control/Control.Zoom.js +12 -4
  154. data/lib/leaflet/src/control/Control.js +10 -0
  155. data/lib/leaflet/src/copyright.js +2 -1
  156. data/lib/leaflet/src/core/Browser.js +11 -10
  157. data/lib/leaflet/src/core/Events.js +15 -11
  158. data/lib/leaflet/src/core/Util.js +19 -14
  159. data/lib/leaflet/src/dom/DomEvent.DoubleTap.js +13 -12
  160. data/lib/leaflet/src/dom/DomEvent.Pointer.js +155 -0
  161. data/lib/leaflet/src/dom/DomEvent.js +57 -19
  162. data/lib/leaflet/src/dom/DomUtil.js +89 -34
  163. data/lib/leaflet/src/dom/Draggable.js +26 -89
  164. data/lib/leaflet/src/dom/PosAnimation.js +13 -2
  165. data/lib/leaflet/src/geo/LatLng.js +16 -5
  166. data/lib/leaflet/src/geo/LatLngBounds.js +5 -2
  167. data/lib/leaflet/src/geo/crs/CRS.EPSG3395.js +2 -2
  168. data/lib/leaflet/src/geo/crs/CRS.js +5 -0
  169. data/lib/leaflet/src/geo/projection/Projection.Mercator.js +3 -3
  170. data/lib/leaflet/src/geometry/LineUtil.js +2 -2
  171. data/lib/leaflet/src/images/layers.svg +8 -0
  172. data/lib/leaflet/src/images/marker.svg +61 -1
  173. data/lib/leaflet/src/layer/FeatureGroup.js +24 -7
  174. data/lib/leaflet/src/layer/GeoJSON.js +97 -56
  175. data/lib/leaflet/src/layer/ImageOverlay.js +9 -0
  176. data/lib/leaflet/src/layer/LayerGroup.js +8 -3
  177. data/lib/leaflet/src/layer/Popup.js +56 -34
  178. data/lib/leaflet/src/layer/marker/DivIcon.js +4 -2
  179. data/lib/leaflet/src/layer/marker/Icon.Default.js +1 -1
  180. data/lib/leaflet/src/layer/marker/Icon.js +15 -18
  181. data/lib/leaflet/src/layer/marker/Marker.Drag.js +7 -5
  182. data/lib/leaflet/src/layer/marker/Marker.Popup.js +22 -5
  183. data/lib/leaflet/src/layer/marker/Marker.js +75 -32
  184. data/lib/leaflet/src/layer/tile/TileLayer.Anim.js +14 -26
  185. data/lib/leaflet/src/layer/tile/TileLayer.Canvas.js +7 -6
  186. data/lib/leaflet/src/layer/tile/TileLayer.WMS.js +14 -10
  187. data/lib/leaflet/src/layer/tile/TileLayer.js +53 -32
  188. data/lib/leaflet/src/layer/vector/CircleMarker.js +11 -0
  189. data/lib/leaflet/src/layer/vector/MultiPoly.js +10 -0
  190. data/lib/leaflet/src/layer/vector/Path.SVG.js +14 -3
  191. data/lib/leaflet/src/layer/vector/Path.VML.js +12 -2
  192. data/lib/leaflet/src/layer/vector/Path.js +7 -3
  193. data/lib/leaflet/src/layer/vector/Polygon.js +14 -3
  194. data/lib/leaflet/src/layer/vector/canvas/CircleMarker.Canvas.js +9 -0
  195. data/lib/leaflet/src/layer/vector/canvas/Path.Canvas.js +1 -0
  196. data/lib/leaflet/src/map/Map.js +192 -125
  197. data/lib/leaflet/src/map/anim/Map.PanAnimation.js +29 -19
  198. data/lib/leaflet/src/map/anim/Map.ZoomAnimation.js +21 -9
  199. data/lib/leaflet/src/map/ext/Map.Geolocation.js +11 -4
  200. data/lib/leaflet/src/map/handler/Map.BoxZoom.js +26 -12
  201. data/lib/leaflet/src/map/handler/Map.DoubleClickZoom.js +10 -3
  202. data/lib/leaflet/src/map/handler/Map.Drag.js +12 -6
  203. data/lib/leaflet/src/map/handler/Map.Keyboard.js +5 -2
  204. data/lib/leaflet/src/map/handler/Map.ScrollWheelZoom.js +7 -1
  205. data/lib/leaflet/src/map/handler/Map.Tap.js +107 -0
  206. data/lib/leaflet/src/map/handler/Map.TouchZoom.js +9 -3
  207. data/vendor/assets/images/layers-2x.png +0 -0
  208. data/vendor/assets/images/layers.png +0 -0
  209. data/vendor/assets/images/spritesheet-2x.png +0 -0
  210. data/vendor/assets/images/spritesheet.png +0 -0
  211. data/vendor/assets/javascripts/leaflet.draw.js +2 -4
  212. data/vendor/assets/javascripts/leaflet.js +3 -1
  213. data/vendor/assets/javascripts/leaflet.label.js +2 -0
  214. data/vendor/assets/stylesheets/leaflet.css.erb +337 -318
  215. data/vendor/assets/stylesheets/leaflet.draw.css.erb +35 -3
  216. data/vendor/assets/stylesheets/leaflet.draw.ie.css +5 -0
  217. data/vendor/assets/stylesheets/leaflet.label.css +23 -4
  218. metadata +40 -14
  219. data/lib/leaflet.draw/examples/libs/leaflet.ie.css +0 -51
  220. data/lib/leaflet.label/libs/leaflet/leaflet.ie.css +0 -51
  221. data/lib/leaflet/dist/leaflet-src.js +0 -8579
  222. data/lib/leaflet/dist/leaflet.ie.css +0 -51
  223. data/lib/leaflet/dist/leaflet.js +0 -8
  224. data/lib/leaflet/spec/happen.js +0 -93
  225. data/lib/leaflet/src/dom/DomEvent.MsTouch.js +0 -146
  226. data/vendor/assets/stylesheets/leaflet.ie.css +0 -51
@@ -53,6 +53,10 @@
53
53
  width: 0;
54
54
  height: 0;
55
55
  }
56
+ /* workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=888319 */
57
+ .leaflet-overlay-pane svg {
58
+ -moz-user-select: none;
59
+ }
56
60
 
57
61
  .leaflet-tile-pane { z-index: 2; }
58
62
  .leaflet-objects-pane { z-index: 3; }
@@ -61,6 +65,16 @@
61
65
  .leaflet-marker-pane { z-index: 6; }
62
66
  .leaflet-popup-pane { z-index: 7; }
63
67
 
68
+ .leaflet-vml-shape {
69
+ width: 1px;
70
+ height: 1px;
71
+ }
72
+ .lvml {
73
+ behavior: url(#default#VML);
74
+ display: inline-block;
75
+ position: absolute;
76
+ }
77
+
64
78
 
65
79
  /* control positioning */
66
80
 
@@ -156,9 +170,8 @@
156
170
  .leaflet-control {
157
171
  cursor: auto;
158
172
  }
159
- .leaflet-dragging,
160
- .leaflet-dragging .leaflet-clickable,
161
- .leaflet-dragging .leaflet-container {
173
+ .leaflet-dragging .leaflet-container,
174
+ .leaflet-dragging .leaflet-clickable {
162
175
  cursor: move;
163
176
  cursor: -webkit-grabbing;
164
177
  cursor: -moz-grabbing;
@@ -178,9 +191,8 @@
178
191
  outline: 2px solid orange;
179
192
  }
180
193
  .leaflet-zoom-box {
181
- border: 2px dotted #05f;
182
- background: white;
183
- opacity: 0.5;
194
+ border: 2px dotted #38f;
195
+ background: rgba(255,255,255,0.5);
184
196
  }
185
197
 
186
198
 
@@ -193,11 +205,11 @@
193
205
  /* general toolbar styles */
194
206
 
195
207
  .leaflet-bar {
196
- box-shadow: 0 1px 7px rgba(0,0,0,0.65);
197
- -webkit-border-radius: 4px;
198
- border-radius: 4px;
208
+ box-shadow: 0 1px 5px rgba(0,0,0,0.65);
209
+ border-radius: 4px;
199
210
  }
200
- .leaflet-bar a {
211
+ .leaflet-bar a,
212
+ .leaflet-bar a:hover {
201
213
  background-color: #fff;
202
214
  border-bottom: 1px solid #ccc;
203
215
  width: 26px;
@@ -218,16 +230,12 @@
218
230
  background-color: #f4f4f4;
219
231
  }
220
232
  .leaflet-bar a:first-child {
221
- -webkit-border-top-left-radius: 4px;
222
- border-top-left-radius: 4px;
223
- -webkit-border-top-right-radius: 4px;
224
- border-top-right-radius: 4px;
233
+ border-top-left-radius: 4px;
234
+ border-top-right-radius: 4px;
225
235
  }
226
236
  .leaflet-bar a:last-child {
227
- -webkit-border-bottom-left-radius: 4px;
228
- border-bottom-left-radius: 4px;
229
- -webkit-border-bottom-right-radius: 4px;
230
- border-bottom-right-radius: 4px;
237
+ border-bottom-left-radius: 4px;
238
+ border-bottom-right-radius: 4px;
231
239
  border-bottom: none;
232
240
  }
233
241
  .leaflet-bar a.leaflet-disabled {
@@ -236,61 +244,48 @@
236
244
  color: #bbb;
237
245
  }
238
246
 
239
- .leaflet-touch .leaflet-bar {
240
- -webkit-border-radius: 10px;
241
- border-radius: 10px;
242
- }
243
247
  .leaflet-touch .leaflet-bar a {
244
248
  width: 30px;
245
249
  height: 30px;
246
- }
247
- .leaflet-touch .leaflet-bar a:first-child {
248
- -webkit-border-top-left-radius: 7px;
249
- border-top-left-radius: 7px;
250
- -webkit-border-top-right-radius: 7px;
251
- border-top-right-radius: 7px;
252
- }
253
- .leaflet-touch .leaflet-bar a:last-child {
254
- -webkit-border-bottom-left-radius: 7px;
255
- border-bottom-left-radius: 7px;
256
- -webkit-border-bottom-right-radius: 7px;
257
- border-bottom-right-radius: 7px;
258
- border-bottom: none;
250
+ line-height: 30px;
259
251
  }
260
252
 
261
253
 
262
254
  /* zoom control */
263
255
 
264
- .leaflet-control-zoom-in {
256
+ .leaflet-control-zoom-in,
257
+ .leaflet-control-zoom-out {
265
258
  font: bold 18px 'Lucida Console', Monaco, monospace;
259
+ text-indent: 1px;
266
260
  }
267
261
  .leaflet-control-zoom-out {
268
- font: bold 22px 'Lucida Console', Monaco, monospace;
262
+ font-size: 20px;
269
263
  }
270
264
 
271
265
  .leaflet-touch .leaflet-control-zoom-in {
272
266
  font-size: 22px;
273
- line-height: 30px;
274
267
  }
275
268
  .leaflet-touch .leaflet-control-zoom-out {
276
- font-size: 28px;
277
- line-height: 30px;
269
+ font-size: 24px;
278
270
  }
279
271
 
280
272
 
281
273
  /* layers control */
282
274
 
283
275
  .leaflet-control-layers {
284
- box-shadow: 0 1px 7px rgba(0,0,0,0.4);
285
- background: #f8f8f9;
286
- -webkit-border-radius: 8px;
287
- border-radius: 8px;
276
+ box-shadow: 0 1px 5px rgba(0,0,0,0.4);
277
+ background: #fff;
278
+ border-radius: 5px;
288
279
  }
289
280
  .leaflet-control-layers-toggle {
290
281
  background-image: url(images/layers.png);
291
282
  width: 36px;
292
283
  height: 36px;
293
284
  }
285
+ .leaflet-retina .leaflet-control-layers-toggle {
286
+ background-image: url(images/layers-2x.png);
287
+ background-size: 26px 26px;
288
+ }
294
289
  .leaflet-touch .leaflet-control-layers-toggle {
295
290
  width: 44px;
296
291
  height: 44px;
@@ -326,8 +321,8 @@
326
321
  /* attribution and scale controls */
327
322
 
328
323
  .leaflet-container .leaflet-control-attribution {
329
- background-color: rgba(255, 255, 255, 0.7);
330
- box-shadow: 0 0 5px #bbb;
324
+ background: #fff;
325
+ background: rgba(255, 255, 255, 0.7);
331
326
  margin: 0;
332
327
  }
333
328
  .leaflet-control-attribution,
@@ -335,6 +330,12 @@
335
330
  padding: 0 5px;
336
331
  color: #333;
337
332
  }
333
+ .leaflet-control-attribution a {
334
+ text-decoration: none;
335
+ }
336
+ .leaflet-control-attribution a:hover {
337
+ text-decoration: underline;
338
+ }
338
339
  .leaflet-container .leaflet-control-attribution,
339
340
  .leaflet-container .leaflet-control-scale {
340
341
  font-size: 11px;
@@ -348,21 +349,21 @@
348
349
  .leaflet-control-scale-line {
349
350
  border: 2px solid #777;
350
351
  border-top: none;
351
- color: black;
352
352
  line-height: 1.1;
353
353
  padding: 2px 5px 1px;
354
354
  font-size: 11px;
355
- text-shadow: 1px 1px 1px #fff;
356
- background-color: rgba(255, 255, 255, 0.5);
357
- box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.2);
358
355
  white-space: nowrap;
359
356
  overflow: hidden;
357
+ -moz-box-sizing: content-box;
358
+ box-sizing: content-box;
359
+
360
+ background: #fff;
361
+ background: rgba(255, 255, 255, 0.5);
360
362
  }
361
363
  .leaflet-control-scale-line:not(:first-child) {
362
364
  border-top: 2px solid #777;
363
365
  border-bottom: none;
364
366
  margin-top: -2px;
365
- box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
366
367
  }
367
368
  .leaflet-control-scale-line:not(:first-child):not(:last-child) {
368
369
  border-bottom: 2px solid #777;
@@ -370,12 +371,13 @@
370
371
 
371
372
  .leaflet-touch .leaflet-control-attribution,
372
373
  .leaflet-touch .leaflet-control-layers,
373
- .leaflet-touch .leaflet-control-zoom {
374
+ .leaflet-touch .leaflet-bar {
374
375
  box-shadow: none;
375
376
  }
376
377
  .leaflet-touch .leaflet-control-layers,
377
- .leaflet-touch .leaflet-control-zoom {
378
- border: 4px solid rgba(0,0,0,0.3);
378
+ .leaflet-touch .leaflet-bar {
379
+ border: 2px solid rgba(0,0,0,0.2);
380
+ background-clip: padding-box;
379
381
  }
380
382
 
381
383
 
@@ -388,11 +390,10 @@
388
390
  .leaflet-popup-content-wrapper {
389
391
  padding: 1px;
390
392
  text-align: left;
391
- -webkit-border-radius: 20px;
392
- border-radius: 20px;
393
+ border-radius: 12px;
393
394
  }
394
395
  .leaflet-popup-content {
395
- margin: 14px 20px;
396
+ margin: 13px 19px;
396
397
  line-height: 1.4;
397
398
  }
398
399
  .leaflet-popup-content p {
@@ -406,11 +407,11 @@
406
407
  overflow: hidden;
407
408
  }
408
409
  .leaflet-popup-tip {
409
- width: 15px;
410
- height: 15px;
410
+ width: 17px;
411
+ height: 17px;
411
412
  padding: 1px;
412
413
 
413
- margin: -8px auto 0;
414
+ margin: -10px auto 0;
414
415
 
415
416
  -webkit-transform: rotate(45deg);
416
417
  -moz-transform: rotate(45deg);
@@ -418,7 +419,8 @@
418
419
  -o-transform: rotate(45deg);
419
420
  transform: rotate(45deg);
420
421
  }
421
- .leaflet-popup-content-wrapper, .leaflet-popup-tip {
422
+ .leaflet-popup-content-wrapper,
423
+ .leaflet-popup-tip {
422
424
  background: white;
423
425
 
424
426
  box-shadow: 0 3px 14px rgba(0,0,0,0.4);
@@ -427,7 +429,7 @@
427
429
  position: absolute;
428
430
  top: 0;
429
431
  right: 0;
430
- padding: 4px 5px 0 0;
432
+ padding: 4px 4px 0 0;
431
433
  text-align: center;
432
434
  width: 18px;
433
435
  height: 14px;
@@ -446,6 +448,27 @@
446
448
  border-top: 1px solid #ddd;
447
449
  }
448
450
 
451
+ .leaflet-oldie .leaflet-popup-content-wrapper {
452
+ zoom: 1;
453
+ }
454
+ .leaflet-oldie .leaflet-popup-tip {
455
+ width: 24px;
456
+ margin: 0 auto;
457
+
458
+ -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";
459
+ filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678);
460
+ }
461
+ .leaflet-oldie .leaflet-popup-tip-container {
462
+ margin-top: -1px;
463
+ }
464
+
465
+ .leaflet-oldie .leaflet-control-zoom,
466
+ .leaflet-oldie .leaflet-control-layers,
467
+ .leaflet-oldie .leaflet-popup-content-wrapper,
468
+ .leaflet-oldie .leaflet-popup-tip {
469
+ border: 1px solid #999;
470
+ }
471
+
449
472
 
450
473
  /* div icon */
451
474
 
@@ -453,7 +476,3 @@
453
476
  background: #fff;
454
477
  border: 1px solid #666;
455
478
  }
456
- .leaflet-editing-icon {
457
- -webkit-border-radius: 2px;
458
- border-radius: 2px;
459
- }
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "name": "leaflet-draw",
3
- "version": "0.2.0",
3
+ "version": "0.2.2",
4
4
  "description": "Vector drawing plugin for Leaflet",
5
5
  "devDependencies": {
6
- "leaflet:": "git://github.com/Leaflet/Leaflet.git",
6
+ "leaflet": "git://github.com/Leaflet/Leaflet.git",
7
7
  "jshint": "~1.1.0",
8
8
  "uglify-js": "~2.2.5",
9
9
  "jake": "~0.5.10",
@@ -12,4 +12,4 @@ describe("Control.Draw", function(){
12
12
  it("exists", function() {
13
13
  expect(container.innerHTML).to.be.ok();
14
14
  });
15
- });
15
+ });
@@ -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,9 @@
1
+ describe("L.LatLngUtil", function(){
2
+ it("cloneLatLngs", function() {
3
+ var latLngs = [{ lat: 0, lng: 0 }];
4
+ var clone = L.LatLngUtil.cloneLatLngs(latLngs);
5
+ expect(clone[0].lat).to.eql(latLngs[0].lat);
6
+ clone[0].lat = 10;
7
+ expect(latLngs[0].lat).to.eql(0);
8
+ });
9
+ });
@@ -90,6 +90,7 @@ L.Control.Draw = L.Control.extend({
90
90
  });
91
91
 
92
92
  L.Map.mergeOptions({
93
+ drawControlTooltips: true,
93
94
  drawControl: false
94
95
  });
95
96
 
@@ -2,4 +2,92 @@
2
2
  * Leaflet.draw assumes that you have already included the Leaflet library.
3
3
  */
4
4
 
5
- L.drawVersion = '0.2.0-dev';
5
+ L.drawVersion = '0.2.3-dev';
6
+
7
+ L.drawLocal = {
8
+ draw: {
9
+ toolbar: {
10
+ actions: {
11
+ title: 'Cancel drawing',
12
+ text: 'Cancel'
13
+ },
14
+ buttons: {
15
+ polyline: 'Draw a polyline',
16
+ polygon: 'Draw a polygon',
17
+ rectangle: 'Draw a rectangle',
18
+ circle: 'Draw a circle',
19
+ marker: 'Draw a marker'
20
+ }
21
+ },
22
+ handlers: {
23
+ circle: {
24
+ tooltip: {
25
+ start: 'Click and drag to draw circle.'
26
+ }
27
+ },
28
+ marker: {
29
+ tooltip: {
30
+ start: 'Click map to place marker.'
31
+ }
32
+ },
33
+ polygon: {
34
+ tooltip: {
35
+ start: 'Click to start drawing shape.',
36
+ cont: 'Click to continue drawing shape.',
37
+ end: 'Click first point to close this shape.'
38
+ }
39
+ },
40
+ polyline: {
41
+ error: '<strong>Error:</strong> shape edges cannot cross!',
42
+ tooltip: {
43
+ start: 'Click to start drawing line.',
44
+ cont: 'Click to continue drawing line.',
45
+ end: 'Click last point to finish line.'
46
+ }
47
+ },
48
+ rectangle: {
49
+ tooltip: {
50
+ start: 'Click and drag to draw rectangle.'
51
+ }
52
+ },
53
+ simpleshape: {
54
+ tooltip: {
55
+ end: 'Release mouse to finish drawing.'
56
+ }
57
+ }
58
+ }
59
+ },
60
+ edit: {
61
+ toolbar: {
62
+ actions: {
63
+ save: {
64
+ title: 'Save changes.',
65
+ text: 'Save'
66
+ },
67
+ cancel: {
68
+ title: 'Cancel editing, discards all changes.',
69
+ text: 'Cancel'
70
+ }
71
+ },
72
+ buttons: {
73
+ edit: 'Edit layers.',
74
+ editDisabled: 'No layers to edit.',
75
+ remove: 'Delete layers.',
76
+ removeDisabled: 'No layers to delete.'
77
+ }
78
+ },
79
+ handlers: {
80
+ edit: {
81
+ tooltip: {
82
+ text: 'Drag handles, or marker to edit feature.',
83
+ subtext: 'Click cancel to undo changes.'
84
+ }
85
+ },
86
+ remove: {
87
+ tooltip: {
88
+ text: 'Click on a feature to remove'
89
+ }
90
+ }
91
+ }
92
+ }
93
+ };