From a05b8d95d77628359c6d16947efcc27b37690412 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=D0=9C=D0=B8=D1=85=D0=B0=D0=B8=D0=BB?=
<41448637+mkgrgis@users.noreply.github.com>
Date: Tue, 23 Dec 2025 08:07:45 +0300
Subject: [PATCH] Update zoom limits
Based on
* https://opentopomap.org/about#backup
* https://wiki.openstreetmap.org/wiki/Raster_tile_providers
---
index.html | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/index.html b/index.html
index ebc6740..240eae2 100644
--- a/index.html
+++ b/index.html
@@ -50,7 +50,7 @@
///
var openTopoMap = L.tileLayer("http://{s}.tile.opentopomap.org/{z}/{x}/{y}.png", {
minZoom: 12,
- maxZoom: 16,
+ maxZoom: 14,
attribution: 'Map data © OpenStreetMap contributors, ' +
'CC-BY-SA, ' +
'Kartendarstellung: © OpenTopoMap'
@@ -58,7 +58,7 @@
var osmMapnik = L.tileLayer("https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png", {
minZoom: 12,
- maxZoom: 16,
+ maxZoom: 19,
attribution: 'Map data © OpenStreetMap contributors'
});
@@ -359,4 +359,4 @@