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