]> git.openstreetmap.org Git - rails.git/blobdiff - app/assets/javascripts/index.js
Remove highlight from map when clicking on a feature
[rails.git] / app / assets / javascripts / index.js
index ddec2bffe9824d143fd2994e1d93de9032a56c72..54ccb88ed08a277b8079cd74b7b3ed6476171c72 100644 (file)
@@ -271,10 +271,11 @@ $(document).ready(function () {
 
     function addObject(type, id, center) {
       var bounds = map.addObject({type: type, id: parseInt(id)}, function(bounds) {
-        if (!window.location.hash && bounds.isValid()) {
-          OSM.router.moveListenerOff();
-          map.once('moveend', OSM.router.moveListenerOn);
-          if (center || !map.getBounds().contains(bounds)) map.fitBounds(bounds);
+        if (!window.location.hash && bounds.isValid() &&
+            (center || !map.getBounds().contains(bounds))) {
+          OSM.router.withoutMoveListener(function () {
+            map.fitBounds(bounds);
+          });
         }
       });
     }