* Called as the user scrolls/zooms around to maniplate hrefs of the
* view tab and various other links
*/
-function updatelinks(loc, zoom, layers, object) {
+function updateLinks(loc, zoom, layers, object) {
$(".geolink").each(function(index, link) {
var href = link.href.split(/[?#]/)[0],
args = querystring.parse(link.search.substring(1)),
editlink = $(link).hasClass("editlink");
- if (object && editlink) args[object.type] = object.id;
+ if (object && editlink) {
+ delete args['node'];
+ delete args['way'];
+ delete args['relation'];
+ delete args['changeset'];
+
+ args[object.type] = object.id;
+ }
var query = querystring.stringify(args);
if (query) href += '?' + query;