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,51 @@
1
+ /*
2
+ * L.Icon.Default is the blue marker icon used by default in Leaflet.
3
+ */
4
+
5
+ L.Icon.Default = L.Icon.extend({
6
+
7
+ options: {
8
+ iconSize: [25, 41],
9
+ iconAnchor: [12, 41],
10
+ popupAnchor: [1, -34],
11
+
12
+ shadowSize: [41, 41]
13
+ },
14
+
15
+ _getIconUrl: function (name) {
16
+ var key = name + 'Url';
17
+
18
+ if (this.options[key]) {
19
+ return this.options[key];
20
+ }
21
+
22
+ if (L.Browser.retina && name === 'icon') {
23
+ name += '-2x';
24
+ }
25
+
26
+ var path = L.Icon.Default.imagePath;
27
+
28
+ if (!path) {
29
+ throw new Error('Couldn\'t autodetect L.Icon.Default.imagePath, set it manually.');
30
+ }
31
+
32
+ return path + '/marker-' + name + '.png';
33
+ }
34
+ });
35
+
36
+ L.Icon.Default.imagePath = (function () {
37
+ var scripts = document.getElementsByTagName('script'),
38
+ leafletRe = /\/?leaflet[\-\._]?([\w\-\._]*)\.js\??/;
39
+
40
+ var i, len, src, matches, path;
41
+
42
+ for (i = 0, len = scripts.length; i < len; i++) {
43
+ src = scripts[i].src;
44
+ matches = src.match(leafletRe);
45
+
46
+ if (matches) {
47
+ path = src.split(leafletRe)[0];
48
+ return (path ? path + '/' : '') + 'images';
49
+ }
50
+ }
51
+ }());
@@ -0,0 +1,101 @@
1
+ /*
2
+ * L.Icon is an image-based icon class that you can use with L.Marker for custom markers.
3
+ */
4
+
5
+ L.Icon = L.Class.extend({
6
+ options: {
7
+ /*
8
+ iconUrl: (String) (required)
9
+ iconRetinaUrl: (String) (optional, used for retina devices if detected)
10
+ iconSize: (Point) (can be set through CSS)
11
+ iconAnchor: (Point) (centered by default, can be set in CSS with negative margins)
12
+ popupAnchor: (Point) (if not specified, popup opens in the anchor point)
13
+ shadowUrl: (Point) (no shadow by default)
14
+ shadowRetinaUrl: (String) (optional, used for retina devices if detected)
15
+ shadowSize: (Point)
16
+ shadowAnchor: (Point)
17
+ */
18
+ className: ''
19
+ },
20
+
21
+ initialize: function (options) {
22
+ L.setOptions(this, options);
23
+ },
24
+
25
+ createIcon: function () {
26
+ return this._createIcon('icon');
27
+ },
28
+
29
+ createShadow: function () {
30
+ return this._createIcon('shadow');
31
+ },
32
+
33
+ _createIcon: function (name) {
34
+ var src = this._getIconUrl(name);
35
+
36
+ if (!src) {
37
+ if (name === 'icon') {
38
+ throw new Error('iconUrl not set in Icon options (see the docs).');
39
+ }
40
+ return null;
41
+ }
42
+
43
+ var img = this._createImg(src);
44
+ this._setIconStyles(img, name);
45
+
46
+ return img;
47
+ },
48
+
49
+ _setIconStyles: function (img, name) {
50
+ var options = this.options,
51
+ size = L.point(options[name + 'Size']),
52
+ anchor;
53
+
54
+ if (name === 'shadow') {
55
+ anchor = L.point(options.shadowAnchor || options.iconAnchor);
56
+ } else {
57
+ anchor = L.point(options.iconAnchor);
58
+ }
59
+
60
+ if (!anchor && size) {
61
+ anchor = size.divideBy(2, true);
62
+ }
63
+
64
+ img.className = 'leaflet-marker-' + name + ' ' + options.className;
65
+
66
+ if (anchor) {
67
+ img.style.marginLeft = (-anchor.x) + 'px';
68
+ img.style.marginTop = (-anchor.y) + 'px';
69
+ }
70
+
71
+ if (size) {
72
+ img.style.width = size.x + 'px';
73
+ img.style.height = size.y + 'px';
74
+ }
75
+ },
76
+
77
+ _createImg: function (src) {
78
+ var el;
79
+
80
+ if (!L.Browser.ie6) {
81
+ el = document.createElement('img');
82
+ el.src = src;
83
+ } else {
84
+ el = document.createElement('div');
85
+ el.style.filter =
86
+ 'progid:DXImageTransform.Microsoft.AlphaImageLoader(src="' + src + '")';
87
+ }
88
+ return el;
89
+ },
90
+
91
+ _getIconUrl: function (name) {
92
+ if (L.Browser.retina && this.options[name + 'RetinaUrl']) {
93
+ return this.options[name + 'RetinaUrl'];
94
+ }
95
+ return this.options[name + 'Url'];
96
+ }
97
+ });
98
+
99
+ L.icon = function (options) {
100
+ return new L.Icon(options);
101
+ };
@@ -0,0 +1,66 @@
1
+ /*
2
+ * L.Handler.MarkerDrag is used internally by L.Marker to make the markers draggable.
3
+ */
4
+
5
+ L.Handler.MarkerDrag = L.Handler.extend({
6
+ initialize: function (marker) {
7
+ this._marker = marker;
8
+ },
9
+
10
+ addHooks: function () {
11
+ var icon = this._marker._icon;
12
+ if (!this._draggable) {
13
+ this._draggable = new L.Draggable(icon, icon);
14
+ }
15
+
16
+ this._draggable
17
+ .on('dragstart', this._onDragStart, this)
18
+ .on('drag', this._onDrag, this)
19
+ .on('dragend', this._onDragEnd, this);
20
+ this._draggable.enable();
21
+ },
22
+
23
+ removeHooks: function () {
24
+ this._draggable
25
+ .off('dragstart', this._onDragStart)
26
+ .off('drag', this._onDrag)
27
+ .off('dragend', this._onDragEnd);
28
+
29
+ this._draggable.disable();
30
+ },
31
+
32
+ moved: function () {
33
+ return this._draggable && this._draggable._moved;
34
+ },
35
+
36
+ _onDragStart: function () {
37
+ this._marker
38
+ .closePopup()
39
+ .fire('movestart')
40
+ .fire('dragstart');
41
+ },
42
+
43
+ _onDrag: function () {
44
+ var marker = this._marker,
45
+ shadow = marker._shadow,
46
+ iconPos = L.DomUtil.getPosition(marker._icon),
47
+ latlng = marker._map.layerPointToLatLng(iconPos);
48
+
49
+ // update shadow position
50
+ if (shadow) {
51
+ L.DomUtil.setPosition(shadow, iconPos);
52
+ }
53
+
54
+ marker._latlng = latlng;
55
+
56
+ marker
57
+ .fire('move', {latlng: latlng})
58
+ .fire('drag');
59
+ },
60
+
61
+ _onDragEnd: function () {
62
+ this._marker
63
+ .fire('moveend')
64
+ .fire('dragend');
65
+ }
66
+ });
@@ -0,0 +1,72 @@
1
+ /*
2
+ * Popup extension to L.Marker, adding popup-related methods.
3
+ */
4
+
5
+ L.Marker.include({
6
+ openPopup: function () {
7
+ if (this._popup && this._map && !this._map.hasLayer(this._popup)) {
8
+ this._popup.setLatLng(this._latlng);
9
+ this._map.openPopup(this._popup);
10
+ }
11
+
12
+ return this;
13
+ },
14
+
15
+ closePopup: function () {
16
+ if (this._popup) {
17
+ this._popup._close();
18
+ }
19
+ return this;
20
+ },
21
+
22
+ bindPopup: function (content, options) {
23
+ var anchor = L.point(this.options.icon.options.popupAnchor || [0, 0]);
24
+
25
+ anchor = anchor.add(L.Popup.prototype.options.offset);
26
+
27
+ if (options && options.offset) {
28
+ anchor = anchor.add(options.offset);
29
+ }
30
+
31
+ options = L.extend({offset: anchor}, options);
32
+
33
+ if (!this._popup) {
34
+ this
35
+ .on('click', this.openPopup, this)
36
+ .on('remove', this.closePopup, this)
37
+ .on('move', this._movePopup, this);
38
+ }
39
+
40
+ if (content instanceof L.Popup) {
41
+ L.setOptions(content, options);
42
+ this._popup = content;
43
+ } else {
44
+ this._popup = new L.Popup(options, this)
45
+ .setContent(content);
46
+ }
47
+
48
+ return this;
49
+ },
50
+
51
+ setPopupContent: function (content) {
52
+ if (this._popup) {
53
+ this._popup.setContent(content);
54
+ }
55
+ return this;
56
+ },
57
+
58
+ unbindPopup: function () {
59
+ if (this._popup) {
60
+ this._popup = null;
61
+ this
62
+ .off('click', this.openPopup)
63
+ .off('remove', this.closePopup)
64
+ .off('move', this._movePopup);
65
+ }
66
+ return this;
67
+ },
68
+
69
+ _movePopup: function (e) {
70
+ this._popup.setLatLng(e.latlng);
71
+ }
72
+ });
@@ -0,0 +1,275 @@
1
+ /*
2
+ * L.Marker is used to display clickable/draggable icons on the map.
3
+ */
4
+
5
+ L.Marker = L.Class.extend({
6
+
7
+ includes: L.Mixin.Events,
8
+
9
+ options: {
10
+ icon: new L.Icon.Default(),
11
+ title: '',
12
+ clickable: true,
13
+ draggable: false,
14
+ zIndexOffset: 0,
15
+ opacity: 1,
16
+ riseOnHover: false,
17
+ riseOffset: 250
18
+ },
19
+
20
+ initialize: function (latlng, options) {
21
+ L.setOptions(this, options);
22
+ this._latlng = L.latLng(latlng);
23
+ },
24
+
25
+ onAdd: function (map) {
26
+ this._map = map;
27
+
28
+ map.on('viewreset', this.update, this);
29
+
30
+ this._initIcon();
31
+ this.update();
32
+
33
+ if (map.options.zoomAnimation && map.options.markerZoomAnimation) {
34
+ map.on('zoomanim', this._animateZoom, this);
35
+ }
36
+ },
37
+
38
+ addTo: function (map) {
39
+ map.addLayer(this);
40
+ return this;
41
+ },
42
+
43
+ onRemove: function (map) {
44
+ if (this.dragging) {
45
+ this.dragging.disable();
46
+ }
47
+
48
+ this._removeIcon();
49
+
50
+ this.fire('remove');
51
+
52
+ map.off({
53
+ 'viewreset': this.update,
54
+ 'zoomanim': this._animateZoom
55
+ }, this);
56
+
57
+ this._map = null;
58
+ },
59
+
60
+ getLatLng: function () {
61
+ return this._latlng;
62
+ },
63
+
64
+ setLatLng: function (latlng) {
65
+ this._latlng = L.latLng(latlng);
66
+
67
+ this.update();
68
+
69
+ return this.fire('move', { latlng: this._latlng });
70
+ },
71
+
72
+ setZIndexOffset: function (offset) {
73
+ this.options.zIndexOffset = offset;
74
+ this.update();
75
+
76
+ return this;
77
+ },
78
+
79
+ setIcon: function (icon) {
80
+ if (this._map) {
81
+ this._removeIcon();
82
+ }
83
+
84
+ this.options.icon = icon;
85
+
86
+ if (this._map) {
87
+ this._initIcon();
88
+ this.update();
89
+ }
90
+
91
+ return this;
92
+ },
93
+
94
+ update: function () {
95
+ if (this._icon) {
96
+ var pos = this._map.latLngToLayerPoint(this._latlng).round();
97
+ this._setPos(pos);
98
+ }
99
+
100
+ return this;
101
+ },
102
+
103
+ _initIcon: function () {
104
+ var options = this.options,
105
+ map = this._map,
106
+ animation = (map.options.zoomAnimation && map.options.markerZoomAnimation),
107
+ classToAdd = animation ? 'leaflet-zoom-animated' : 'leaflet-zoom-hide',
108
+ needOpacityUpdate = false;
109
+
110
+ if (!this._icon) {
111
+ this._icon = options.icon.createIcon();
112
+
113
+ if (options.title) {
114
+ this._icon.title = options.title;
115
+ }
116
+
117
+ this._initInteraction();
118
+ needOpacityUpdate = (this.options.opacity < 1);
119
+
120
+ L.DomUtil.addClass(this._icon, classToAdd);
121
+
122
+ if (options.riseOnHover) {
123
+ L.DomEvent
124
+ .on(this._icon, 'mouseover', this._bringToFront, this)
125
+ .on(this._icon, 'mouseout', this._resetZIndex, this);
126
+ }
127
+ }
128
+
129
+ if (!this._shadow) {
130
+ this._shadow = options.icon.createShadow();
131
+
132
+ if (this._shadow) {
133
+ L.DomUtil.addClass(this._shadow, classToAdd);
134
+ needOpacityUpdate = (this.options.opacity < 1);
135
+ }
136
+ }
137
+
138
+ if (needOpacityUpdate) {
139
+ this._updateOpacity();
140
+ }
141
+
142
+ var panes = this._map._panes;
143
+
144
+ panes.markerPane.appendChild(this._icon);
145
+
146
+ if (this._shadow) {
147
+ panes.shadowPane.appendChild(this._shadow);
148
+ }
149
+ },
150
+
151
+ _removeIcon: function () {
152
+ var panes = this._map._panes;
153
+
154
+ if (this.options.riseOnHover) {
155
+ L.DomEvent
156
+ .off(this._icon, 'mouseover', this._bringToFront)
157
+ .off(this._icon, 'mouseout', this._resetZIndex);
158
+ }
159
+
160
+ panes.markerPane.removeChild(this._icon);
161
+
162
+ if (this._shadow) {
163
+ panes.shadowPane.removeChild(this._shadow);
164
+ }
165
+
166
+ this._icon = this._shadow = null;
167
+ },
168
+
169
+ _setPos: function (pos) {
170
+ L.DomUtil.setPosition(this._icon, pos);
171
+
172
+ if (this._shadow) {
173
+ L.DomUtil.setPosition(this._shadow, pos);
174
+ }
175
+
176
+ this._zIndex = pos.y + this.options.zIndexOffset;
177
+
178
+ this._resetZIndex();
179
+ },
180
+
181
+ _updateZIndex: function (offset) {
182
+ this._icon.style.zIndex = this._zIndex + offset;
183
+ },
184
+
185
+ _animateZoom: function (opt) {
186
+ var pos = this._map._latLngToNewLayerPoint(this._latlng, opt.zoom, opt.center);
187
+
188
+ this._setPos(pos);
189
+ },
190
+
191
+ _initInteraction: function () {
192
+
193
+ if (!this.options.clickable) { return; }
194
+
195
+ // TODO refactor into something shared with Map/Path/etc. to DRY it up
196
+
197
+ var icon = this._icon,
198
+ events = ['dblclick', 'mousedown', 'mouseover', 'mouseout', 'contextmenu'];
199
+
200
+ L.DomUtil.addClass(icon, 'leaflet-clickable');
201
+ L.DomEvent.on(icon, 'click', this._onMouseClick, this);
202
+
203
+ for (var i = 0; i < events.length; i++) {
204
+ L.DomEvent.on(icon, events[i], this._fireMouseEvent, this);
205
+ }
206
+
207
+ if (L.Handler.MarkerDrag) {
208
+ this.dragging = new L.Handler.MarkerDrag(this);
209
+
210
+ if (this.options.draggable) {
211
+ this.dragging.enable();
212
+ }
213
+ }
214
+ },
215
+
216
+ _onMouseClick: function (e) {
217
+ var wasDragged = this.dragging && this.dragging.moved();
218
+
219
+ if (this.hasEventListeners(e.type) || wasDragged) {
220
+ L.DomEvent.stopPropagation(e);
221
+ }
222
+
223
+ if (wasDragged) { return; }
224
+
225
+ if ((!this.dragging || !this.dragging._enabled) && this._map.dragging && this._map.dragging.moved()) { return; }
226
+
227
+ this.fire(e.type, {
228
+ originalEvent: e,
229
+ latlng: this._latlng
230
+ });
231
+ },
232
+
233
+ _fireMouseEvent: function (e) {
234
+
235
+ this.fire(e.type, {
236
+ originalEvent: e,
237
+ latlng: this._latlng
238
+ });
239
+
240
+ // TODO proper custom event propagation
241
+ // this line will always be called if marker is in a FeatureGroup
242
+ if (e.type === 'contextmenu' && this.hasEventListeners(e.type)) {
243
+ L.DomEvent.preventDefault(e);
244
+ }
245
+ if (e.type !== 'mousedown') {
246
+ L.DomEvent.stopPropagation(e);
247
+ }
248
+ },
249
+
250
+ setOpacity: function (opacity) {
251
+ this.options.opacity = opacity;
252
+ if (this._map) {
253
+ this._updateOpacity();
254
+ }
255
+ },
256
+
257
+ _updateOpacity: function () {
258
+ L.DomUtil.setOpacity(this._icon, this.options.opacity);
259
+ if (this._shadow) {
260
+ L.DomUtil.setOpacity(this._shadow, this.options.opacity);
261
+ }
262
+ },
263
+
264
+ _bringToFront: function () {
265
+ this._updateZIndex(this.options.riseOffset);
266
+ },
267
+
268
+ _resetZIndex: function () {
269
+ this._updateZIndex(0);
270
+ }
271
+ });
272
+
273
+ L.marker = function (latlng, options) {
274
+ return new L.Marker(latlng, options);
275
+ };