]> git.openstreetmap.org Git - rails.git/blob - app/assets/javascripts/leaflet.map.js
Merge pull request #5417 from tomhughes/social-share-helper
[rails.git] / app / assets / javascripts / leaflet.map.js
1 //= require qs/dist/qs
2
3 L.extend(L.LatLngBounds.prototype, {
4   getSize: function () {
5     return (this._northEast.lat - this._southWest.lat) *
6            (this._northEast.lng - this._southWest.lng);
7   },
8
9   wrap: function () {
10     return new L.LatLngBounds(this._southWest.wrap(), this._northEast.wrap());
11   }
12 });
13
14 L.OSM.Map = L.Map.extend({
15   initialize: function (id, options) {
16     L.Map.prototype.initialize.call(this, id, options);
17
18     this.baseLayers = [];
19
20     for (const layerDefinition of OSM.LAYER_DEFINITIONS) {
21       if (layerDefinition.apiKeyId && !OSM[layerDefinition.apiKeyId]) continue;
22
23       let layerConstructor = L.OSM.TileLayer;
24       const layerOptions = {};
25
26       for (const [property, value] of Object.entries(layerDefinition)) {
27         if (property === "credit") {
28           layerOptions.attribution = makeAttribution(value);
29         } else if (property === "nameId") {
30           layerOptions.name = I18n.t(`javascripts.map.base.${value}`);
31         } else if (property === "apiKeyId") {
32           layerOptions.apikey = OSM[value];
33         } else if (property === "leafletOsmId") {
34           layerConstructor = L.OSM[value];
35         } else {
36           layerOptions[property] = value;
37         }
38       }
39
40       const layer = new layerConstructor(layerOptions);
41       this.baseLayers.push(layer);
42     }
43
44     this.noteLayer = new L.FeatureGroup();
45     this.noteLayer.options = { code: "N" };
46
47     this.dataLayer = new L.OSM.DataLayer(null);
48     this.dataLayer.options.code = "D";
49
50     this.gpsLayer = new L.OSM.GPS({
51       pane: "overlayPane",
52       code: "G"
53     });
54
55     this.on("layeradd", function (event) {
56       if (this.baseLayers.indexOf(event.layer) >= 0) {
57         this.setMaxZoom(event.layer.options.maxZoom);
58       }
59     });
60
61     function makeAttribution(credit) {
62       let attribution = "";
63
64       attribution += I18n.t("javascripts.map.copyright_text", {
65         copyright_link: $("<a>", {
66           href: "/copyright",
67           text: I18n.t("javascripts.map.openstreetmap_contributors")
68         }).prop("outerHTML")
69       });
70
71       attribution += credit.donate ? " &hearts; " : ". ";
72       attribution += makeCredit(credit);
73       attribution += ". ";
74
75       attribution += $("<a>", {
76         href: "https://wiki.osmfoundation.org/wiki/Terms_of_Use",
77         text: I18n.t("javascripts.map.website_and_api_terms")
78       }).prop("outerHTML");
79
80       return attribution;
81     }
82
83     function makeCredit(credit) {
84       const children = {};
85       for (const childId in credit.children) {
86         children[childId] = makeCredit(credit.children[childId]);
87       }
88       const text = I18n.t(`javascripts.map.${credit.id}`, children);
89       if (credit.href) {
90         const link = $("<a>", {
91           href: credit.href,
92           text: text
93         });
94         if (credit.donate) {
95           link.addClass("donate-attr");
96         } else {
97           link.attr("target", "_blank");
98         }
99         return link.prop("outerHTML");
100       } else {
101         return text;
102       }
103     }
104   },
105
106   updateLayers: function (layerParam) {
107     var layers = layerParam || "M",
108         layersAdded = "";
109
110     for (var i = this.baseLayers.length - 1; i >= 0; i--) {
111       if (layers.indexOf(this.baseLayers[i].options.code) >= 0) {
112         this.addLayer(this.baseLayers[i]);
113         layersAdded = layersAdded + this.baseLayers[i].options.code;
114       } else if (i === 0 && layersAdded === "") {
115         this.addLayer(this.baseLayers[i]);
116       } else {
117         this.removeLayer(this.baseLayers[i]);
118       }
119     }
120   },
121
122   getLayersCode: function () {
123     var layerConfig = "";
124     this.eachLayer(function (layer) {
125       if (layer.options && layer.options.code) {
126         layerConfig += layer.options.code;
127       }
128     });
129     return layerConfig;
130   },
131
132   getMapBaseLayerId: function () {
133     const layer = this.getMapBaseLayer();
134     if (layer) return layer.options.layerId;
135   },
136
137   getMapBaseLayer: function () {
138     for (const layer of this.baseLayers) {
139       if (this.hasLayer(layer)) return layer;
140     }
141   },
142
143   getUrl: function (marker) {
144     var precision = OSM.zoomPrecision(this.getZoom()),
145         params = {};
146
147     if (marker && this.hasLayer(marker)) {
148       var latLng = marker.getLatLng().wrap();
149       params.mlat = latLng.lat.toFixed(precision);
150       params.mlon = latLng.lng.toFixed(precision);
151     }
152
153     var url = window.location.protocol + "//" + OSM.SERVER_URL + "/",
154         query = Qs.stringify(params),
155         hash = OSM.formatHash(this);
156
157     if (query) url += "?" + query;
158     if (hash) url += hash;
159
160     return url;
161   },
162
163   getShortUrl: function (marker) {
164     var zoom = this.getZoom(),
165         latLng = marker && this.hasLayer(marker) ? marker.getLatLng().wrap() : this.getCenter().wrap(),
166         str = window.location.hostname.match(/^www\.openstreetmap\.org/i) ?
167           window.location.protocol + "//osm.org/go/" :
168           window.location.protocol + "//" + window.location.hostname + "/go/",
169         char_array = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789_~",
170         x = Math.round((latLng.lng + 180.0) * ((1 << 30) / 90.0)),
171         y = Math.round((latLng.lat + 90.0) * ((1 << 30) / 45.0)),
172         // JavaScript only has to keep 32 bits of bitwise operators, so this has to be
173         // done in two parts. each of the parts c1/c2 has 30 bits of the total in it
174         // and drops the last 4 bits of the full 64 bit Morton code.
175         c1 = interlace(x >>> 17, y >>> 17), c2 = interlace((x >>> 2) & 0x7fff, (y >>> 2) & 0x7fff),
176         digit,
177         i;
178
179     for (i = 0; i < Math.ceil((zoom + 8) / 3.0) && i < 5; ++i) {
180       digit = (c1 >> (24 - (6 * i))) & 0x3f;
181       str += char_array.charAt(digit);
182     }
183     for (i = 5; i < Math.ceil((zoom + 8) / 3.0); ++i) {
184       digit = (c2 >> (24 - (6 * (i - 5)))) & 0x3f;
185       str += char_array.charAt(digit);
186     }
187     for (i = 0; i < ((zoom + 8) % 3); ++i) str += "-";
188
189     // Called to interlace the bits in x and y, making a Morton code.
190     function interlace(x, y) {
191       var interlaced_x = x,
192           interlaced_y = y;
193       interlaced_x = (interlaced_x | (interlaced_x << 8)) & 0x00ff00ff;
194       interlaced_x = (interlaced_x | (interlaced_x << 4)) & 0x0f0f0f0f;
195       interlaced_x = (interlaced_x | (interlaced_x << 2)) & 0x33333333;
196       interlaced_x = (interlaced_x | (interlaced_x << 1)) & 0x55555555;
197       interlaced_y = (interlaced_y | (interlaced_y << 8)) & 0x00ff00ff;
198       interlaced_y = (interlaced_y | (interlaced_y << 4)) & 0x0f0f0f0f;
199       interlaced_y = (interlaced_y | (interlaced_y << 2)) & 0x33333333;
200       interlaced_y = (interlaced_y | (interlaced_y << 1)) & 0x55555555;
201       return (interlaced_x << 1) | interlaced_y;
202     }
203
204     var params = {};
205     var layers = this.getLayersCode().replace("M", "");
206
207     if (layers) {
208       params.layers = layers;
209     }
210
211     if (marker && this.hasLayer(marker)) {
212       params.m = "";
213     }
214
215     if (this._object) {
216       params[this._object.type] = this._object.id;
217     }
218
219     var query = Qs.stringify(params);
220     if (query) {
221       str += "?" + query;
222     }
223
224     return str;
225   },
226
227   getGeoUri: function (marker) {
228     var precision = OSM.zoomPrecision(this.getZoom()),
229         latLng,
230         params = {};
231
232     if (marker && this.hasLayer(marker)) {
233       latLng = marker.getLatLng().wrap();
234     } else {
235       latLng = this.getCenter();
236     }
237
238     params.lat = latLng.lat.toFixed(precision);
239     params.lon = latLng.lng.toFixed(precision);
240     params.zoom = this.getZoom();
241
242     return "geo:" + params.lat + "," + params.lon + "?z=" + params.zoom;
243   },
244
245   addObject: function (object, callback) {
246     var objectStyle = {
247       color: "#FF6200",
248       weight: 4,
249       opacity: 1,
250       fillOpacity: 0.5
251     };
252
253     var changesetStyle = {
254       weight: 4,
255       color: "#FF9500",
256       opacity: 1,
257       fillOpacity: 0,
258       interactive: false
259     };
260
261     var haloStyle = {
262       weight: 2.5,
263       radius: 20,
264       fillOpacity: 0.5,
265       color: "#FF6200"
266     };
267
268     this.removeObject();
269
270     if (object.type === "note") {
271       this._objectLoader = {
272         abort: function () {}
273       };
274
275       this._object = object;
276       this._objectLayer = L.featureGroup().addTo(this);
277
278       L.circleMarker(object.latLng, haloStyle).addTo(this._objectLayer);
279
280       if (object.icon) {
281         L.marker(object.latLng, {
282           icon: object.icon,
283           opacity: 1,
284           interactive: true
285         }).addTo(this._objectLayer);
286       }
287
288       if (callback) callback(this._objectLayer.getBounds());
289     } else { // element or changeset handled by L.OSM.DataLayer
290       var map = this;
291       this._objectLoader = $.ajax({
292         url: OSM.apiUrl(object),
293         dataType: "xml",
294         success: function (xml) {
295           map._object = object;
296
297           map._objectLayer = new L.OSM.DataLayer(null, {
298             styles: {
299               node: objectStyle,
300               way: objectStyle,
301               area: objectStyle,
302               changeset: changesetStyle
303             }
304           });
305
306           map._objectLayer.interestingNode = function (node, ways, relations) {
307             if (object.type === "node") {
308               return true;
309             } else if (object.type === "relation") {
310               for (var i = 0; i < relations.length; i++) {
311                 if (relations[i].members.indexOf(node) !== -1) return true;
312               }
313             } else {
314               return false;
315             }
316           };
317
318           map._objectLayer.addData(xml);
319           map._objectLayer.addTo(map);
320
321           if (callback) callback(map._objectLayer.getBounds());
322         }
323       });
324     }
325   },
326
327   removeObject: function () {
328     this._object = null;
329     if (this._objectLoader) this._objectLoader.abort();
330     if (this._objectLayer) this.removeLayer(this._objectLayer);
331   },
332
333   getState: function () {
334     return {
335       center: this.getCenter().wrap(),
336       zoom: this.getZoom(),
337       layers: this.getLayersCode()
338     };
339   },
340
341   setState: function (state, options) {
342     if (state.center) this.setView(state.center, state.zoom, options);
343     if (state.layers) this.updateLayers(state.layers);
344   },
345
346   setSidebarOverlaid: function (overlaid) {
347     var sidebarWidth = 350;
348     if (overlaid && !$("#content").hasClass("overlay-sidebar")) {
349       $("#content").addClass("overlay-sidebar");
350       this.invalidateSize({ pan: false });
351       if ($("html").attr("dir") !== "rtl") {
352         this.panBy([-sidebarWidth, 0], { animate: false });
353       }
354     } else if (!overlaid && $("#content").hasClass("overlay-sidebar")) {
355       if ($("html").attr("dir") !== "rtl") {
356         this.panBy([sidebarWidth, 0], { animate: false });
357       }
358       $("#content").removeClass("overlay-sidebar");
359       this.invalidateSize({ pan: false });
360     }
361     return this;
362   }
363 });
364
365 L.Icon.Default.imagePath = "/images/";
366
367 L.Icon.Default.imageUrls = {
368   "/images/marker-icon.png": OSM.MARKER_ICON,
369   "/images/marker-icon-2x.png": OSM.MARKER_ICON_2X,
370   "/images/marker-shadow.png": OSM.MARKER_SHADOW
371 };
372
373 L.extend(L.Icon.Default.prototype, {
374   _oldGetIconUrl: L.Icon.Default.prototype._getIconUrl,
375
376   _getIconUrl: function (name) {
377     var url = this._oldGetIconUrl(name);
378     return L.Icon.Default.imageUrls[url];
379   }
380 });
381
382 OSM.getUserIcon = function (url) {
383   return L.icon({
384     iconUrl: url || OSM.MARKER_RED,
385     iconSize: [25, 41],
386     iconAnchor: [12, 41],
387     popupAnchor: [1, -34],
388     shadowUrl: OSM.MARKER_SHADOW,
389     shadowSize: [41, 41]
390   });
391 };