From 8bc6208de1377969c08c3fa9a7f5000bfd120b67 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20Rodrigo?= Date: Mon, 4 Dec 2023 16:45:02 +0100 Subject: [PATCH] fix: fix default cluster value --- components/Map/MapBase.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/Map/MapBase.vue b/components/Map/MapBase.vue index e9cafa864..06beac88e 100644 --- a/components/Map/MapBase.vue +++ b/components/Map/MapBase.vue @@ -256,7 +256,7 @@ export default defineNuxtComponent({ this.map.addSource(POI_SOURCE, { type: 'geojson', - cluster: cluster, + cluster: cluster || true, clusterRadius: 32, clusterProperties: clusterProps, clusterMaxZoom: 15,