]> git.openstreetmap.org Git - rails.git/commitdiff
Change zoom precision function
authorAnton Khorev <tony29@yandex.ru>
Fri, 16 Aug 2024 07:45:54 +0000 (10:45 +0300)
committerAnton Khorev <tony29@yandex.ru>
Sat, 17 Aug 2024 08:44:05 +0000 (11:44 +0300)
This changes the number of fractional digits to log10(pixels / degrees) with pixels = 2**(8 + zoom) and degrees = 180.

app/assets/javascripts/osm.js.erb

index e429f4479f143dfe2d50622b870d62d60558a263..e08528f845da2b2cee72780d3197720fbc42ab02 100644 (file)
@@ -204,7 +204,9 @@ OSM = {
   },
 
   zoomPrecision: function(zoom) {
-    return Math.max(0, Math.ceil(Math.log(zoom) / Math.LN2));
+    var pixels = Math.pow(2, 8 + zoom);
+    var degrees = 180;
+    return Math.ceil(Math.log10(pixels / degrees));
   },
 
   locationCookie: function(map) {