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 index/search
11 //= require index/browse
12 //= require index/export
13 //= require index/notes
14 //= require index/history
15 //= require index/note
16 //= require index/new_note
17 //= require index/directions
18 //= require index/changeset
19 //= require index/query
22 $(document).ready(function () {
25 OSM.loadSidebarContent = function(path, callback) {
26 map.setSidebarOverlaid(false);
28 clearTimeout(loaderTimeout);
30 loaderTimeout = setTimeout(function() {
31 $('#sidebar_loader').show();
34 // IE<10 doesn't respect Vary: X-Requested-With header, so
35 // prevent caching the XHR response as a full-page URL.
36 if (path.indexOf('?') >= 0) {
48 complete: function(xhr) {
49 clearTimeout(loaderTimeout);
51 $('#sidebar_loader').hide();
53 var content = $(xhr.responseText);
55 if (xhr.getResponseHeader('X-Page-Title')) {
56 var title = xhr.getResponseHeader('X-Page-Title');
57 document.title = decodeURIComponent(escape(title));
61 .find('link[type="application/atom+xml"]')
65 .append(content.filter('link[type="application/atom+xml"]'));
67 $('#sidebar_content').html(content.not('link[type="application/atom+xml"]'));
76 var params = OSM.mapParams();
78 var map = new L.OSM.Map("map", {
83 map.attributionControl.setPrefix('');
85 map.updateLayers(params.layers);
87 map.on("baselayerchange", function (e) {
88 if (map.getZoom() > e.layer.options.maxZoom) {
89 map.setView(map.getCenter(), e.layer.options.maxZoom, { reset: true });
93 var position = $('html').attr('dir') === 'rtl' ? 'topleft' : 'topright';
95 L.OSM.zoom({position: position})
101 title: I18n.t('javascripts.map.locate.title'),
102 popup: I18n.t('javascripts.map.locate.popup')
106 var sidebar = L.OSM.sidebar('#map-ui')
111 layers: map.baseLayers,
139 if (OSM.STATUS !== 'api_offline' && OSM.STATUS !== 'database_offline') {
140 OSM.initializeNotes(map);
141 if (params.layers.indexOf(map.noteLayer.options.code) >= 0) {
142 map.addLayer(map.noteLayer);
145 OSM.initializeBrowse(map);
146 if (params.layers.indexOf(map.dataLayer.options.code) >= 0) {
147 map.addLayer(map.dataLayer);
151 $('.leaflet-control .control-button').tooltip({placement: 'left', container: 'body'});
153 var expiry = new Date();
154 expiry.setYear(expiry.getFullYear() + 10);
156 map.on('moveend layeradd layerremove', function() {
158 map.getCenter().wrap(),
163 $.removeCookie("_osm_location");
164 $.cookie("_osm_location", OSM.locationCookie(map), { expires: expiry, path: "/" });
167 if ($.cookie('_osm_welcome') === 'hide') {
168 $('.welcome').hide();
171 $('.welcome .close').on('click', function() {
172 $('.welcome').hide();
173 $.cookie("_osm_welcome", 'hide', { expires: expiry });
177 map.on('layeradd', function (e) {
178 if (e.layer.options) {
179 var goal = OSM.PIWIK.goals[e.layer.options.keyid];
182 $('body').trigger('piwikgoal', goal);
189 map.fitBounds(params.bounds);
191 map.setView([params.lat, params.lon], params.zoom);
194 var marker = L.marker([0, 0], {icon: OSM.getUserIcon()});
197 marker.setLatLng([params.mlat, params.mlon]).addTo(map);
200 $("#homeanchor").on("click", function(e) {
203 var data = $(this).data(),
204 center = L.latLng(data.lat, data.lon);
206 map.setView(center, data.zoom);
207 marker.setLatLng(center).addTo(map);
210 function remoteEditHandler(bbox, object) {
212 url = document.location.protocol === "https:" ?
213 "https://127.0.0.1:8112/load_and_zoom?" :
214 "http://127.0.0.1:8111/load_and_zoom?",
216 left: bbox.getWest() - 0.0001,
217 top: bbox.getNorth() + 0.0001,
218 right: bbox.getEast() + 0.0001,
219 bottom: bbox.getSouth() - 0.0001
222 if (object) query.select = object.type + object.id;
224 var iframe = $('<iframe>')
227 .attr("src", url + querystring.stringify(query))
228 .on('load', function() {
233 setTimeout(function () {
235 alert(I18n.t('site.index.remote_failed'));
243 $("a[data-editor=remote]").click(function(e) {
244 var params = OSM.mapParams(this.search);
245 remoteEditHandler(map.getBounds(), params.object);
249 if (OSM.params().edit_help) {
254 title: I18n.t('javascripts.edit_help')
258 $('body').one('click', function() {
259 $('#editanchor').tooltip('hide');
263 OSM.Index = function(map) {
266 page.pushstate = page.popstate = function() {
267 map.setSidebarOverlaid(true);
268 document.title = I18n.t('layouts.project_name.title');
271 page.load = function() {
272 var params = querystring.parse(location.search.substring(1));
274 $("#sidebar .search_form input[name=query]").value(params.query);
276 if (!("autofocus" in document.createElement("input"))) {
277 $("#sidebar .search_form input[name=query]").focus();
279 return map.getState();
285 OSM.Browse = function(map, type) {
288 page.pushstate = page.popstate = function(path, id) {
289 OSM.loadSidebarContent(path, function() {
294 page.load = function(path, id) {
295 addObject(type, id, true);
298 function addObject(type, id, center) {
299 map.addObject({type: type, id: parseInt(id)}, function(bounds) {
300 if (!window.location.hash && bounds.isValid() &&
301 (center || !map.getBounds().contains(bounds))) {
302 OSM.router.withoutMoveListener(function () {
303 map.fitBounds(bounds);
309 page.unload = function() {
316 var history = OSM.History(map);
318 OSM.router = OSM.Router(map, {
320 "/search": OSM.Search(map),
321 "/directions": OSM.Directions(map),
322 "/export": OSM.Export(map),
323 "/note/new": OSM.NewNote(map),
324 "/history/friends": history,
325 "/history/nearby": history,
327 "/user/:display_name/history": history,
328 "/note/:id": OSM.Note(map),
329 "/node/:id(/history)": OSM.Browse(map, 'node'),
330 "/way/:id(/history)": OSM.Browse(map, 'way'),
331 "/relation/:id(/history)": OSM.Browse(map, 'relation'),
332 "/changeset/:id": OSM.Changeset(map),
333 "/query": OSM.Query(map)
336 if (OSM.preferred_editor === "remote" && document.location.pathname === "/edit") {
337 remoteEditHandler(map.getBounds(), params.object);
338 OSM.router.setCurrentPath("/");
343 $(document).on("click", "a", function(e) {
344 if (e.isDefaultPrevented() || e.isPropagationStopped())
347 // Open links in a new tab as normal.
348 if (e.which > 1 || e.metaKey || e.ctrlKey || e.shiftKey || e.altKey)
351 // Ignore cross-protocol and cross-origin links.
352 if (location.protocol !== this.protocol || location.host !== this.host)
355 if (OSM.router.route(this.pathname + this.search + this.hash))
359 $(".search_form").on("submit", function(e) {
361 $("header").addClass("closed");
362 var query = $(this).find("input[name=query]").val();
364 OSM.router.route("/search?query=" + encodeURIComponent(query) + OSM.formatHash(map));
366 OSM.router.route("/");
370 $(".describe_location").on("click", function(e) {
372 var center = map.getCenter().wrap(),
373 precision = OSM.zoomPrecision(map.getZoom());
374 OSM.router.route("/search?query=" + encodeURIComponent(
375 center.lat.toFixed(precision) + "," + center.lng.toFixed(precision)