react-native-map-clustering
react-native-map-clustering copied to clipboard
Spiral crashing on some android devices
When click on cluster and there are markers on same location,
some android devices crash:

code is just typical use of this mapview
mapRef={(mapRef) => {
this.mapView = mapRef;
}}
minPoints={2}
provider={PROVIDER_GOOGLE}
clusterColor={Theme.palette.primary}
style={styles.map}
initialRegion={this.state.initialRegion}
>
{_.map(this.props.rentMap.data, (r, i) => {
return (
<Marker
zIndex={i++}
identifier={r.id}
key={r.id}
coordinate={{
latitude: r.location.lat,
longitude: r.location.lng,
}}
onPress={this.onPressRentMarker.bind(
this,
r.id
)}
>
{this.renderMarker(r, r.id)}
</Marker>
);
})}
</MapView>```
I need to disable spiral for now but not sure what's causing the actual issue.