react-native-baidu-map
react-native-baidu-map copied to clipboard
请问在地图中,滑动很远后,回到当前位置的方法怎么设置?
谢谢
+1。。。。。。
center={this.state.center} // 地图中心位置
Geolocation.getCurrentPosition()//获取当前位置改变center .then(data => { console.log(data) this.setState({ center: { longitude: data.longitude, latitude: data.latitude } }) }) .catch(e =>{ console.warn(e, 'error'); })