From: Tom Hughes Date: Sun, 16 Feb 2025 13:11:45 +0000 (+0000) Subject: Merge remote-tracking branch 'upstream/pull/5278' X-Git-Tag: live~158 X-Git-Url: https://git.openstreetmap.org./rails.git/commitdiff_plain/3d3b2b47964ec91ef1ab1946b7258a06665caced Merge remote-tracking branch 'upstream/pull/5278' --- 3d3b2b47964ec91ef1ab1946b7258a06665caced diff --cc app/assets/javascripts/index.js index 194ed82f7,2d943b44d..4903703cd --- a/app/assets/javascripts/index.js +++ b/app/assets/javascripts/index.js @@@ -295,22 -325,21 +295,22 @@@ $(document).ready(function () }; OSM.Browse = function (map, type) { - var page = {}; + const page = {}; - page.pushstate = page.popstate = function (path, id) { + page.pushstate = page.popstate = function (path, id, version) { OSM.loadSidebarContent(path, function () { - addObject(type, id); + addObject(type, id, version); }); }; - page.load = function (path, id) { - addObject(type, id, true); + page.load = function (path, id, version) { + addObject(type, id, version, true); }; - function addObject(type, id, center) { + function addObject(type, id, version, center) { + const hashParams = OSM.parseHash(window.location.hash); - map.addObject({ type: type, id: parseInt(id, 10) }, function (bounds) { + map.addObject({ type: type, id: parseInt(id, 10), version: version && parseInt(version, 10) }, function (bounds) { - if (!window.location.hash && bounds.isValid() && + if (!hashParams.center && bounds.isValid() && (center || !map.getBounds().contains(bounds))) { OSM.router.withoutMoveListener(function () { map.fitBounds(bounds);