X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/e58a5c69d3e7cdedfcf6a056fdb74aa505c5e285..1e9a3f8664a1715e59211d25dd7168b95b85fe72:/app/assets/javascripts/index/contextmenu.js?ds=sidebyside diff --git a/app/assets/javascripts/index/contextmenu.js b/app/assets/javascripts/index/contextmenu.js index 8a4654b97..b19c5d34f 100644 --- a/app/assets/javascripts/index/contextmenu.js +++ b/app/assets/javascripts/index/contextmenu.js @@ -30,9 +30,12 @@ OSM.initializeContextMenu = function (map) { map.contextmenu.addItem({ text: I18n.t("javascripts.context.add_note"), callback: function addNoteHere(e) { - // I'd like this, instead of panning, to pass a query parameter about where to place the marker - map.panTo(e.latlng.wrap(), {animate: false}); - OSM.router.route("/note/new"); + var precision = OSM.zoomPrecision(map.getZoom()), + latlng = e.latlng.wrap(), + lat = latlng.lat.toFixed(precision), + lng = latlng.lng.toFixed(precision); + + OSM.router.route("/note/new?lat=" + lat + "&lon=" + lng); } }); @@ -68,7 +71,7 @@ OSM.initializeContextMenu = function (map) { }); map.on("mousedown", function (e) { - if (e.shiftKey) map.contextmenu.disable(); + if (e.originalEvent.shiftKey) map.contextmenu.disable(); }).on("mouseup", function () { map.contextmenu.enable(); });