Reputation: 11
how to Zoom to specific markers react-native-maps
like this image
Upvotes: 1
Views: 1411
Reputation: 181
You can use onPress or onSelect props of marker which accepts a callback function where you can pass the zooom size of marker. I hope it is useful
Upvotes: 0
Reputation: 1362
First create a ref to the MapView component:
<MapView
ref={ref => {
this.map = ref;
}}
...
>
...
</MapView>
Then use one of the following three methods:
You can find more details on these methods and parameters in the MapView docs.
Upvotes: 2