From 8cc6cd633d798d84562abd9acce6bc120d578d0d Mon Sep 17 00:00:00 2001 From: Gennadii Donchyts Date: Sun, 4 Feb 2024 16:24:04 +0100 Subject: [PATCH] Explicitly add max zoom level for WMS as a workaround to fix #132 --- utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils.py b/utils.py index f3b6931..9a916e7 100644 --- a/utils.py +++ b/utils.py @@ -18,7 +18,7 @@ def get_ee_image_url(image): map_id = ee.data.getMapId({'image': image}) - url = map_id['tile_fetcher'].url_format + url = map_id['tile_fetcher'].url_format + "&zmax=25" return url