在 React Native 地图中设置最大和最小缩放级别

Set Max & Min zoom level in React Native Maps

如何在 React Native 地图中设置最小和最大缩放级别

<MapView
    ref={(ref) => this.mapView = ref}
    clustering={true}
    clusterTextColor='#fff'
    style={styles.map}
    region={this.props.coordinate}
>
    //My map markers
</MapView>
<MapView
    minZoomLevel={2}  // default => 0
    maxZoomLevel={15} // default => 20
>
    //My map markers
</MapView>

This Link 中的所有组件 API。