To get from Yokohama to San Francisco, keep going east.
authorRadek Czajka <rczajka@rczajka.pl>
Sat, 1 May 2021 22:36:53 +0000 (00:36 +0200)
committerRadek Czajka <rczajka@rczajka.pl>
Sat, 1 May 2021 22:36:53 +0000 (00:36 +0200)
src/wolnelektury/static/js/book_text/references.js

index b75a4da..b9fc40f 100644 (file)
         if (ref.location) {
             enable_map();
 
-            marker.setLatLng(ref.location);
+            let newLoc = [
+                ref.location[0],
+                ref.location[1] + Math.round(
+                    (map.getCenter().lng - ref.location[1]) / 360
+                ) * 360
+            ];
+
+            marker.setLatLng(newLoc);
             marker.bindTooltip(ref.label).openTooltip();
             map.addLayer(marker);
-            map.panTo(ref.location, {
+
+            map.panTo(newLoc, {
                 animate: true,
                 duration: 1,
             });