Search code examples
react-nativereact-native-maps

Set Max & Min zoom level in React Native Maps


How to Set Min & Max Zoom level in React Native Maps

<MapView
    ref={(ref) => this.mapView = ref}
    clustering={true}
    clusterTextColor='#fff'
    style={styles.map}
    region={this.props.coordinate}
>
    //My map markers
</MapView>

Solution

  • <MapView
        minZoomLevel={2}  // default => 0
        maxZoomLevel={15} // default => 20
    >
        //My map markers
    </MapView>
    

    All Component API in This Link.