]> git.openstreetmap.org Git - rails.git/blob - app/assets/javascripts/leaflet.map.js
Merge remote-tracking branch 'upstream/pull/2296'
[rails.git] / app / assets / javascripts / leaflet.map.js
1 L.extend(L.LatLngBounds.prototype, {
2   getSize: function () {
3     return (this._northEast.lat - this._southWest.lat) *
4            (this._northEast.lng - this._southWest.lng);
5   },
6
7   wrap: function () {
8     return new L.LatLngBounds(this._southWest.wrap(), this._northEast.wrap());
9   }
10 });
11
12 L.OSM.Map = L.Map.extend({
13   initialize: function (id, options) {
14     L.Map.prototype.initialize.call(this, id, options);
15
16     var copyright = I18n.t("javascripts.map.copyright", { copyright_url: "/copyright" });
17     var donate = I18n.t("javascripts.map.donate_link_text", { donate_url: "https://donate.openstreetmap.org" });
18     var terms = I18n.t("javascripts.map.terms", { terms_url: "https://wiki.osmfoundation.org/wiki/Terms_of_Use" });
19
20     this.baseLayers = [];
21
22     this.baseLayers.push(new L.OSM.Mapnik({
23       attribution: copyright + " ♥ " + donate + ". " + terms,
24       code: "M",
25       keyid: "mapnik",
26       name: I18n.t("javascripts.map.base.standard")
27     }));
28
29     if (OSM.THUNDERFOREST_KEY) {
30       this.baseLayers.push(new L.OSM.CycleMap({
31         attribution: copyright + ". Tiles courtesy of <a href='https://www.thunderforest.com/' target='_blank'>Andy Allan</a>. " + terms,
32         apikey: OSM.THUNDERFOREST_KEY,
33         code: "C",
34         keyid: "cyclemap",
35         name: I18n.t("javascripts.map.base.cycle_map")
36       }));
37
38       this.baseLayers.push(new L.OSM.TransportMap({
39         attribution: copyright + ". Tiles courtesy of <a href='https://www.thunderforest.com/' target='_blank'>Andy Allan</a>. " + terms,
40         apikey: OSM.THUNDERFOREST_KEY,
41         code: "T",
42         keyid: "transportmap",
43         name: I18n.t("javascripts.map.base.transport_map")
44       }));
45     }
46
47     this.baseLayers.push(new L.OSM.HOT({
48       attribution: copyright + ". Tiles style by <a href='https://www.hotosm.org/' target='_blank'>Humanitarian OpenStreetMap Team</a> hosted by <a href='https://openstreetmap.fr/' target='_blank'>OpenStreetMap France</a>. " + terms,
49       code: "H",
50       keyid: "hot",
51       name: I18n.t("javascripts.map.base.hot")
52     }));
53
54     this.noteLayer = new L.FeatureGroup();
55     this.noteLayer.options = { code: "N" };
56
57     this.dataLayer = new L.OSM.DataLayer(null);
58     this.dataLayer.options.code = "D";
59
60     this.gpsLayer = new L.OSM.GPS({
61       pane: "overlayPane",
62       code: "G",
63       name: I18n.t("javascripts.map.base.gps")
64     });
65
66     this.on("layeradd", function (event) {
67       if (this.baseLayers.indexOf(event.layer) >= 0) {
68         this.setMaxZoom(event.layer.options.maxZoom);
69       }
70     });
71   },
72
73   updateLayers: function (layerParam) {
74     var layers = layerParam || "M",
75         layersAdded = "";
76
77     for (var i = this.baseLayers.length - 1; i >= 0; i--) {
78       if (layers.indexOf(this.baseLayers[i].options.code) >= 0) {
79         this.addLayer(this.baseLayers[i]);
80         layersAdded = layersAdded + this.baseLayers[i].options.code;
81       } else if (i === 0 && layersAdded === "") {
82         this.addLayer(this.baseLayers[i]);
83       } else {
84         this.removeLayer(this.baseLayers[i]);
85       }
86     }
87   },
88
89   getLayersCode: function () {
90     var layerConfig = "";
91     this.eachLayer(function (layer) {
92       if (layer.options && layer.options.code) {
93         layerConfig += layer.options.code;
94       }
95     });
96     return layerConfig;
97   },
98
99   getMapBaseLayerId: function () {
100     var baseLayerId;
101     this.eachLayer(function (layer) {
102       if (layer.options && layer.options.keyid) baseLayerId = layer.options.keyid;
103     });
104     return baseLayerId;
105   },
106
107   getUrl: function (marker) {
108     var precision = OSM.zoomPrecision(this.getZoom()),
109         params = {};
110
111     if (marker && this.hasLayer(marker)) {
112       var latLng = marker.getLatLng().wrap();
113       params.mlat = latLng.lat.toFixed(precision);
114       params.mlon = latLng.lng.toFixed(precision);
115     }
116
117     var url = window.location.protocol + "//" + OSM.SERVER_URL + "/",
118         query = querystring.stringify(params),
119         hash = OSM.formatHash(this);
120
121     if (query) url += "?" + query;
122     if (hash) url += hash;
123
124     return url;
125   },
126
127   getShortUrl: function (marker) {
128     var zoom = this.getZoom(),
129         latLng = marker && this.hasLayer(marker) ? marker.getLatLng().wrap() : this.getCenter().wrap(),
130         str = window.location.hostname.match(/^www\.openstreetmap\.org/i) ?
131           window.location.protocol + "//osm.org/go/" :
132           window.location.protocol + "//" + window.location.hostname + "/go/",
133         char_array = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789_~",
134         x = Math.round((latLng.lng + 180.0) * ((1 << 30) / 90.0)),
135         y = Math.round((latLng.lat + 90.0) * ((1 << 30) / 45.0)),
136         // JavaScript only has to keep 32 bits of bitwise operators, so this has to be
137         // done in two parts. each of the parts c1/c2 has 30 bits of the total in it
138         // and drops the last 4 bits of the full 64 bit Morton code.
139         c1 = interlace(x >>> 17, y >>> 17), c2 = interlace((x >>> 2) & 0x7fff, (y >>> 2) & 0x7fff),
140         digit,
141         i;
142
143     for (i = 0; i < Math.ceil((zoom + 8) / 3.0) && i < 5; ++i) {
144       digit = (c1 >> (24 - (6 * i))) & 0x3f;
145       str += char_array.charAt(digit);
146     }
147     for (i = 5; i < Math.ceil((zoom + 8) / 3.0); ++i) {
148       digit = (c2 >> (24 - (6 * (i - 5)))) & 0x3f;
149       str += char_array.charAt(digit);
150     }
151     for (i = 0; i < ((zoom + 8) % 3); ++i) str += "-";
152
153     // Called to interlace the bits in x and y, making a Morton code.
154     function interlace(x, y) {
155       var interlaced_x = x,
156           interlaced_y = y;
157       interlaced_x = (interlaced_x | (interlaced_x << 8)) & 0x00ff00ff;
158       interlaced_x = (interlaced_x | (interlaced_x << 4)) & 0x0f0f0f0f;
159       interlaced_x = (interlaced_x | (interlaced_x << 2)) & 0x33333333;
160       interlaced_x = (interlaced_x | (interlaced_x << 1)) & 0x55555555;
161       interlaced_y = (interlaced_y | (interlaced_y << 8)) & 0x00ff00ff;
162       interlaced_y = (interlaced_y | (interlaced_y << 4)) & 0x0f0f0f0f;
163       interlaced_y = (interlaced_y | (interlaced_y << 2)) & 0x33333333;
164       interlaced_y = (interlaced_y | (interlaced_y << 1)) & 0x55555555;
165       return (interlaced_x << 1) | interlaced_y;
166     }
167
168     var params = {};
169     var layers = this.getLayersCode().replace("M", "");
170
171     if (layers) {
172       params.layers = layers;
173     }
174
175     if (marker && this.hasLayer(marker)) {
176       params.m = "";
177     }
178
179     if (this._object) {
180       params[this._object.type] = this._object.id;
181     }
182
183     var query = querystring.stringify(params);
184     if (query) {
185       str += "?" + query;
186     }
187
188     return str;
189   },
190
191   getGeoUri: function (marker) {
192     var precision = OSM.zoomPrecision(this.getZoom()),
193         latLng,
194         params = {};
195
196     if (marker && this.hasLayer(marker)) {
197       latLng = marker.getLatLng().wrap();
198     } else {
199       latLng = this.getCenter();
200     }
201
202     params.lat = latLng.lat.toFixed(precision);
203     params.lon = latLng.lng.toFixed(precision);
204     params.zoom = this.getZoom();
205
206     return "geo:" + params.lat + "," + params.lon + "?z=" + params.zoom;
207   },
208
209   addObject: function (object, callback) {
210     var objectStyle = {
211       color: "#FF6200",
212       weight: 4,
213       opacity: 1,
214       fillOpacity: 0.5
215     };
216
217     var changesetStyle = {
218       weight: 4,
219       color: "#FF9500",
220       opacity: 1,
221       fillOpacity: 0,
222       interactive: false
223     };
224
225     this.removeObject();
226
227     var map = this;
228     this._objectLoader = $.ajax({
229       url: OSM.apiUrl(object),
230       dataType: "xml",
231       success: function (xml) {
232         map._object = object;
233
234         map._objectLayer = new L.OSM.DataLayer(null, {
235           styles: {
236             node: objectStyle,
237             way: objectStyle,
238             area: objectStyle,
239             changeset: changesetStyle
240           }
241         });
242
243         map._objectLayer.interestingNode = function (node, ways, relations) {
244           if (object.type === "node") {
245             return true;
246           } else if (object.type === "relation") {
247             for (var i = 0; i < relations.length; i++) {
248               if (relations[i].members.indexOf(node) !== -1) return true;
249             }
250           } else {
251             return false;
252           }
253         };
254
255         map._objectLayer.addData(xml);
256         map._objectLayer.addTo(map);
257
258         if (callback) callback(map._objectLayer.getBounds());
259       }
260     });
261   },
262
263   removeObject: function () {
264     this._object = null;
265     if (this._objectLoader) this._objectLoader.abort();
266     if (this._objectLayer) this.removeLayer(this._objectLayer);
267   },
268
269   getState: function () {
270     return {
271       center: this.getCenter().wrap(),
272       zoom: this.getZoom(),
273       layers: this.getLayersCode()
274     };
275   },
276
277   setState: function (state, options) {
278     if (state.center) this.setView(state.center, state.zoom, options);
279     if (state.layers) this.updateLayers(state.layers);
280   },
281
282   setSidebarOverlaid: function (overlaid) {
283     if (overlaid && !$("#content").hasClass("overlay-sidebar")) {
284       $("#content").addClass("overlay-sidebar");
285       this.invalidateSize({ pan: false })
286         .panBy([-350, 0], { animate: false });
287     } else if (!overlaid && $("#content").hasClass("overlay-sidebar")) {
288       this.panBy([350, 0], { animate: false });
289       $("#content").removeClass("overlay-sidebar");
290       this.invalidateSize({ pan: false });
291     }
292     return this;
293   }
294 });
295
296 L.Icon.Default.imagePath = "/images/";
297
298 L.Icon.Default.imageUrls = {
299   "/images/marker-icon.png": OSM.MARKER_ICON,
300   "/images/marker-icon-2x.png": OSM.MARKER_ICON_2X,
301   "/images/marker-shadow.png": OSM.MARKER_SHADOW
302 };
303
304 L.extend(L.Icon.Default.prototype, {
305   _oldGetIconUrl: L.Icon.Default.prototype._getIconUrl,
306
307   _getIconUrl: function (name) {
308     var url = this._oldGetIconUrl(name);
309     return L.Icon.Default.imageUrls[url];
310   }
311 });
312
313 OSM.getUserIcon = function (url) {
314   return L.icon({
315     iconUrl: url || OSM.MARKER_RED,
316     iconSize: [25, 41],
317     iconAnchor: [12, 41],
318     popupAnchor: [1, -34],
319     shadowUrl: OSM.MARKER_SHADOW,
320     shadowSize: [41, 41]
321   });
322 };