]> git.openstreetmap.org Git - rails.git/commitdiff
Replace custom panning with new panInside leaflet method
authorTom Hughes <tom@compton.nu>
Wed, 2 Jan 2019 11:03:06 +0000 (11:03 +0000)
committerTom Hughes <tom@compton.nu>
Wed, 2 Jan 2019 11:03:06 +0000 (11:03 +0000)
app/assets/javascripts/index/new_note.js

index 54c0b0db150ff25bb2c36a02b540b55cf612ba83..fa2872f456b572a515a17498bc2d2db30d7f0eb0 100644 (file)
@@ -112,28 +112,14 @@ OSM.NewNote = function(map) {
 
     if (params.lat && params.lon) {
       markerLatlng = L.latLng(params.lat, params.lon);
 
     if (params.lat && params.lon) {
       markerLatlng = L.latLng(params.lat, params.lon);
-
-      var markerPosition = map.latLngToContainerPoint(markerLatlng),
-          mapSize = map.getSize(),
-          panBy = L.point(0, 0);
-
-      if (markerPosition.x < 50) {
-        panBy.x = markerPosition.x - 50;
-      } else if (markerPosition.x > mapSize.x - 50) {
-        panBy.x = 50 - mapSize.x + markerPosition.x;
-      }
-
-      if (markerPosition.y < 50) {
-        panBy.y = markerPosition.y - 50;
-      } else if (markerPosition.y > mapSize.y - 50) {
-        panBy.y = 50 - mapSize.y + markerPosition.y;
-      }
-
-      map.panBy(panBy);
     } else {
       markerLatlng = map.getCenter();
     }
 
     } else {
       markerLatlng = map.getCenter();
     }
 
+    map.panInside(markerLatlng, {
+      padding: [50, 50]
+    });
+
     newNote = L.marker(markerLatlng, {
       icon: noteIcons["new"],
       opacity: 0.9,
     newNote = L.marker(markerLatlng, {
       icon: noteIcons["new"],
       opacity: 0.9,