React Native version : 0.63.4
"@react-native-mapbox-gl/maps": "^8.1.0",
I was rendering 5000 images in mapview, maps loading too much long time to load. It takes to load 15 - 20 minutes.
This is my code:
this.state.images.map((item, index) => {
return (
<MapboxGL.MarkerView
key={${index}-PointAnnotation}
id={${index}-PointAnnotation}
coordinate={item.coordinates}
React Native version : 0.63.4 "@react-native-mapbox-gl/maps": "^8.1.0",
I was rendering 5000 images in mapview, maps loading too much long time to load. It takes to load 15 - 20 minutes.
This is my code: this.state.images.map((item, index) => { return ( <MapboxGL.MarkerView key={
${index}-PointAnnotation
} id={${index}-PointAnnotation
} coordinate={item.coordinates}Thanks in advance.