Added base types filters

This commit is contained in:
Alexis
2026-03-27 22:15:55 +01:00
parent 07feed0355
commit 782162d410
8 changed files with 250 additions and 18 deletions

View File

@@ -7,9 +7,21 @@ export const useMap = defineStore('map', () => {
const minZoom = 6
const center = ref<PointTuple>([48.11180645878813, -1.6637869497745246])
const maxClusterRadius = 30
const disableClusteringAtZoom = 17
const filterUncovered = ref(true)
const filterCovered = ref(true)
const filterKorrigo = ref(true)
return {
zoom,
minZoom,
center,
maxClusterRadius,
disableClusteringAtZoom,
filterUncovered,
filterCovered,
filterKorrigo,
}
})