From ebf9f02d95ecda139fdb9d000277e8eaa6182da3 Mon Sep 17 00:00:00 2001 From: zv Date: Tue, 23 Jun 2026 20:41:44 +0200 Subject: [PATCH] fix: use working CARTO tile endpoints --- src/features/map/mapStyles.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/features/map/mapStyles.ts b/src/features/map/mapStyles.ts index 5f47712..856170e 100644 --- a/src/features/map/mapStyles.ts +++ b/src/features/map/mapStyles.ts @@ -36,7 +36,7 @@ export const mapTileStyles: MapTileStyle[] = [ id: 'carto-light', label: 'CARTO Positron', description: 'Light basemap that keeps point results prominent.', - url: 'https://{s}.basemaps.cartocdn.com/light_all/{z}/{x}/{y}{r}.png', + url: 'https://cartodb-basemaps-{s}.global.ssl.fastly.net/light_all/{z}/{x}/{y}.png', attribution: '© OpenStreetMap contributors © CARTO', maxZoom: 20, @@ -45,7 +45,7 @@ export const mapTileStyles: MapTileStyle[] = [ id: 'carto-dark', label: 'CARTO Dark Matter', description: 'Dark basemap for high-contrast result exploration.', - url: 'https://{s}.basemaps.cartocdn.com/dark_all/{z}/{x}/{y}{r}.png', + url: 'https://cartodb-basemaps-{s}.global.ssl.fastly.net/dark_all/{z}/{x}/{y}.png', attribution: '© OpenStreetMap contributors © CARTO', maxZoom: 20,