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 index/search
9 //= require index/browse
10 //= require index/export
11 //= require index/notes
12 //= require index/history
13 //= require index/note
14 //= require index/new_note
20 OSM.loadSidebarContent = function(path, callback) {
21 clearTimeout(loaderTimeout);
23 loaderTimeout = setTimeout(function() {
24 $('#sidebar_loader').show();
27 // IE<10 doesn't respect Vary: X-Requested-With header, so
28 // prevent caching the XHR response as a full-page URL.
29 if (path.indexOf('?') >= 0) {
41 complete: function(xhr) {
42 clearTimeout(loaderTimeout);
44 $('#sidebar_loader').hide();
46 var content = $(xhr.responseText);
48 if (xhr.getResponseHeader('X-Page-Title')) {
49 var title = xhr.getResponseHeader('X-Page-Title');
50 document.title = decodeURIComponent(escape(title));
54 .find('link[type="application/atom+xml"]')
58 .append(content.filter('link[type="application/atom+xml"]'));
60 $('#sidebar_content').html(content.not('link[type="application/atom+xml"]'));
70 $(document).ready(function () {
71 var params = OSM.mapParams();
73 var map = new L.OSM.Map("map", {
78 map.attributionControl.setPrefix('');
80 map.updateLayers(params.layers);
82 map.on("baselayerchange", function (e) {
83 if (map.getZoom() > e.layer.options.maxZoom) {
84 map.setView(map.getCenter(), e.layer.options.maxZoom, { reset: true });
88 var position = $('html').attr('dir') === 'rtl' ? 'topleft' : 'topright';
90 L.OSM.zoom({position: position})
96 title: I18n.t('javascripts.map.locate.title'),
97 popup: I18n.t('javascripts.map.locate.popup')
101 var sidebar = L.OSM.sidebar('#map-ui')
106 layers: map.baseLayers,
129 if (OSM.STATUS != 'api_offline' && OSM.STATUS != 'database_offline') {
130 initializeNotes(map);
131 if (params.layers.indexOf(map.noteLayer.options.code) >= 0) {
132 map.addLayer(map.noteLayer);
135 initializeBrowse(map);
136 if (params.layers.indexOf(map.dataLayer.options.code) >= 0) {
137 map.addLayer(map.dataLayer);
141 $('.leaflet-control .control-button').tooltip({placement: 'left', container: 'body'});
143 var expiry = new Date();
144 expiry.setYear(expiry.getFullYear() + 10);
146 map.on('moveend layeradd layerremove', function() {
148 map.getCenter().wrap(),
153 $.removeCookie("_osm_location");
154 $.cookie("_osm_location", OSM.locationCookie(map), { expires: expiry, path: "/" });
157 if ($.cookie('_osm_sotm') == 'hide') {
161 $('#sotm .close').on('click', function() {
163 $.cookie("_osm_sotm", 'hide', { expires: expiry });
166 if ($.cookie('_osm_welcome') == 'hide') {
167 $('.welcome').hide();
170 $('.welcome .close').on('click', function() {
171 $('.welcome').hide();
172 $.cookie("_osm_welcome", 'hide', { expires: expiry });
176 map.on('layeradd', function (e) {
177 if (e.layer.options) {
178 var goal = OSM.PIWIK.goals[e.layer.options.keyid];
181 $('body').trigger('piwikgoal', goal);
188 map.fitBounds(params.bounds);
190 map.setView([params.lat, params.lon], params.zoom);
193 var marker = L.marker([0, 0], {icon: getUserIcon()});
196 marker.setLatLng([params.mlat, params.mlon]).addTo(map);
199 $("#homeanchor").on("click", function(e) {
202 var data = $(this).data(),
203 center = L.latLng(data.lat, data.lon);
205 map.setView(center, data.zoom);
206 marker.setLatLng(center).addTo(map);
209 $("a[data-editor=remote]").click(function(e) {
210 var params = OSM.mapParams(this.search);
211 remoteEditHandler(map.getBounds(), params.object);
215 if (OSM.params().edit_help) {
220 title: I18n.t('javascripts.edit_help')
224 $('body').one('click', function() {
225 $('#editanchor').tooltip('hide');
229 OSM.Index = function(map) {
232 page.pushstate = function() {
233 $("#content").addClass("overlay-sidebar");
234 map.invalidateSize({pan: false})
235 .panBy([-350, 0], {animate: false});
236 document.title = I18n.t('layouts.project_name.title');
239 page.load = function() {
240 if (!("autofocus" in document.createElement("input"))) {
241 $("#sidebar .search_form input[name=query]").focus();
243 return map.getState();
246 page.popstate = function() {
247 $("#content").addClass("overlay-sidebar");
248 map.invalidateSize({pan: false});
249 document.title = I18n.t('layouts.project_name.title');
252 page.unload = function() {
253 map.panBy([350, 0], {animate: false});
254 $("#content").removeClass("overlay-sidebar");
255 map.invalidateSize({pan: false});
261 OSM.Browse = function(map, type) {
264 page.pushstate = page.popstate = function(path, id) {
265 OSM.loadSidebarContent(path, function() {
270 page.load = function(path, id) {
271 addObject(type, id, true);
274 function addObject(type, id, center) {
275 var bounds = map.addObject({type: type, id: parseInt(id)}, function(bounds) {
276 if (!window.location.hash && bounds.isValid() &&
277 (center || !map.getBounds().contains(bounds))) {
278 OSM.router.withoutMoveListener(function () {
279 map.fitBounds(bounds);
285 page.unload = function() {
292 var history = OSM.History(map);
294 OSM.router = OSM.Router(map, {
296 "/search": OSM.Search(map),
297 "/export": OSM.Export(map),
298 "/note/new": OSM.NewNote(map),
299 "/history/friends": history,
300 "/history/nearby": history,
302 "/user/:display_name/history": history,
303 "/note/:id": OSM.Note(map),
304 "/node/:id(/history)": OSM.Browse(map, 'node'),
305 "/way/:id(/history)": OSM.Browse(map, 'way'),
306 "/relation/:id(/history)": OSM.Browse(map, 'relation'),
307 "/changeset/:id": OSM.Browse(map, 'changeset')
310 if (OSM.preferred_editor == "remote" && document.location.pathname == "/edit") {
311 remoteEditHandler(map.getBounds(), params.object);
312 OSM.router.setCurrentPath("/");
317 $(document).on("click", "a", function(e) {
318 if (e.isDefaultPrevented() || e.isPropagationStopped())
321 // Open links in a new tab as normal.
322 if (e.which > 1 || e.metaKey || e.ctrlKey || e.shiftKey || e.altKey)
325 // Ignore cross-protocol and cross-origin links.
326 if (location.protocol !== this.protocol || location.host !== this.host)
329 if (OSM.router.route(this.pathname + this.search + this.hash))
333 $(".search_form").on("submit", function(e) {
335 $("header").addClass("closed");
336 var query = $(this).find("input[name=query]").val();
338 OSM.router.route("/search?query=" + encodeURIComponent(query) + OSM.formatHash(map));
340 OSM.router.route("/");
344 $(".describe_location").on("click", function(e) {
346 var center = map.getCenter().wrap(),
347 precision = OSM.zoomPrecision(map.getZoom());
348 OSM.router.route("/search?query=" + encodeURIComponent(
349 center.lat.toFixed(precision) + "," + center.lng.toFixed(precision)