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