Skip to content

Commit 80411d6

Browse files
committed
fix: CyclOSM status page check zoom level
1 parent 78b3afe commit 80411d6

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

apps/api/src/routes/status.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -407,9 +407,9 @@ function checkCyclOSM() {
407407
const url =
408408
env("CYCLOSM_TILE_URL")
409409
?.replace("{s}", "a")
410-
.replace("{z}", "0")
411-
.replace("{x}", "0")
412-
.replace("{y}", "0") ?? "https://a.tile-cyclosm.openstreetmap.fr/cyclosm/0/0/0.png";
410+
.replace("{z}", "12")
411+
.replace("{x}", "2048")
412+
.replace("{y}", "1361") ?? "https://a.tile-cyclosm.openstreetmap.fr/cyclosm/12/2048/1361.png";
413413
return httpCheck("cyclosm", "CyclOSM", "Map Tiles", "https://tile-cyclosm.openstreetmap.fr", url);
414414
}
415415

0 commit comments

Comments
 (0)