You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I noticed that the cluster makes many pins x10 slower. I know this is not a solution but try to remove the whole cluster thingy and use pins only. If you need a cluster, I suggest rewriting the map with the native google map API, because the slowness comes from the overhead of Vue.
Hello !
I need to filters marker into GMapCluster but it's very very slow (1400 markers).
const moviesFilter = computed(() => { return movies.value.filter((movie) => { return platforms.value.includes(movie.type) }).filter((movie) => { if (departments_selected.value.length > 0) { return departments_selected.value.filter((department) => { return movie.departments.indexOf(department) !== -1; }).length > 0; } return true; }) })
Maybe with setVisible ?
Thx for you help
PS : Sorry for my english ;-)
The text was updated successfully, but these errors were encountered: