]> git.openstreetmap.org Git - rails.git/blob - app/assets/javascripts/leaflet.map.js
Rename 'keyid' layer option to 'layerId'
[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     var baseLayerId;
134     this.eachLayer(function (layer) {
135       if (layer.options && layer.options.layerId) baseLayerId = layer.options.layerId;
136     });
137     return baseLayerId;
138   },
139
140   getUrl: function (marker) {
141     var precision = OSM.zoomPrecision(this.getZoom()),
142         params = {};
143
144     if (marker && this.hasLayer(marker)) {
145       var latLng = marker.getLatLng().wrap();
146       params.mlat = latLng.lat.toFixed(precision);
147       params.mlon = latLng.lng.toFixed(precision);
148     }
149
150     var url = window.location.protocol + "//" + OSM.SERVER_URL + "/",
151         query = Qs.stringify(params),
152         hash = OSM.formatHash(this);
153
154     if (query) url += "?" + query;
155     if (hash) url += hash;
156
157     return url;
158   },
159
160   getShortUrl: function (marker) {
161     var zoom = this.getZoom(),
162         latLng = marker && this.hasLayer(marker) ? marker.getLatLng().wrap() : this.getCenter().wrap(),
163         str = window.location.hostname.match(/^www\.openstreetmap\.org/i) ?
164           window.location.protocol + "//osm.org/go/" :
165           window.location.protocol + "//" + window.location.hostname + "/go/",
166         char_array = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789_~",
167         x = Math.round((latLng.lng + 180.0) * ((1 << 30) / 90.0)),
168         y = Math.round((latLng.lat + 90.0) * ((1 << 30) / 45.0)),
169         // JavaScript only has to keep 32 bits of bitwise operators, so this has to be
170         // done in two parts. each of the parts c1/c2 has 30 bits of the total in it
171         // and drops the last 4 bits of the full 64 bit Morton code.
172         c1 = interlace(x >>> 17, y >>> 17), c2 = interlace((x >>> 2) & 0x7fff, (y >>> 2) & 0x7fff),
173         digit,
174         i;
175
176     for (i = 0; i < Math.ceil((zoom + 8) / 3.0) && i < 5; ++i) {
177       digit = (c1 >> (24 - (6 * i))) & 0x3f;
178       str += char_array.charAt(digit);
179     }
180     for (i = 5; i < Math.ceil((zoom + 8) / 3.0); ++i) {
181       digit = (c2 >> (24 - (6 * (i - 5)))) & 0x3f;
182       str += char_array.charAt(digit);
183     }
184     for (i = 0; i < ((zoom + 8) % 3); ++i) str += "-";
185
186     // Called to interlace the bits in x and y, making a Morton code.
187     function interlace(x, y) {
188       var interlaced_x = x,
189           interlaced_y = y;
190       interlaced_x = (interlaced_x | (interlaced_x << 8)) & 0x00ff00ff;
191       interlaced_x = (interlaced_x | (interlaced_x << 4)) & 0x0f0f0f0f;
192       interlaced_x = (interlaced_x | (interlaced_x << 2)) & 0x33333333;
193       interlaced_x = (interlaced_x | (interlaced_x << 1)) & 0x55555555;
194       interlaced_y = (interlaced_y | (interlaced_y << 8)) & 0x00ff00ff;
195       interlaced_y = (interlaced_y | (interlaced_y << 4)) & 0x0f0f0f0f;
196       interlaced_y = (interlaced_y | (interlaced_y << 2)) & 0x33333333;
197       interlaced_y = (interlaced_y | (interlaced_y << 1)) & 0x55555555;
198       return (interlaced_x << 1) | interlaced_y;
199     }
200
201     var params = {};
202     var layers = this.getLayersCode().replace("M", "");
203
204     if (layers) {
205       params.layers = layers;
206     }
207
208     if (marker && this.hasLayer(marker)) {
209       params.m = "";
210     }
211
212     if (this._object) {
213       params[this._object.type] = this._object.id;
214     }
215
216     var query = Qs.stringify(params);
217     if (query) {
218       str += "?" + query;
219     }
220
221     return str;
222   },
223
224   getGeoUri: function (marker) {
225     var precision = OSM.zoomPrecision(this.getZoom()),
226         latLng,
227         params = {};
228
229     if (marker && this.hasLayer(marker)) {
230       latLng = marker.getLatLng().wrap();
231     } else {
232       latLng = this.getCenter();
233     }
234
235     params.lat = latLng.lat.toFixed(precision);
236     params.lon = latLng.lng.toFixed(precision);
237     params.zoom = this.getZoom();
238
239     return "geo:" + params.lat + "," + params.lon + "?z=" + params.zoom;
240   },
241
242   addObject: function (object, callback) {
243     var objectStyle = {
244       color: "#FF6200",
245       weight: 4,
246       opacity: 1,
247       fillOpacity: 0.5
248     };
249
250     var changesetStyle = {
251       weight: 4,
252       color: "#FF9500",
253       opacity: 1,
254       fillOpacity: 0,
255       interactive: false
256     };
257
258     var haloStyle = {
259       weight: 2.5,
260       radius: 20,
261       fillOpacity: 0.5,
262       color: "#FF6200"
263     };
264
265     this.removeObject();
266
267     if (object.type === "note") {
268       this._objectLoader = {
269         abort: function () {}
270       };
271
272       this._object = object;
273       this._objectLayer = L.featureGroup().addTo(this);
274
275       L.circleMarker(object.latLng, haloStyle).addTo(this._objectLayer);
276
277       if (object.icon) {
278         L.marker(object.latLng, {
279           icon: object.icon,
280           opacity: 1,
281           interactive: true
282         }).addTo(this._objectLayer);
283       }
284
285       if (callback) callback(this._objectLayer.getBounds());
286     } else { // element or changeset handled by L.OSM.DataLayer
287       var map = this;
288       this._objectLoader = $.ajax({
289         url: OSM.apiUrl(object),
290         dataType: "xml",
291         success: function (xml) {
292           map._object = object;
293
294           map._objectLayer = new L.OSM.DataLayer(null, {
295             styles: {
296               node: objectStyle,
297               way: objectStyle,
298               area: objectStyle,
299               changeset: changesetStyle
300             }
301           });
302
303           map._objectLayer.interestingNode = function (node, ways, relations) {
304             if (object.type === "node") {
305               return true;
306             } else if (object.type === "relation") {
307               for (var i = 0; i < relations.length; i++) {
308                 if (relations[i].members.indexOf(node) !== -1) return true;
309               }
310             } else {
311               return false;
312             }
313           };
314
315           map._objectLayer.addData(xml);
316           map._objectLayer.addTo(map);
317
318           if (callback) callback(map._objectLayer.getBounds());
319         }
320       });
321     }
322   },
323
324   removeObject: function () {
325     this._object = null;
326     if (this._objectLoader) this._objectLoader.abort();
327     if (this._objectLayer) this.removeLayer(this._objectLayer);
328   },
329
330   getState: function () {
331     return {
332       center: this.getCenter().wrap(),
333       zoom: this.getZoom(),
334       layers: this.getLayersCode()
335     };
336   },
337
338   setState: function (state, options) {
339     if (state.center) this.setView(state.center, state.zoom, options);
340     if (state.layers) this.updateLayers(state.layers);
341   },
342
343   setSidebarOverlaid: function (overlaid) {
344     var sidebarWidth = 350;
345     if (overlaid && !$("#content").hasClass("overlay-sidebar")) {
346       $("#content").addClass("overlay-sidebar");
347       this.invalidateSize({ pan: false });
348       if ($("html").attr("dir") !== "rtl") {
349         this.panBy([-sidebarWidth, 0], { animate: false });
350       }
351     } else if (!overlaid && $("#content").hasClass("overlay-sidebar")) {
352       if ($("html").attr("dir") !== "rtl") {
353         this.panBy([sidebarWidth, 0], { animate: false });
354       }
355       $("#content").removeClass("overlay-sidebar");
356       this.invalidateSize({ pan: false });
357     }
358     return this;
359   }
360 });
361
362 L.Icon.Default.imagePath = "/images/";
363
364 L.Icon.Default.imageUrls = {
365   "/images/marker-icon.png": OSM.MARKER_ICON,
366   "/images/marker-icon-2x.png": OSM.MARKER_ICON_2X,
367   "/images/marker-shadow.png": OSM.MARKER_SHADOW
368 };
369
370 L.extend(L.Icon.Default.prototype, {
371   _oldGetIconUrl: L.Icon.Default.prototype._getIconUrl,
372
373   _getIconUrl: function (name) {
374     var url = this._oldGetIconUrl(name);
375     return L.Icon.Default.imageUrls[url];
376   }
377 });
378
379 OSM.getUserIcon = function (url) {
380   return L.icon({
381     iconUrl: url || OSM.MARKER_RED,
382     iconSize: [25, 41],
383     iconAnchor: [12, 41],
384     popupAnchor: [1, -34],
385     shadowUrl: OSM.MARKER_SHADOW,
386     shadowSize: [41, 41]
387   });
388 };