There are several methods in MapView component documents: fitToElements , fitToSuppliedMarkers and fitToCoordinates . https://github.com/airbnb/react-native-maps/blob/master/docs/mapview.md#methods
If you want to enlarge the map in some collection of markers at loading, you can use componentDidMount to increase after the initial render:
class SomeView extends Component { constructor() { this.mapRef = null; } componentDidMount() { this.mapRef.fitToSuppliedMarkers( someArrayOfMarkers, false,
Lokeh source share