X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/5384ee236cfbb1a33e018f9b85c63d765961a479..b65ad205d17014744d43b8a6ac12fe0ab67e8fb0:/app/assets/javascripts/index/note.js.erb diff --git a/app/assets/javascripts/index/note.js.erb b/app/assets/javascripts/index/note.js.erb index 8c2ab5c56..2a2599a3c 100644 --- a/app/assets/javascripts/index/note.js.erb +++ b/app/assets/javascripts/index/note.js.erb @@ -61,16 +61,17 @@ OSM.Note = function (map) { content.find("textarea").val('').trigger("input"); - var data = $('.details').data(); - if (!window.location.hash) { - var coords = data.coordinates.split(','); - OSM.route.moveListenerOff(); - map.once('moveend', OSM.route.moveListenerOn); - map.getZoom() > 15 ? map.panTo(coords) : map.setView(coords, 16); + var data = $('.details').data(), + latLng = data.coordinates.split(','); + + if (!window.location.hash || window.location.hash.match(/^#?c[0-9]+$/)) { + OSM.router.moveListenerOff(); + map.once('moveend', OSM.router.moveListenerOn); + map.getZoom() > 15 ? map.panTo(latLng) : map.setView(latLng, 16); } if (!map.hasLayer(halo)) { - halo = L.circleMarker(data.coordinates.split(','), { + halo = L.circleMarker(latLng, { weight: 2.5, radius: 20, fillOpacity: 0.5, @@ -80,7 +81,7 @@ OSM.Note = function (map) { } if (map.hasLayer(currentNote)) map.removeLayer(currentNote); - currentNote = L.marker(data.coordinates.split(','), { + currentNote = L.marker(latLng, { icon: noteIcons[data.status], opacity: 1, clickable: true