]> git.openstreetmap.org Git - rails.git/commitdiff
Merge branch 'master' into overpass
authorTom Hughes <tom@compton.nu>
Sun, 16 Mar 2014 16:20:39 +0000 (16:20 +0000)
committerTom Hughes <tom@compton.nu>
Sun, 16 Mar 2014 16:20:39 +0000 (16:20 +0000)
1  2 
app/assets/javascripts/index.js

index ddec2bffe9824d143fd2994e1d93de9032a56c72,96e03539a08a4e245b3dafc51d5f094bc1bb75fb..54ccb88ed08a277b8079cd74b7b3ed6476171c72
@@@ -5,7 -5,6 +5,7 @@@
  //= require leaflet.key
  //= require leaflet.note
  //= require leaflet.share
 +//= require leaflet.query
  //= require index/search
  //= require index/browse
  //= require index/export
@@@ -13,7 -12,6 +13,7 @@@
  //= require index/history
  //= require index/note
  //= require index/new_note
 +//= require index/query
  //= require router
  
  (function() {
@@@ -125,11 -123,6 +125,11 @@@ $(document).ready(function () 
      sidebar: sidebar
    }).addTo(map);
  
 +  L.OSM.query({
 +    position: position,
 +    sidebar: sidebar
 +  }).addTo(map);
 +
    L.control.scale()
      .addTo(map);
  
  
      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);
+           });
          }
        });
      }
      "/node/:id(/history)":         OSM.Browse(map, 'node'),
      "/way/:id(/history)":          OSM.Browse(map, 'way'),
      "/relation/:id(/history)":     OSM.Browse(map, 'relation'),
 -    "/changeset/:id":              OSM.Browse(map, 'changeset')
 +    "/changeset/:id":              OSM.Browse(map, 'changeset'),
 +    "/query":                      OSM.Query(map)
    });
  
    if (OSM.preferred_editor == "remote" && document.location.pathname == "/edit") {