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