]> git.openstreetmap.org Git - rails.git/blob - app/assets/javascripts/index.js
Update bundle
[rails.git] / app / assets / javascripts / index.js
1 //= require_self
2 //= require leaflet.sidebar
3 //= require leaflet.sidebar-pane
4 //= require leaflet.locatecontrol/dist/L.Control.Locate.umd
5 //= require leaflet.locate
6 //= require leaflet.layers
7 //= require leaflet.key
8 //= require leaflet.note
9 //= require leaflet.share
10 //= require leaflet.polyline
11 //= require leaflet.query
12 //= require leaflet.contextmenu
13 //= require index/contextmenu
14 //= require index/search
15 //= require index/layers/data
16 //= require index/export
17 //= require index/layers/notes
18 //= require index/history
19 //= require index/note
20 //= require index/new_note
21 //= require index/directions
22 //= require index/changeset
23 //= require index/query
24 //= require router
25 //= require qs/dist/qs
26
27 $(document).ready(function () {
28   var map = new L.OSM.Map("map", {
29     zoomControl: false,
30     layerControl: false,
31     contextmenu: true,
32     worldCopyJump: true
33   });
34
35   OSM.loadSidebarContent = function (path, callback) {
36     var content_path = path;
37
38     map.setSidebarOverlaid(false);
39
40     $("#sidebar_loader").show().addClass("delayed-fade-in");
41
42     // IE<10 doesn't respect Vary: X-Requested-With header, so
43     // prevent caching the XHR response as a full-page URL.
44     if (content_path.indexOf("?") >= 0) {
45       content_path += "&xhr=1";
46     } else {
47       content_path += "?xhr=1";
48     }
49
50     $("#sidebar_content")
51       .empty();
52
53     $.ajax({
54       url: content_path,
55       dataType: "html",
56       complete: function (xhr) {
57         $("#flash").empty();
58         $("#sidebar_loader").removeClass("delayed-fade-in").hide();
59
60         var content = $(xhr.responseText);
61
62         if (xhr.getResponseHeader("X-Page-Title")) {
63           var title = xhr.getResponseHeader("X-Page-Title");
64           document.title = decodeURIComponent(title);
65         }
66
67         $("head")
68           .find("link[type=\"application/atom+xml\"]")
69           .remove();
70
71         $("head")
72           .append(content.filter("link[type=\"application/atom+xml\"]"));
73
74         $("#sidebar_content").html(content.not("link[type=\"application/atom+xml\"]"));
75
76         if (callback) {
77           callback();
78         }
79       }
80     });
81   };
82
83   var params = OSM.mapParams();
84
85   map.attributionControl.setPrefix("");
86
87   map.updateLayers(params.layers);
88
89   map.on("baselayerchange", function (e) {
90     if (map.getZoom() > e.layer.options.maxZoom) {
91       map.setView(map.getCenter(), e.layer.options.maxZoom, { reset: true });
92     }
93   });
94
95   var sidebar = L.OSM.sidebar("#map-ui")
96     .addTo(map);
97
98   var position = $("html").attr("dir") === "rtl" ? "topleft" : "topright";
99
100   function addControlGroup(controls) {
101     controls.forEach(function (control) {
102       control.addTo(map);
103     });
104
105     var firstContainer = controls[0].getContainer();
106     $(firstContainer).find(".control-button").first()
107       .addClass("control-button-first");
108
109     var lastContainer = controls[controls.length - 1].getContainer();
110     $(lastContainer).find(".control-button").last()
111       .addClass("control-button-last");
112   }
113
114   addControlGroup([
115     L.OSM.zoom({ position: position }),
116     L.OSM.locate({ position: position })
117   ]);
118
119   addControlGroup([
120     L.OSM.layers({
121       position: position,
122       layers: map.baseLayers,
123       sidebar: sidebar
124     }),
125     L.OSM.key({
126       position: position,
127       sidebar: sidebar
128     }),
129     L.OSM.share({
130       "position": position,
131       "sidebar": sidebar,
132       "short": true
133     })
134   ]);
135
136   addControlGroup([
137     L.OSM.note({
138       position: position,
139       sidebar: sidebar
140     })
141   ]);
142
143   addControlGroup([
144     L.OSM.query({
145       position: position,
146       sidebar: sidebar
147     })
148   ]);
149
150   L.control.scale()
151     .addTo(map);
152
153   OSM.initializeContextMenu(map);
154
155   if (OSM.STATUS !== "api_offline" && OSM.STATUS !== "database_offline") {
156     OSM.initializeNotesLayer(map);
157     if (params.layers.indexOf(map.noteLayer.options.code) >= 0) {
158       map.addLayer(map.noteLayer);
159     }
160
161     OSM.initializeDataLayer(map);
162     if (params.layers.indexOf(map.dataLayer.options.code) >= 0) {
163       map.addLayer(map.dataLayer);
164     }
165
166     if (params.layers.indexOf(map.gpsLayer.options.code) >= 0) {
167       map.addLayer(map.gpsLayer);
168     }
169   }
170
171   $(".leaflet-control .control-button").tooltip({ placement: "left", container: "body" });
172
173   var expiry = new Date();
174   expiry.setYear(expiry.getFullYear() + 10);
175
176   map.on("moveend layeradd layerremove", function () {
177     updateLinks(
178       map.getCenter().wrap(),
179       map.getZoom(),
180       map.getLayersCode(),
181       map._object);
182
183     Cookies.set("_osm_location", OSM.locationCookie(map), { secure: true, expires: expiry, path: "/", samesite: "lax" });
184   });
185
186   if (Cookies.get("_osm_welcome") !== "hide") {
187     $(".welcome").removeAttr("hidden");
188   }
189
190   $(".welcome .btn-close").on("click", function () {
191     $(".welcome").hide();
192     Cookies.set("_osm_welcome", "hide", { secure: true, expires: expiry, path: "/", samesite: "lax" });
193   });
194
195   var bannerExpiry = new Date();
196   bannerExpiry.setYear(bannerExpiry.getFullYear() + 1);
197
198   $("#banner .btn-close").on("click", function (e) {
199     var cookieId = e.target.id;
200     $("#banner").hide();
201     e.preventDefault();
202     if (cookieId) {
203       Cookies.set(cookieId, "hide", { secure: true, expires: bannerExpiry, path: "/", samesite: "lax" });
204     }
205   });
206
207   if (OSM.MATOMO) {
208     map.on("layeradd", function (e) {
209       if (e.layer.options) {
210         var goal = OSM.MATOMO.goals[e.layer.options.keyid];
211
212         if (goal) {
213           $("body").trigger("matomogoal", goal);
214         }
215       }
216     });
217   }
218
219   if (params.bounds) {
220     map.fitBounds(params.bounds);
221   } else {
222     map.setView([params.lat, params.lon], params.zoom);
223   }
224
225   if (params.marker) {
226     L.marker([params.mlat, params.mlon]).addTo(map);
227   }
228
229   $("#homeanchor").on("click", function (e) {
230     e.preventDefault();
231
232     var data = $(this).data(),
233         center = L.latLng(data.lat, data.lon);
234
235     map.setView(center, data.zoom);
236     L.marker(center, { icon: OSM.getUserIcon() }).addTo(map);
237   });
238
239   function remoteEditHandler(bbox, object) {
240     var remoteEditHost = "http://127.0.0.1:8111",
241         osmHost = location.protocol + "//" + location.host,
242         query = {
243           left: bbox.getWest() - 0.0001,
244           top: bbox.getNorth() + 0.0001,
245           right: bbox.getEast() + 0.0001,
246           bottom: bbox.getSouth() - 0.0001
247         };
248
249     if (object && object.type !== "note") query.select = object.type + object.id; // can't select notes
250     sendRemoteEditCommand(remoteEditHost + "/load_and_zoom?" + Qs.stringify(query), function () {
251       if (object && object.type === "note") {
252         var noteQuery = { url: osmHost + OSM.apiUrl(object) };
253         sendRemoteEditCommand(remoteEditHost + "/import?" + Qs.stringify(noteQuery));
254       }
255     });
256
257     function sendRemoteEditCommand(url, callback) {
258       var iframe = $("<iframe>");
259       var timeoutId = setTimeout(function () {
260         alert(I18n.t("site.index.remote_failed"));
261         iframe.remove();
262       }, 5000);
263
264       iframe
265         .hide()
266         .appendTo("body")
267         .attr("src", url)
268         .on("load", function () {
269           clearTimeout(timeoutId);
270           iframe.remove();
271           if (callback) callback();
272         });
273     }
274
275     return false;
276   }
277
278   $("a[data-editor=remote]").click(function (e) {
279     var params = OSM.mapParams(this.search);
280     remoteEditHandler(map.getBounds(), params.object);
281     e.preventDefault();
282   });
283
284   if (OSM.params().edit_help) {
285     $("#editanchor")
286       .removeAttr("title")
287       .tooltip({
288         placement: "bottom",
289         title: I18n.t("javascripts.edit_help")
290       })
291       .tooltip("show");
292
293     $("body").one("click", function () {
294       $("#editanchor").tooltip("hide");
295     });
296   }
297
298   OSM.Index = function (map) {
299     var page = {};
300
301     page.pushstate = page.popstate = function () {
302       map.setSidebarOverlaid(true);
303       document.title = I18n.t("layouts.project_name.title");
304     };
305
306     page.load = function () {
307       var params = Qs.parse(location.search.substring(1));
308       if (params.query) {
309         $("#sidebar .search_form input[name=query]").value(params.query);
310       }
311       if (!("autofocus" in document.createElement("input"))) {
312         $("#sidebar .search_form input[name=query]").focus();
313       }
314       return map.getState();
315     };
316
317     return page;
318   };
319
320   OSM.Browse = function (map, type) {
321     var page = {};
322
323     page.pushstate = page.popstate = function (path, id) {
324       OSM.loadSidebarContent(path, function () {
325         addObject(type, id);
326       });
327     };
328
329     page.load = function (path, id) {
330       addObject(type, id, true);
331     };
332
333     function addObject(type, id, center) {
334       map.addObject({ type: type, id: parseInt(id, 10) }, function (bounds) {
335         if (!window.location.hash && bounds.isValid() &&
336             (center || !map.getBounds().contains(bounds))) {
337           OSM.router.withoutMoveListener(function () {
338             map.fitBounds(bounds);
339           });
340         }
341       });
342     }
343
344     page.unload = function () {
345       map.removeObject();
346     };
347
348     return page;
349   };
350
351   OSM.OldBrowse = function () {
352     var page = {};
353
354     page.pushstate = page.popstate = function (path) {
355       OSM.loadSidebarContent(path);
356     };
357
358     return page;
359   };
360
361   var history = OSM.History(map);
362
363   OSM.router = OSM.Router(map, {
364     "/": OSM.Index(map),
365     "/search": OSM.Search(map),
366     "/directions": OSM.Directions(map),
367     "/export": OSM.Export(map),
368     "/note/new": OSM.NewNote(map),
369     "/history/friends": history,
370     "/history/nearby": history,
371     "/history": history,
372     "/user/:display_name/history": history,
373     "/note/:id": OSM.Note(map),
374     "/node/:id(/history)": OSM.Browse(map, "node"),
375     "/node/:id/history/:version": OSM.OldBrowse(),
376     "/way/:id(/history)": OSM.Browse(map, "way"),
377     "/way/:id/history/:version": OSM.OldBrowse(),
378     "/relation/:id(/history)": OSM.Browse(map, "relation"),
379     "/relation/:id/history/:version": OSM.OldBrowse(),
380     "/changeset/:id": OSM.Changeset(map),
381     "/query": OSM.Query(map)
382   });
383
384   if (OSM.preferred_editor === "remote" && document.location.pathname === "/edit") {
385     remoteEditHandler(map.getBounds(), params.object);
386     OSM.router.setCurrentPath("/");
387   }
388
389   OSM.router.load();
390
391   $(document).on("click", "a", function (e) {
392     if (e.isDefaultPrevented() || e.isPropagationStopped() || $(e.target).data("turbo")) {
393       return;
394     }
395
396     // Open links in a new tab as normal.
397     if (e.which > 1 || e.metaKey || e.ctrlKey || e.shiftKey || e.altKey) {
398       return;
399     }
400
401     // Ignore cross-protocol and cross-origin links.
402     if (location.protocol !== this.protocol || location.host !== this.host) {
403       return;
404     }
405
406     if (OSM.router.route(this.pathname + this.search + this.hash)) {
407       e.preventDefault();
408       if (this.pathname !== "/directions") {
409         $("header").addClass("closed");
410       }
411     }
412   });
413
414   $(document).on("click", "#sidebar_content .btn-close", function () {
415     OSM.router.route("/" + OSM.formatHash(map));
416   });
417 });