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