]> git.openstreetmap.org Git - nominatim-ui.git/commitdiff
Remove non-standard zoom levels
authorSarah Hoffmann <lonvia@denofr.de>
Mon, 20 Mar 2023 10:25:16 +0000 (11:25 +0100)
committermtmail <mtmail@gmx.net>
Mon, 20 Mar 2023 13:19:40 +0000 (14:19 +0100)
Nominatim only supports zoom level values up to 18. The others don't fail but work exactly the same as 18 and should not be presented in the zoom box.

src/lib/helpers.js

index 023da0920b417a5f3c700f1737e7d4afd83903fe..ea0e0c5a444b442b5202eb5e5aa3b0bf562c9497 100644 (file)
@@ -142,10 +142,7 @@ export function zoomLevels() {
     /* 15 */ '',
     /* 16 */ 'Street',
     /* 17 */ '',
-    /* 18 */ 'Building',
-    /* 19 */ '',
-    /* 20 */ '',
-    /* 21 */ ''
+    /* 18 */ 'Building'
   ];
   return aZoomLevels;
 }