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