+ map.contextmenu.addItem({
+ text: "Add a note here",
+ 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");
+ }
+ });
+
+ map.contextmenu.addItem({
+ text: "Show address",
+ callback: function describeLocation(e) {
+ var precision = OSM.zoomPrecision(map.getZoom()),
+ latlng = e.latlng.wrap(),
+ lat = latlng.lat.toFixed(precision),
+ lng = latlng.lng.toFixed(precision);
+
+ OSM.router.route("/search?query=" + encodeURIComponent(lat + "," + lng));
+ }
+ });
+
+ map.contextmenu.addItem({
+ text: "Query features",
+ callback: function queryFeatures(e) {
+ var precision = OSM.zoomPrecision(map.getZoom()),
+ latlng = e.latlng.wrap(),
+ lat = latlng.lat.toFixed(precision),
+ lng = latlng.lng.toFixed(precision);
+
+ OSM.router.route("/query?lat=" + lat + "&lon=" + lng);
+ }
+ });
+
+ map.contextmenu.addItem({
+ text: "Centre map here",
+ callback: function centreMap(e) {
+ map.panTo(e.latlng);
+ }
+ });
+
+ map.on("mousedown", function (e) {
+ if (e.shiftKey) map.contextmenu.disable();
+ }).on("mouseup", function () {
+ map.contextmenu.enable();
+ });