我在应用程序中有一张地图。我的问题是在用户导航到另一个屏幕然后导航回地图屏幕之后,如何设置默认的纬度,经度和缩放级别?
比方说,用户放大地图然后更改地图的当前位置,如何返回到默认位置?
<MapView
provider={PROVIDER_GOOGLE}
style={styles.map}
region={{
latitude: this.props.latitude!=null ? this.props.latitude: 37.78825,
longitude: this.props.longitude!=null ? this.props.longitude: -122.4324,
latitudeDelta: 0.015*5,
longitudeDelta: 0.0121*5,
}}
customMapStyle={mapStyle}
>