diff --git a/src/src/app/shared/map.ts b/src/src/app/shared/map.ts
index 25e6aaa..c230aaf 100644
--- a/src/src/app/shared/map.ts
+++ b/src/src/app/shared/map.ts
@@ -33,12 +33,15 @@ export function createMap(contextMenuItems?: ContextMenuItem[]): L.Map {
.setZoom(10)
.setMaxBounds(bounds);
- L.tileLayer("https://tile.openstreetmap.org/{z}/{x}/{y}.png", {
- maxZoom: 17,
- minZoom: 5,
- attribution:
- '© OpenStreetMap',
- }).addTo(map);
+ L.tileLayer(
+ "https://{s}.basemaps.cartocdn.com/rastertiles/voyager/{z}/{x}/{y}{r}.png",
+ {
+ maxZoom: 17,
+ minZoom: 5,
+ attribution:
+ '© OpenStreetMap, © CARTO',
+ },
+ ).addTo(map);
return map;
}