]> git.openstreetmap.org Git - rails.git/blobdiff - app/assets/javascripts/router.js
Block submission of the export form when the area is too large
[rails.git] / app / assets / javascripts / router.js
index 200edd2664fa94e4b9aeaf78bceff3bcab3e64ac..ab206410703e81a4db32cecf914551d539b9e535 100644 (file)
@@ -113,8 +113,10 @@ OSM.Router = function(map, rts) {
       var path = url.replace(/#.*/, ''),
         route = routes.recognize(path);
       if (!route) return false;
-      window.history.pushState(OSM.parseHash(url), document.title, url);
       currentRoute.run('unload');
+      var state = OSM.parseHash(url);
+      map.setState(state);
+      window.history.pushState(state, document.title, url);
       currentPath = path;
       currentRoute = route;
       currentRoute.run('pushstate', currentPath);
@@ -167,6 +169,11 @@ OSM.Router = function(map, rts) {
     router.stateChange(loadState || {});
   };
 
+  router.setCurrentPath = function (path) {
+    currentPath = path;
+    currentRoute = routes.recognize(currentPath);
+  };
+
   map.on('moveend baselayerchange overlaylayerchange', router.updateHash);
   $(window).on('hashchange', router.hashUpdated);