From 1bf2f10c985da1ea4e932dc95cfd70046e5a572b Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Sat, 8 Feb 2025 12:09:07 +0200 Subject: [PATCH] feat(geo_map): enable retina detection --- src/public/app/widgets/geo_map.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/public/app/widgets/geo_map.ts b/src/public/app/widgets/geo_map.ts index da3d0f014..d4b7a1792 100644 --- a/src/public/app/widgets/geo_map.ts +++ b/src/public/app/widgets/geo_map.ts @@ -54,7 +54,8 @@ export default class GeoMapWidget extends NoteContextAwareWidget { } L.tileLayer('https://tile.openstreetmap.org/{z}/{x}/{y}.png', { - attribution: '© OpenStreetMap contributors' + attribution: '© OpenStreetMap contributors', + detectRetina: true }).addTo(map); }); }