From 28e776db6cf78adbd0de3066398c060fb381e1dc Mon Sep 17 00:00:00 2001 From: Qiusheng Wu Date: Sun, 1 Dec 2024 15:02:36 -0500 Subject: [PATCH] Update MosaicJSON param (#1009) --- leafmap/stac.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/leafmap/stac.py b/leafmap/stac.py index 5e874bdf4f..0574033d3e 100644 --- a/leafmap/stac.py +++ b/leafmap/stac.py @@ -704,7 +704,8 @@ def stac_tile( if mosaic_json: r = requests.get( - f"{titiler_endpoint}/mosaicjson/tilejson.json", params=kwargs + f"{titiler_endpoint}/mosaicjson/{TileMatrixSetId}/tilejson.json", + params=kwargs, ).json() else: if isinstance(titiler_endpoint, str):