react-native-map-clustering
react-native-map-clustering copied to clipboard
Can we not cluster the current location Marker?
I have a current location maker
but when clustering, this marker is wrapped and disappear
Can we not cluster the current location Marker?
I had the same issue, i resolved it by passing an additional prop cluster={false}
to the User Location Marker.:
<Marker // Disabling ts check here on purpose for the clustering library to not // eslint-disable-next-line @typescript-eslint/ban-ts-ignore // @ts-ignore cluster={false} ....... > <LocationMarkerIcon /> </Marker>
I had the same issue, i resolved it by passing an additional prop
cluster={false}
to the User Location Marker.:<Marker // Disabling ts check here on purpose for the clustering library to not // eslint-disable-next-line @typescript-eslint/ban-ts-ignore // @ts-ignore cluster={false} ....... > <LocationMarkerIcon /> </Marker>
cluster={false} is not working
my version of react-native-map-clustering is 3.4.2
cluster={false} is working for me and my version of react-native-map-clustering is 3.4.2 @abhatia-lix and @VladRDV
I use 3.4.2 @marchiartur but it's not working.
Hi, are there any workarounds?
cluster={false} it's working for me, tks @abhatia-lix