leaflet-js 0.7.9 → 0.8.dev2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (341) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.rdoc +0 -10
  3. data/Rakefile +3 -3
  4. data/leaflet-js.gemspec +7 -13
  5. data/lib/leaflet-js.rb +10 -2
  6. data/lib/leaflet.draw/BREAKINGCHANGES.md +54 -0
  7. data/lib/leaflet.draw/CHANGELOG.md +130 -0
  8. data/lib/leaflet.draw/Jakefile.js +48 -0
  9. data/lib/leaflet.draw/MIT-LICENCE.txt +20 -0
  10. data/lib/leaflet.draw/README.md +427 -0
  11. data/lib/leaflet.draw/TODO.md +62 -0
  12. data/lib/leaflet.draw/build/build.html +243 -0
  13. data/lib/leaflet.draw/build/build.js +187 -0
  14. data/lib/leaflet.draw/build/deps.js +76 -0
  15. data/lib/leaflet.draw/build/hintrc.js +39 -0
  16. data/lib/leaflet.draw/build/leaflet.draw-include.js +42 -0
  17. data/{vendor/assets/Leaflet.draw → lib/leaflet.draw}/dist/images/spritesheet-2x.png +0 -0
  18. data/{vendor/assets/Leaflet.draw → lib/leaflet.draw}/dist/images/spritesheet.png +0 -0
  19. data/lib/leaflet.draw/dist/leaflet.draw-src.js +2872 -0
  20. data/lib/leaflet.draw/dist/leaflet.draw.css +295 -0
  21. data/lib/leaflet.draw/dist/leaflet.draw.js +10 -0
  22. data/lib/leaflet.draw/examples/basic.html +113 -0
  23. data/lib/leaflet.draw/examples/edithandlers.html +66 -0
  24. data/{vendor/assets/Leaflet/dist → lib/leaflet.draw/examples/libs}/images/layers-2x.png +0 -0
  25. data/{vendor/assets/Leaflet/dist → lib/leaflet.draw/examples/libs}/images/layers.png +0 -0
  26. data/{vendor/assets/Leaflet/dist → lib/leaflet.draw/examples/libs}/images/marker-icon-2x.png +0 -0
  27. data/{vendor/assets/Leaflet/dist → lib/leaflet.draw/examples/libs}/images/marker-icon.png +0 -0
  28. data/lib/leaflet.draw/examples/libs/images/marker-icon@2x.png +0 -0
  29. data/{vendor/assets/Leaflet/dist → lib/leaflet.draw/examples/libs}/images/marker-shadow.png +0 -0
  30. data/lib/leaflet.draw/examples/libs/leaflet-src.js +9191 -0
  31. data/{vendor/assets/leaflet.css.erb → lib/leaflet.draw/examples/libs/leaflet.css} +2 -2
  32. data/lib/leaflet.draw/package.json +40 -0
  33. data/lib/leaflet.draw/spec/after.js +2 -0
  34. data/lib/leaflet.draw/spec/before.js +3 -0
  35. data/lib/leaflet.draw/spec/expect.js +1253 -0
  36. data/lib/leaflet.draw/spec/happen.js +93 -0
  37. data/lib/leaflet.draw/spec/index.html +38 -0
  38. data/lib/leaflet.draw/spec/karma.conf.js +72 -0
  39. data/lib/leaflet.draw/spec/sinon.js +4223 -0
  40. data/lib/leaflet.draw/spec/spec.hintrc.js +25 -0
  41. data/lib/leaflet.draw/spec/suites/DrawControlSpec.js +14 -0
  42. data/lib/leaflet.draw/spec/suites/GeometryUtilSpec.js +25 -0
  43. data/lib/leaflet.draw/spec/suites/LatLngUtilSpec.js +11 -0
  44. data/lib/leaflet.draw/spec/suites/SpecHelper.js +28 -0
  45. data/{vendor/assets/Leaflet.draw → lib/leaflet.draw}/src/Control.Draw.js +9 -9
  46. data/{vendor/assets/Leaflet.draw → lib/leaflet.draw}/src/Leaflet.draw.js +1 -2
  47. data/{vendor/assets/Leaflet.draw → lib/leaflet.draw}/src/Toolbar.js +0 -0
  48. data/{vendor/assets/Leaflet.draw → lib/leaflet.draw}/src/Tooltip.js +0 -0
  49. data/{vendor/assets/Leaflet.draw → lib/leaflet.draw}/src/copyright.js +0 -0
  50. data/{vendor/assets/Leaflet.draw → lib/leaflet.draw}/src/draw/DrawToolbar.js +0 -4
  51. data/{vendor/assets/Leaflet.draw → lib/leaflet.draw}/src/draw/handler/Draw.Circle.js +1 -1
  52. data/{vendor/assets/Leaflet.draw → lib/leaflet.draw}/src/draw/handler/Draw.Feature.js +2 -2
  53. data/{vendor/assets/Leaflet.draw → lib/leaflet.draw}/src/draw/handler/Draw.Marker.js +0 -0
  54. data/{vendor/assets/Leaflet.draw → lib/leaflet.draw}/src/draw/handler/Draw.Polygon.js +0 -0
  55. data/{vendor/assets/Leaflet.draw → lib/leaflet.draw}/src/draw/handler/Draw.Polyline.js +0 -0
  56. data/{vendor/assets/Leaflet.draw → lib/leaflet.draw}/src/draw/handler/Draw.Rectangle.js +1 -19
  57. data/{vendor/assets/Leaflet.draw → lib/leaflet.draw}/src/draw/handler/Draw.SimpleShape.js +1 -7
  58. data/{vendor/assets/Leaflet.draw → lib/leaflet.draw}/src/edit/EditToolbar.js +2 -9
  59. data/{vendor/assets/Leaflet.draw → lib/leaflet.draw}/src/edit/handler/Edit.Circle.js +0 -0
  60. data/{vendor/assets/Leaflet.draw → lib/leaflet.draw}/src/edit/handler/Edit.Poly.js +2 -14
  61. data/{vendor/assets/Leaflet.draw → lib/leaflet.draw}/src/edit/handler/Edit.Rectangle.js +0 -0
  62. data/{vendor/assets/Leaflet.draw → lib/leaflet.draw}/src/edit/handler/Edit.SimpleShape.js +3 -11
  63. data/{vendor/assets/Leaflet.draw → lib/leaflet.draw}/src/edit/handler/EditToolbar.Delete.js +1 -4
  64. data/{vendor/assets/Leaflet.draw → lib/leaflet.draw}/src/edit/handler/EditToolbar.Edit.js +83 -17
  65. data/{vendor/assets/Leaflet.draw → lib/leaflet.draw}/src/ext/GeometryUtil.js +1 -1
  66. data/{vendor/assets/Leaflet.draw → lib/leaflet.draw}/src/ext/LatLngUtil.js +0 -0
  67. data/{vendor/assets/Leaflet.draw → lib/leaflet.draw}/src/ext/LineUtil.Intersect.js +0 -0
  68. data/{vendor/assets/Leaflet.draw → lib/leaflet.draw}/src/ext/Polygon.Intersect.js +0 -0
  69. data/{vendor/assets/Leaflet.draw → lib/leaflet.draw}/src/ext/Polyline.Intersect.js +0 -0
  70. data/{vendor/assets/Leaflet.draw → lib/leaflet.draw}/src/images/spritesheet.svg +0 -0
  71. data/lib/leaflet.label/CHANGELOG.md +67 -0
  72. data/lib/leaflet.label/Jakefile.js +21 -0
  73. data/lib/leaflet.label/MIT-LICENCE.txt +20 -0
  74. data/lib/leaflet.label/README.md +103 -0
  75. data/lib/leaflet.label/build/build.js +155 -0
  76. data/lib/leaflet.label/build/deps.js +26 -0
  77. data/lib/leaflet.label/build/hint.js +30 -0
  78. data/lib/leaflet.label/build/hintrc.js +51 -0
  79. data/lib/leaflet.label/dist/images/death.png +0 -0
  80. data/lib/leaflet.label/dist/leaflet.label-src.js +542 -0
  81. data/{vendor/assets → lib/leaflet.label/dist}/leaflet.label.css +0 -0
  82. data/lib/leaflet.label/dist/leaflet.label.js +9 -0
  83. data/lib/leaflet.label/example/label.html +85 -0
  84. data/lib/leaflet.label/libs/leaflet/images/layers-2x.png +0 -0
  85. data/lib/leaflet.label/libs/leaflet/images/layers.png +0 -0
  86. data/lib/leaflet.label/libs/leaflet/images/marker-icon-2x.png +0 -0
  87. data/lib/leaflet.label/libs/leaflet/images/marker-icon.png +0 -0
  88. data/lib/leaflet.label/libs/leaflet/images/marker-icon@2x.png +0 -0
  89. data/lib/leaflet.label/libs/leaflet/images/marker-shadow.png +0 -0
  90. data/lib/leaflet.label/libs/leaflet/leaflet-src.js +9108 -0
  91. data/lib/leaflet.label/libs/leaflet/leaflet.css +478 -0
  92. data/lib/leaflet.label/libs/leaflet/leaflet.js +9 -0
  93. data/lib/leaflet.label/package.json +19 -0
  94. data/{vendor/assets/Leaflet.label → lib/leaflet.label}/src/BaseMarkerMethods.js +0 -0
  95. data/{vendor/assets/Leaflet.label → lib/leaflet.label}/src/CircleMarker.Label.js +0 -0
  96. data/{vendor/assets/Leaflet.label → lib/leaflet.label}/src/FeatureGroup.Label.js +0 -0
  97. data/{vendor/assets/Leaflet.label → lib/leaflet.label}/src/Label.js +2 -5
  98. data/{vendor/assets/Leaflet.label → lib/leaflet.label}/src/Leaflet.label.js +1 -1
  99. data/{vendor/assets/Leaflet.label → lib/leaflet.label}/src/Map.Label.js +0 -0
  100. data/{vendor/assets/Leaflet.label → lib/leaflet.label}/src/Marker.Label.js +0 -0
  101. data/{vendor/assets/Leaflet.label → lib/leaflet.label}/src/Path.Label.js +0 -0
  102. data/{vendor/assets/Leaflet.label → lib/leaflet.label}/src/copyright.js +0 -0
  103. data/lib/leaflet/CHANGELOG.md +1007 -0
  104. data/lib/leaflet/CONTRIBUTING.md +155 -0
  105. data/lib/leaflet/FAQ.md +138 -0
  106. data/lib/leaflet/Jakefile.js +56 -0
  107. data/lib/leaflet/LICENSE +23 -0
  108. data/lib/leaflet/PLUGIN-GUIDE.md +127 -0
  109. data/lib/leaflet/README.md +34 -0
  110. data/lib/leaflet/build/build.html +227 -0
  111. data/lib/leaflet/build/build.js +190 -0
  112. data/lib/leaflet/build/deps.js +258 -0
  113. data/lib/leaflet/build/hintrc.js +40 -0
  114. data/lib/leaflet/debug/css/mobile.css +6 -0
  115. data/lib/leaflet/debug/css/screen.css +5 -0
  116. data/lib/leaflet/debug/hacks/jitter.html +42 -0
  117. data/lib/leaflet/debug/leaflet-include.js +59 -0
  118. data/lib/leaflet/debug/map/canvas.html +49 -0
  119. data/lib/leaflet/debug/map/controls.html +49 -0
  120. data/lib/leaflet/debug/map/geolocation.html +34 -0
  121. data/lib/leaflet/debug/map/grid.html +45 -0
  122. data/lib/leaflet/debug/map/iframe.html +11 -0
  123. data/lib/leaflet/debug/map/image-overlay.html +43 -0
  124. data/lib/leaflet/debug/map/map-mobile.html +34 -0
  125. data/lib/leaflet/debug/map/map.html +61 -0
  126. data/lib/leaflet/debug/map/max-bounds.html +38 -0
  127. data/lib/leaflet/debug/map/opacity.html +223 -0
  128. data/lib/leaflet/debug/map/scroll.html +41 -0
  129. data/lib/leaflet/debug/map/simple-proj.html +59 -0
  130. data/lib/leaflet/debug/map/wms-marble.html +30 -0
  131. data/lib/leaflet/debug/map/wms.html +40 -0
  132. data/lib/leaflet/debug/map/zoomlevels.html +45 -0
  133. data/lib/leaflet/debug/tests/add_remove_layers.html +87 -0
  134. data/lib/leaflet/debug/tests/bringtoback.html +37 -0
  135. data/lib/leaflet/debug/tests/canvasloop.html +47 -0
  136. data/lib/leaflet/debug/tests/click_on_canvas.html +58 -0
  137. data/lib/leaflet/debug/tests/click_on_canvas_broken.html +49 -0
  138. data/lib/leaflet/debug/tests/dragging_and_copyworldjump.html +61 -0
  139. data/lib/leaflet/debug/tests/opacity.html +56 -0
  140. data/lib/leaflet/debug/tests/popupcontextmenuclicks.html +59 -0
  141. data/lib/leaflet/debug/tests/remove_while_dragging.html +28 -0
  142. data/lib/leaflet/debug/tests/removetilewhilepan.html +41 -0
  143. data/lib/leaflet/debug/tests/reuse_popups.html +40 -0
  144. data/lib/leaflet/debug/tests/rtl.html +42 -0
  145. data/lib/leaflet/debug/tests/rtl2.html +27 -0
  146. data/lib/leaflet/debug/tests/set_icon_reuse_dom.html +43 -0
  147. data/lib/leaflet/debug/tests/svg_clicks.html +54 -0
  148. data/lib/leaflet/debug/vector/bounds-extend.html +88 -0
  149. data/lib/leaflet/debug/vector/feature-group-bounds.html +90 -0
  150. data/lib/leaflet/debug/vector/geojson-sample.js +53 -0
  151. data/lib/leaflet/debug/vector/geojson.html +173 -0
  152. data/lib/leaflet/debug/vector/rectangle.html +53 -0
  153. data/lib/leaflet/debug/vector/route.js +1 -0
  154. data/lib/leaflet/debug/vector/touchzoomemu.html +194 -0
  155. data/lib/leaflet/debug/vector/us-states.js +54 -0
  156. data/lib/leaflet/debug/vector/vector-bounds.html +69 -0
  157. data/lib/leaflet/debug/vector/vector-canvas.html +92 -0
  158. data/lib/leaflet/debug/vector/vector-mobile.html +38 -0
  159. data/lib/leaflet/debug/vector/vector-simple.html +47 -0
  160. data/lib/leaflet/debug/vector/vector.html +37 -0
  161. data/lib/leaflet/debug/vector/vector2.html +58 -0
  162. data/lib/leaflet/dist/images/layers-2x.png +0 -0
  163. data/lib/leaflet/dist/images/layers.png +0 -0
  164. data/lib/leaflet/dist/images/marker-icon-2x.png +0 -0
  165. data/lib/leaflet/dist/images/marker-icon.png +0 -0
  166. data/lib/leaflet/dist/images/marker-shadow.png +0 -0
  167. data/lib/leaflet/dist/leaflet.css +494 -0
  168. data/lib/leaflet/package.json +28 -0
  169. data/lib/leaflet/spec/after.js +2 -0
  170. data/lib/leaflet/spec/expect.js +1253 -0
  171. data/lib/leaflet/spec/index.html +87 -0
  172. data/lib/leaflet/spec/karma.conf.js +68 -0
  173. data/lib/leaflet/spec/sinon.js +4223 -0
  174. data/lib/leaflet/spec/spec.hintrc.js +25 -0
  175. data/lib/leaflet/spec/suites/SpecHelper.js +42 -0
  176. data/lib/leaflet/spec/suites/control/Control.AttributionSpec.js +68 -0
  177. data/lib/leaflet/spec/suites/control/Control.LayersSpec.js +67 -0
  178. data/lib/leaflet/spec/suites/control/Control.ScaleSpec.js +6 -0
  179. data/lib/leaflet/spec/suites/core/ClassSpec.js +166 -0
  180. data/lib/leaflet/spec/suites/core/EventsSpec.js +416 -0
  181. data/lib/leaflet/spec/suites/core/UtilSpec.js +237 -0
  182. data/lib/leaflet/spec/suites/dom/DomEventSpec.js +102 -0
  183. data/lib/leaflet/spec/suites/dom/DomUtilSpec.js +59 -0
  184. data/lib/leaflet/spec/suites/dom/PosAnimationSpec.js +27 -0
  185. data/lib/leaflet/spec/suites/geo/CRSSpec.js +151 -0
  186. data/lib/leaflet/spec/suites/geo/LatLngBoundsSpec.js +144 -0
  187. data/lib/leaflet/spec/suites/geo/LatLngSpec.js +102 -0
  188. data/lib/leaflet/spec/suites/geo/ProjectionSpec.js +96 -0
  189. data/lib/leaflet/spec/suites/geometry/BoundsSpec.js +87 -0
  190. data/lib/leaflet/spec/suites/geometry/LineUtilSpec.js +75 -0
  191. data/lib/leaflet/spec/suites/geometry/PointSpec.js +104 -0
  192. data/lib/leaflet/spec/suites/geometry/PolyUtilSpec.js +27 -0
  193. data/lib/leaflet/spec/suites/geometry/TransformationSpec.js +31 -0
  194. data/lib/leaflet/spec/suites/layer/FeatureGroupSpec.js +86 -0
  195. data/lib/leaflet/spec/suites/layer/GeoJSONSpec.js +282 -0
  196. data/lib/leaflet/spec/suites/layer/LayerGroupSpec.js +71 -0
  197. data/lib/leaflet/spec/suites/layer/PopupSpec.js +119 -0
  198. data/lib/leaflet/spec/suites/layer/marker/MarkerSpec.js +117 -0
  199. data/lib/leaflet/spec/suites/layer/tile/GridLayerSpec.js +70 -0
  200. data/lib/leaflet/spec/suites/layer/tile/TileLayerSpec.js +88 -0
  201. data/lib/leaflet/spec/suites/layer/vector/CircleMarkerSpec.js +53 -0
  202. data/lib/leaflet/spec/suites/layer/vector/CircleSpec.js +18 -0
  203. data/lib/leaflet/spec/suites/layer/vector/PolygonSpec.js +96 -0
  204. data/lib/leaflet/spec/suites/layer/vector/PolylineGeometrySpec.js +35 -0
  205. data/lib/leaflet/spec/suites/layer/vector/PolylineSpec.js +55 -0
  206. data/lib/leaflet/spec/suites/map/MapSpec.js +553 -0
  207. data/lib/leaflet/spec/suites/map/handler/Map.DragSpec.js +38 -0
  208. data/{vendor/assets/Leaflet → lib/leaflet}/src/Leaflet.js +16 -11
  209. data/{vendor/assets/Leaflet → lib/leaflet}/src/control/Control.Attribution.js +1 -23
  210. data/{vendor/assets/Leaflet → lib/leaflet}/src/control/Control.Layers.js +42 -57
  211. data/lib/leaflet/src/control/Control.Scale.js +102 -0
  212. data/{vendor/assets/Leaflet → lib/leaflet}/src/control/Control.Zoom.js +11 -18
  213. data/{vendor/assets/Leaflet → lib/leaflet}/src/control/Control.js +7 -9
  214. data/lib/leaflet/src/copyright.js +4 -0
  215. data/lib/leaflet/src/core/Browser.js +65 -0
  216. data/{vendor/assets/Leaflet → lib/leaflet}/src/core/Class.js +8 -13
  217. data/lib/leaflet/src/core/Events.js +226 -0
  218. data/{vendor/assets/Leaflet → lib/leaflet}/src/core/Handler.js +0 -0
  219. data/lib/leaflet/src/core/Util.js +196 -0
  220. data/{vendor/assets/Leaflet → lib/leaflet}/src/dom/DomEvent.DoubleTap.js +20 -27
  221. data/lib/leaflet/src/dom/DomEvent.Pointer.js +107 -0
  222. data/{vendor/assets/Leaflet → lib/leaflet}/src/dom/DomEvent.js +70 -59
  223. data/lib/leaflet/src/dom/DomUtil.js +213 -0
  224. data/{vendor/assets/Leaflet → lib/leaflet}/src/dom/Draggable.js +10 -19
  225. data/{vendor/assets/Leaflet → lib/leaflet}/src/dom/PosAnimation.Timer.js +0 -0
  226. data/{vendor/assets/Leaflet → lib/leaflet}/src/dom/PosAnimation.js +4 -3
  227. data/lib/leaflet/src/geo/LatLng.js +67 -0
  228. data/{vendor/assets/Leaflet → lib/leaflet}/src/geo/LatLngBounds.js +0 -0
  229. data/lib/leaflet/src/geo/crs/CRS.EPSG3395.js +13 -0
  230. data/lib/leaflet/src/geo/crs/CRS.EPSG3857.js +17 -0
  231. data/{vendor/assets/Leaflet → lib/leaflet}/src/geo/crs/CRS.EPSG4326.js +2 -3
  232. data/lib/leaflet/src/geo/crs/CRS.Earth.js +19 -0
  233. data/{vendor/assets/Leaflet → lib/leaflet}/src/geo/crs/CRS.Simple.js +10 -1
  234. data/lib/leaflet/src/geo/crs/CRS.js +63 -0
  235. data/{vendor/assets/Leaflet → lib/leaflet}/src/geo/projection/Projection.LonLat.js +5 -1
  236. data/lib/leaflet/src/geo/projection/Projection.Mercator.js +43 -0
  237. data/lib/leaflet/src/geo/projection/Projection.SphericalMercator.js +31 -0
  238. data/{vendor/assets/Leaflet → lib/leaflet}/src/geometry/Bounds.js +0 -0
  239. data/{vendor/assets/Leaflet → lib/leaflet}/src/geometry/LineUtil.js +16 -5
  240. data/{vendor/assets/Leaflet → lib/leaflet}/src/geometry/Point.js +10 -0
  241. data/{vendor/assets/Leaflet → lib/leaflet}/src/geometry/PolyUtil.js +0 -0
  242. data/{vendor/assets/Leaflet → lib/leaflet}/src/geometry/Transformation.js +0 -0
  243. data/{vendor/assets/Leaflet → lib/leaflet}/src/images/layers.svg +0 -0
  244. data/lib/leaflet/src/images/logo.svg +85 -0
  245. data/{vendor/assets/Leaflet → lib/leaflet}/src/images/marker.svg +0 -0
  246. data/{vendor/assets/Leaflet → lib/leaflet}/src/layer/FeatureGroup.js +3 -20
  247. data/lib/leaflet/src/layer/GeoJSON.js +275 -0
  248. data/lib/leaflet/src/layer/ImageOverlay.js +123 -0
  249. data/lib/leaflet/src/layer/Layer.Popup.js +87 -0
  250. data/lib/leaflet/src/layer/Layer.js +150 -0
  251. data/{vendor/assets/Leaflet → lib/leaflet}/src/layer/LayerGroup.js +12 -14
  252. data/{vendor/assets/Leaflet → lib/leaflet}/src/layer/Popup.js +65 -83
  253. data/{vendor/assets/Leaflet → lib/leaflet}/src/layer/marker/DivIcon.js +3 -8
  254. data/{vendor/assets/Leaflet → lib/leaflet}/src/layer/marker/Icon.Default.js +6 -12
  255. data/{vendor/assets/Leaflet → lib/leaflet}/src/layer/marker/Icon.js +8 -25
  256. data/{vendor/assets/Leaflet → lib/leaflet}/src/layer/marker/Marker.Drag.js +13 -11
  257. data/lib/leaflet/src/layer/marker/Marker.Popup.js +16 -0
  258. data/{vendor/assets/Leaflet → lib/leaflet}/src/layer/marker/Marker.js +52 -103
  259. data/lib/leaflet/src/layer/tile/GridLayer.js +536 -0
  260. data/lib/leaflet/src/layer/tile/TileLayer.WMS.js +79 -0
  261. data/lib/leaflet/src/layer/tile/TileLayer.js +148 -0
  262. data/lib/leaflet/src/layer/vector/Canvas.js +292 -0
  263. data/lib/leaflet/src/layer/vector/Circle.js +67 -0
  264. data/lib/leaflet/src/layer/vector/CircleMarker.js +72 -0
  265. data/lib/leaflet/src/layer/vector/Path.js +79 -0
  266. data/lib/leaflet/src/layer/vector/Polygon.js +75 -0
  267. data/lib/leaflet/src/layer/vector/Polyline.js +223 -0
  268. data/{vendor/assets/Leaflet → lib/leaflet}/src/layer/vector/Rectangle.js +27 -27
  269. data/lib/leaflet/src/layer/vector/Renderer.js +75 -0
  270. data/lib/leaflet/src/layer/vector/SVG.VML.js +134 -0
  271. data/lib/leaflet/src/layer/vector/SVG.js +189 -0
  272. data/{vendor/assets/Leaflet → lib/leaflet}/src/map/Map.js +83 -199
  273. data/{vendor/assets/Leaflet → lib/leaflet}/src/map/anim/Map.PanAnimation.js +0 -0
  274. data/{vendor/assets/Leaflet → lib/leaflet}/src/map/anim/Map.ZoomAnimation.js +30 -38
  275. data/{vendor/assets/Leaflet → lib/leaflet}/src/map/ext/Map.Geolocation.js +8 -8
  276. data/lib/leaflet/src/map/handler/Map.BoxZoom.js +105 -0
  277. data/{vendor/assets/Leaflet → lib/leaflet}/src/map/handler/Map.DoubleClickZoom.js +0 -0
  278. data/{vendor/assets/Leaflet → lib/leaflet}/src/map/handler/Map.Drag.js +12 -10
  279. data/{vendor/assets/Leaflet → lib/leaflet}/src/map/handler/Map.Keyboard.js +19 -17
  280. data/{vendor/assets/Leaflet → lib/leaflet}/src/map/handler/Map.ScrollWheelZoom.js +10 -6
  281. data/{vendor/assets/Leaflet → lib/leaflet}/src/map/handler/Map.Tap.js +8 -6
  282. data/{vendor/assets/Leaflet → lib/leaflet}/src/map/handler/Map.TouchZoom.js +16 -32
  283. data/vendor/assets/images/layers-2x.png +0 -0
  284. data/vendor/assets/images/layers.png +0 -0
  285. data/vendor/assets/images/marker-icon-2x.png +0 -0
  286. data/vendor/assets/images/marker-icon.png +0 -0
  287. data/vendor/assets/images/marker-shadow.png +0 -0
  288. data/vendor/assets/images/spritesheet-2x.png +0 -0
  289. data/vendor/assets/images/spritesheet.png +0 -0
  290. data/vendor/assets/{leaflet-js.js → javascripts/leaflet-js.js} +2 -2
  291. data/vendor/assets/javascripts/leaflet.draw.js +37 -0
  292. data/vendor/assets/javascripts/leaflet.js +149 -0
  293. data/vendor/assets/javascripts/leaflet.label.js +11 -0
  294. data/vendor/assets/{leaflet-js.css → stylesheets/leaflet-js.css} +0 -0
  295. data/vendor/assets/stylesheets/leaflet.css.erb +478 -0
  296. data/vendor/assets/{leaflet.draw.css.erb → stylesheets/leaflet.draw.css.erb} +2 -2
  297. data/vendor/assets/{leaflet.draw.ie.css → stylesheets/leaflet.draw.ie.css} +0 -0
  298. data/vendor/assets/stylesheets/leaflet.label.css +52 -0
  299. metadata +298 -137
  300. data/lib/leaflet-js/engine.rb +0 -7
  301. data/lib/leaflet-js/version.rb +0 -3
  302. data/vendor/assets/Leaflet.draw/src/edit/handler/Edit.Marker.js +0 -75
  303. data/vendor/assets/Leaflet/src/control/Control.Scale.js +0 -112
  304. data/vendor/assets/Leaflet/src/copyright.js +0 -5
  305. data/vendor/assets/Leaflet/src/core/Browser.js +0 -66
  306. data/vendor/assets/Leaflet/src/core/Events.js +0 -178
  307. data/vendor/assets/Leaflet/src/core/Util.js +0 -182
  308. data/vendor/assets/Leaflet/src/dom/DomEvent.Pointer.js +0 -156
  309. data/vendor/assets/Leaflet/src/dom/DomUtil.js +0 -289
  310. data/vendor/assets/Leaflet/src/geo/LatLng.js +0 -99
  311. data/vendor/assets/Leaflet/src/geo/crs/CRS.EPSG3395.js +0 -14
  312. data/vendor/assets/Leaflet/src/geo/crs/CRS.EPSG3857.js +0 -21
  313. data/vendor/assets/Leaflet/src/geo/crs/CRS.js +0 -32
  314. data/vendor/assets/Leaflet/src/geo/projection/Projection.Mercator.js +0 -56
  315. data/vendor/assets/Leaflet/src/geo/projection/Projection.SphericalMercator.js +0 -27
  316. data/vendor/assets/Leaflet/src/geo/projection/Projection.js +0 -5
  317. data/vendor/assets/Leaflet/src/layer/GeoJSON.js +0 -286
  318. data/vendor/assets/Leaflet/src/layer/ImageOverlay.js +0 -141
  319. data/vendor/assets/Leaflet/src/layer/marker/Marker.Popup.js +0 -90
  320. data/vendor/assets/Leaflet/src/layer/tile/TileLayer.Anim.js +0 -110
  321. data/vendor/assets/Leaflet/src/layer/tile/TileLayer.Canvas.js +0 -61
  322. data/vendor/assets/Leaflet/src/layer/tile/TileLayer.WMS.js +0 -87
  323. data/vendor/assets/Leaflet/src/layer/tile/TileLayer.js +0 -597
  324. data/vendor/assets/Leaflet/src/layer/vector/Circle.js +0 -98
  325. data/vendor/assets/Leaflet/src/layer/vector/CircleMarker.js +0 -45
  326. data/vendor/assets/Leaflet/src/layer/vector/MultiPoly.js +0 -57
  327. data/vendor/assets/Leaflet/src/layer/vector/Path.Popup.js +0 -65
  328. data/vendor/assets/Leaflet/src/layer/vector/Path.SVG.js +0 -230
  329. data/vendor/assets/Leaflet/src/layer/vector/Path.VML.js +0 -135
  330. data/vendor/assets/Leaflet/src/layer/vector/Path.js +0 -119
  331. data/vendor/assets/Leaflet/src/layer/vector/Polygon.js +0 -92
  332. data/vendor/assets/Leaflet/src/layer/vector/Polyline.js +0 -164
  333. data/vendor/assets/Leaflet/src/layer/vector/canvas/Circle.Canvas.js +0 -18
  334. data/vendor/assets/Leaflet/src/layer/vector/canvas/CircleMarker.Canvas.js +0 -9
  335. data/vendor/assets/Leaflet/src/layer/vector/canvas/Path.Canvas.js +0 -204
  336. data/vendor/assets/Leaflet/src/layer/vector/canvas/Polygon.Canvas.js +0 -37
  337. data/vendor/assets/Leaflet/src/layer/vector/canvas/Polyline.Canvas.js +0 -30
  338. data/vendor/assets/Leaflet/src/map/handler/Map.BoxZoom.js +0 -118
  339. data/vendor/assets/leaflet.draw.js +0 -38
  340. data/vendor/assets/leaflet.js +0 -155
  341. data/vendor/assets/leaflet.label.js +0 -11
@@ -0,0 +1,51 @@
1
+ exports.config = {
2
+ "browser": true,
3
+ "node": true,
4
+ "predef": ["L"],
5
+
6
+ "debug": false,
7
+ "devel": false,
8
+
9
+ "es5": false,
10
+ "strict": false,
11
+ "globalstrict": false,
12
+
13
+ "asi": false,
14
+ "laxbreak": false,
15
+ "bitwise": true,
16
+ "boss": false,
17
+ "curly": true,
18
+ "eqnull": false,
19
+ "evil": false,
20
+ "expr": false,
21
+ "forin": true,
22
+ "immed": true,
23
+ "latedef": true,
24
+ "loopfunc": false,
25
+ "noarg": true,
26
+ "regexp": true,
27
+ "regexdash": false,
28
+ "scripturl": false,
29
+ "shadow": false,
30
+ "supernew": false,
31
+ "undef": true,
32
+ "funcscope": false,
33
+
34
+ "newcap": true,
35
+ "noempty": true,
36
+ "nonew": true,
37
+ "nomen": false,
38
+ "onevar": false,
39
+ "plusplus": false,
40
+ "sub": false,
41
+ "indent": 4,
42
+
43
+ "eqeqeq": true,
44
+ "trailing": true,
45
+ "white": true,
46
+ "smarttabs": true
47
+ };
48
+
49
+ exports.globals = {
50
+ 'L': false
51
+ }
@@ -0,0 +1,542 @@
1
+ /*
2
+ Leaflet.label, a plugin that adds labels to markers and vectors for Leaflet powered maps.
3
+ (c) 2012-2013, Jacob Toye, Smartrak
4
+
5
+ https://github.com/Leaflet/Leaflet.label
6
+ http://leafletjs.com
7
+ https://github.com/jacobtoye
8
+ */
9
+ (function (window, document, undefined) {
10
+ /*
11
+ * Leaflet.label assumes that you have already included the Leaflet library.
12
+ */
13
+
14
+ L.labelVersion = '0.2.1-dev';
15
+
16
+ L.Label = L.Class.extend({
17
+
18
+ includes: L.Mixin.Events,
19
+
20
+ options: {
21
+ className: '',
22
+ clickable: false,
23
+ direction: 'right',
24
+ noHide: false,
25
+ offset: [12, -15], // 6 (width of the label triangle) + 6 (padding)
26
+ opacity: 1,
27
+ zoomAnimation: true
28
+ },
29
+
30
+ initialize: function (options, source) {
31
+ L.setOptions(this, options);
32
+
33
+ this._source = source;
34
+ this._animated = L.Browser.any3d && this.options.zoomAnimation;
35
+ this._isOpen = false;
36
+ },
37
+
38
+ onAdd: function (map) {
39
+ this._map = map;
40
+
41
+ this._pane = this._source instanceof L.Marker ? map._panes.markerPane : map._panes.popupPane;
42
+
43
+ if (!this._container) {
44
+ this._initLayout();
45
+ }
46
+
47
+ this._pane.appendChild(this._container);
48
+
49
+ this._initInteraction();
50
+
51
+ this._update();
52
+
53
+ this.setOpacity(this.options.opacity);
54
+
55
+ map
56
+ .on('moveend', this._onMoveEnd, this)
57
+ .on('viewreset', this._onViewReset, this);
58
+
59
+ if (this._animated) {
60
+ map.on('zoomanim', this._zoomAnimation, this);
61
+ }
62
+
63
+ if (L.Browser.touch && !this.options.noHide) {
64
+ L.DomEvent.on(this._container, 'click', this.close, this);
65
+ }
66
+ },
67
+
68
+ onRemove: function (map) {
69
+ this._pane.removeChild(this._container);
70
+
71
+ map.off({
72
+ zoomanim: this._zoomAnimation,
73
+ moveend: this._onMoveEnd,
74
+ viewreset: this._onViewReset
75
+ }, this);
76
+
77
+ this._removeInteraction();
78
+
79
+ this._map = null;
80
+ },
81
+
82
+ setLatLng: function (latlng) {
83
+ this._latlng = L.latLng(latlng);
84
+ if (this._map) {
85
+ this._updatePosition();
86
+ }
87
+ return this;
88
+ },
89
+
90
+ setContent: function (content) {
91
+ // Backup previous content and store new content
92
+ this._previousContent = this._content;
93
+ this._content = content;
94
+
95
+ this._updateContent();
96
+
97
+ return this;
98
+ },
99
+
100
+ close: function () {
101
+ var map = this._map;
102
+
103
+ if (map) {
104
+ if (L.Browser.touch && !this.options.noHide) {
105
+ L.DomEvent.off(this._container, 'click', this.close);
106
+ }
107
+
108
+ map.removeLayer(this);
109
+ }
110
+ },
111
+
112
+ updateZIndex: function (zIndex) {
113
+ this._zIndex = zIndex;
114
+
115
+ if (this._container && this._zIndex) {
116
+ this._container.style.zIndex = zIndex;
117
+ }
118
+ },
119
+
120
+ setOpacity: function (opacity) {
121
+ this.options.opacity = opacity;
122
+
123
+ if (this._container) {
124
+ L.DomUtil.setOpacity(this._container, opacity);
125
+ }
126
+ },
127
+
128
+ _initLayout: function () {
129
+ this._container = L.DomUtil.create('div', 'leaflet-label ' + this.options.className + ' leaflet-zoom-animated');
130
+ this.updateZIndex(this._zIndex);
131
+ },
132
+
133
+ _update: function () {
134
+ if (!this._map) { return; }
135
+
136
+ this._container.style.visibility = 'hidden';
137
+
138
+ this._updateContent();
139
+ this._updatePosition();
140
+
141
+ this._container.style.visibility = '';
142
+ },
143
+
144
+ _updateContent: function () {
145
+ if (!this._content || !this._map || this._prevContent === this._content) {
146
+ return;
147
+ }
148
+
149
+ if (typeof this._content === 'string') {
150
+ this._container.innerHTML = this._content;
151
+
152
+ this._prevContent = this._content;
153
+
154
+ this._labelWidth = this._container.offsetWidth;
155
+ }
156
+ },
157
+
158
+ _updatePosition: function () {
159
+ var pos = this._map.latLngToLayerPoint(this._latlng);
160
+
161
+ this._setPosition(pos);
162
+ },
163
+
164
+ _setPosition: function (pos) {
165
+ var map = this._map,
166
+ container = this._container,
167
+ centerPoint = map.latLngToContainerPoint(map.getCenter()),
168
+ labelPoint = map.layerPointToContainerPoint(pos),
169
+ direction = this.options.direction,
170
+ labelWidth = this._labelWidth,
171
+ offset = L.point(this.options.offset);
172
+
173
+ // position to the right (right or auto & needs to)
174
+ if (direction === 'right' || direction === 'auto' && labelPoint.x < centerPoint.x) {
175
+ L.DomUtil.addClass(container, 'leaflet-label-right');
176
+ L.DomUtil.removeClass(container, 'leaflet-label-left');
177
+
178
+ pos = pos.add(offset);
179
+ } else { // position to the left
180
+ L.DomUtil.addClass(container, 'leaflet-label-left');
181
+ L.DomUtil.removeClass(container, 'leaflet-label-right');
182
+
183
+ pos = pos.add(L.point(-offset.x - labelWidth, offset.y));
184
+ }
185
+
186
+ L.DomUtil.setPosition(container, pos);
187
+ },
188
+
189
+ _zoomAnimation: function (opt) {
190
+ var pos = this._map._latLngToNewLayerPoint(this._latlng, opt.zoom, opt.center).round();
191
+
192
+ this._setPosition(pos);
193
+ },
194
+
195
+ _onMoveEnd: function () {
196
+ if (!this._animated || this.options.direction === 'auto') {
197
+ this._updatePosition();
198
+ }
199
+ },
200
+
201
+ _onViewReset: function (e) {
202
+ /* if map resets hard, we must update the label */
203
+ if (e && e.hard) {
204
+ this._update();
205
+ }
206
+ },
207
+
208
+ _initInteraction: function () {
209
+ if (!this.options.clickable) { return; }
210
+
211
+ var container = this._container,
212
+ events = ['dblclick', 'mousedown', 'mouseover', 'mouseout', 'contextmenu'];
213
+
214
+ L.DomUtil.addClass(container, 'leaflet-clickable');
215
+ L.DomEvent.on(container, 'click', this._onMouseClick, this);
216
+
217
+ for (var i = 0; i < events.length; i++) {
218
+ L.DomEvent.on(container, events[i], this._fireMouseEvent, this);
219
+ }
220
+ },
221
+
222
+ _removeInteraction: function () {
223
+ if (!this.options.clickable) { return; }
224
+
225
+ var container = this._container,
226
+ events = ['dblclick', 'mousedown', 'mouseover', 'mouseout', 'contextmenu'];
227
+
228
+ L.DomUtil.removeClass(container, 'leaflet-clickable');
229
+ L.DomEvent.off(container, 'click', this._onMouseClick, this);
230
+
231
+ for (var i = 0; i < events.length; i++) {
232
+ L.DomEvent.off(container, events[i], this._fireMouseEvent, this);
233
+ }
234
+ },
235
+
236
+ _onMouseClick: function (e) {
237
+ if (this.hasEventListeners(e.type)) {
238
+ L.DomEvent.stopPropagation(e);
239
+ }
240
+
241
+ this.fire(e.type, {
242
+ originalEvent: e
243
+ });
244
+ },
245
+
246
+ _fireMouseEvent: function (e) {
247
+ this.fire(e.type, {
248
+ originalEvent: e
249
+ });
250
+
251
+ // TODO proper custom event propagation
252
+ // this line will always be called if marker is in a FeatureGroup
253
+ if (e.type === 'contextmenu' && this.hasEventListeners(e.type)) {
254
+ L.DomEvent.preventDefault(e);
255
+ }
256
+ if (e.type !== 'mousedown') {
257
+ L.DomEvent.stopPropagation(e);
258
+ } else {
259
+ L.DomEvent.preventDefault(e);
260
+ }
261
+ }
262
+ });
263
+
264
+
265
+ // This object is a mixin for L.Marker and L.CircleMarker. We declare it here as both need to include the contents.
266
+ L.BaseMarkerMethods = {
267
+ showLabel: function () {
268
+ if (this.label && this._map) {
269
+ this.label.setLatLng(this._latlng);
270
+ this._map.showLabel(this.label);
271
+ }
272
+
273
+ return this;
274
+ },
275
+
276
+ hideLabel: function () {
277
+ if (this.label) {
278
+ this.label.close();
279
+ }
280
+ return this;
281
+ },
282
+
283
+ setLabelNoHide: function (noHide) {
284
+ if (this._labelNoHide === noHide) {
285
+ return;
286
+ }
287
+
288
+ this._labelNoHide = noHide;
289
+
290
+ if (noHide) {
291
+ this._removeLabelRevealHandlers();
292
+ this.showLabel();
293
+ } else {
294
+ this._addLabelRevealHandlers();
295
+ this.hideLabel();
296
+ }
297
+ },
298
+
299
+ bindLabel: function (content, options) {
300
+ var labelAnchor = this.options.icon ? this.options.icon.options.labelAnchor : this.options.labelAnchor,
301
+ anchor = L.point(labelAnchor) || L.point(0, 0);
302
+
303
+ anchor = anchor.add(L.Label.prototype.options.offset);
304
+
305
+ if (options && options.offset) {
306
+ anchor = anchor.add(options.offset);
307
+ }
308
+
309
+ options = L.Util.extend({offset: anchor}, options);
310
+
311
+ this._labelNoHide = options.noHide;
312
+
313
+ if (!this.label) {
314
+ if (!this._labelNoHide) {
315
+ this._addLabelRevealHandlers();
316
+ }
317
+
318
+ this
319
+ .on('remove', this.hideLabel, this)
320
+ .on('move', this._moveLabel, this)
321
+ .on('add', this._onMarkerAdd, this);
322
+
323
+ this._hasLabelHandlers = true;
324
+ }
325
+
326
+ this.label = new L.Label(options, this)
327
+ .setContent(content);
328
+
329
+ return this;
330
+ },
331
+
332
+ unbindLabel: function () {
333
+ if (this.label) {
334
+ this.hideLabel();
335
+
336
+ this.label = null;
337
+
338
+ if (this._hasLabelHandlers) {
339
+ if (!this._labelNoHide) {
340
+ this._removeLabelRevealHandlers();
341
+ }
342
+
343
+ this
344
+ .off('remove', this.hideLabel, this)
345
+ .off('move', this._moveLabel, this)
346
+ .off('add', this._onMarkerAdd, this);
347
+ }
348
+
349
+ this._hasLabelHandlers = false;
350
+ }
351
+ return this;
352
+ },
353
+
354
+ updateLabelContent: function (content) {
355
+ if (this.label) {
356
+ this.label.setContent(content);
357
+ }
358
+ },
359
+
360
+ getLabel: function () {
361
+ return this.label;
362
+ },
363
+
364
+ _onMarkerAdd: function () {
365
+ if (this._labelNoHide) {
366
+ this.showLabel();
367
+ }
368
+ },
369
+
370
+ _addLabelRevealHandlers: function () {
371
+ this
372
+ .on('mouseover', this.showLabel, this)
373
+ .on('mouseout', this.hideLabel, this);
374
+
375
+ if (L.Browser.touch) {
376
+ this.on('click', this.showLabel, this);
377
+ }
378
+ },
379
+
380
+ _removeLabelRevealHandlers: function () {
381
+ this
382
+ .off('mouseover', this.showLabel, this)
383
+ .off('mouseout', this.hideLabel, this);
384
+
385
+ if (L.Browser.touch) {
386
+ this.off('click', this.showLabel, this);
387
+ }
388
+ },
389
+
390
+ _moveLabel: function (e) {
391
+ this.label.setLatLng(e.latlng);
392
+ }
393
+ };
394
+
395
+ // Add in an option to icon that is used to set where the label anchor is
396
+ L.Icon.Default.mergeOptions({
397
+ labelAnchor: new L.Point(9, -20)
398
+ });
399
+
400
+ // Have to do this since Leaflet is loaded before this plugin and initializes
401
+ // L.Marker.options.icon therefore missing our mixin above.
402
+ L.Marker.mergeOptions({
403
+ icon: new L.Icon.Default()
404
+ });
405
+
406
+ L.Marker.include(L.BaseMarkerMethods);
407
+ L.Marker.include({
408
+ _originalUpdateZIndex: L.Marker.prototype._updateZIndex,
409
+
410
+ _updateZIndex: function (offset) {
411
+ var zIndex = this._zIndex + offset;
412
+
413
+ this._originalUpdateZIndex(offset);
414
+
415
+ if (this.label) {
416
+ this.label.updateZIndex(zIndex);
417
+ }
418
+ },
419
+
420
+ _originalSetOpacity: L.Marker.prototype.setOpacity,
421
+
422
+ setOpacity: function (opacity, labelHasSemiTransparency) {
423
+ this.options.labelHasSemiTransparency = labelHasSemiTransparency;
424
+
425
+ this._originalSetOpacity(opacity);
426
+ },
427
+
428
+ _originalUpdateOpacity: L.Marker.prototype._updateOpacity,
429
+
430
+ _updateOpacity: function () {
431
+ var absoluteOpacity = this.options.opacity === 0 ? 0 : 1;
432
+
433
+ this._originalUpdateOpacity();
434
+
435
+ if (this.label) {
436
+ this.label.setOpacity(this.options.labelHasSemiTransparency ? this.options.opacity : absoluteOpacity);
437
+ }
438
+ },
439
+
440
+ _originalSetLatLng: L.Marker.prototype.setLatLng,
441
+
442
+ setLatLng: function (latlng) {
443
+ if (this.label && !this._labelNoHide) {
444
+ this.hideLabel();
445
+ }
446
+
447
+ return this._originalSetLatLng(latlng);
448
+ }
449
+ });
450
+
451
+ // Add in an option to icon that is used to set where the label anchor is
452
+ L.CircleMarker.mergeOptions({
453
+ labelAnchor: new L.Point(0, 0)
454
+ });
455
+
456
+
457
+ L.CircleMarker.include(L.BaseMarkerMethods);
458
+
459
+ L.Path.include({
460
+ bindLabel: function (content, options) {
461
+ if (!this.label || this.label.options !== options) {
462
+ this.label = new L.Label(options, this);
463
+ }
464
+
465
+ this.label.setContent(content);
466
+
467
+ if (!this._showLabelAdded) {
468
+ this
469
+ .on('mouseover', this._showLabel, this)
470
+ .on('mousemove', this._moveLabel, this)
471
+ .on('mouseout remove', this._hideLabel, this);
472
+
473
+ if (L.Browser.touch) {
474
+ this.on('click', this._showLabel, this);
475
+ }
476
+ this._showLabelAdded = true;
477
+ }
478
+
479
+ return this;
480
+ },
481
+
482
+ unbindLabel: function () {
483
+ if (this.label) {
484
+ this._hideLabel();
485
+ this.label = null;
486
+ this._showLabelAdded = false;
487
+ this
488
+ .off('mouseover', this._showLabel, this)
489
+ .off('mousemove', this._moveLabel, this)
490
+ .off('mouseout remove', this._hideLabel, this);
491
+ }
492
+ return this;
493
+ },
494
+
495
+ updateLabelContent: function (content) {
496
+ if (this.label) {
497
+ this.label.setContent(content);
498
+ }
499
+ },
500
+
501
+ _showLabel: function (e) {
502
+ this.label.setLatLng(e.latlng);
503
+ this._map.showLabel(this.label);
504
+ },
505
+
506
+ _moveLabel: function (e) {
507
+ this.label.setLatLng(e.latlng);
508
+ },
509
+
510
+ _hideLabel: function () {
511
+ this.label.close();
512
+ }
513
+ });
514
+
515
+ L.Map.include({
516
+ showLabel: function (label) {
517
+ return this.addLayer(label);
518
+ }
519
+ });
520
+
521
+ L.FeatureGroup.include({
522
+ // TODO: remove this when AOP is supported in Leaflet, need this as we cannot put code in removeLayer()
523
+ clearLayers: function () {
524
+ this.unbindLabel();
525
+ this.eachLayer(this.removeLayer, this);
526
+ return this;
527
+ },
528
+
529
+ bindLabel: function (content, options) {
530
+ return this.invoke('bindLabel', content, options);
531
+ },
532
+
533
+ unbindLabel: function () {
534
+ return this.invoke('unbindLabel');
535
+ },
536
+
537
+ updateLabelContent: function (content) {
538
+ this.invoke('updateLabelContent', content);
539
+ }
540
+ });
541
+
542
+ }(this, document));