From 8d0b534f30434b8f0a6f27de681c19665feac908 Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Thu, 13 Jun 2024 16:10:22 -0700 Subject: [PATCH] Drop the x.tile prefix Refs https://github.com/openstreetmap/operations/issues/737 Refs #48 --- datasette_cluster_map/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/datasette_cluster_map/__init__.py b/datasette_cluster_map/__init__.py index fa6cc46..d18f4ea 100644 --- a/datasette_cluster_map/__init__.py +++ b/datasette_cluster_map/__init__.py @@ -3,7 +3,7 @@ import json -TILE_LAYER = "https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png" +TILE_LAYER = "https://tile.openstreetmap.org/{z}/{x}/{y}.png" TILE_LAYER_OPTIONS = { "maxZoom": 19, "attribution": '© OpenStreetMap contributors',