-function updatelinks(loc, zoom, layers, bounds, object) {
- var toPrecision = zoomPrecision(zoom);
- bounds = normalBounds(bounds);
- var node;
-
- var lat = toPrecision(loc.lat),
- lon = toPrecision(loc.lon || loc.lng);
-
- if (bounds) {
- var minlon = toPrecision(bounds.getWest()),
- minlat = toPrecision(bounds.getSouth()),
- maxlon = toPrecision(bounds.getEast()),
- maxlat = toPrecision(bounds.getNorth());
- }
-
- $(".geolink").each(setGeolink);
- $("#shortlinkanchor").each(setShortlink);
-
- function setGeolink(index, link) {
- var args = getArgs(link.href);
-
- if ($(link).hasClass("llz")) {
- $.extend(args, {
- lat: lat,
- lon: lon,
- zoom: zoom
- });
- } else if (minlon && $(link).hasClass("bbox")) {
- $.extend(args, {
- bbox: minlon + "," + minlat + "," + maxlon + "," + maxlat
- });
+window.updateLinks = function (loc, zoom, layers, object) {
+ $(".geolink").each(function (index, link) {
+ let href = link.href.split(/[?#]/)[0];
+ const queryArgs = new URLSearchParams(link.search),
+ editlink = $(link).hasClass("editlink");
+
+ for (const arg of ["node", "way", "relation", "changeset", "note"]) {
+ queryArgs.delete(arg);