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

时间:2018-07-11 10:28:36

标签: react-native react-native-maps

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

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

1 个答案:

答案 0 :(得分:3)

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

This Link中的所有组件API。