react-native-baidu-map
react-native-baidu-map copied to clipboard
在真机上设置center无效
真机上获取定位成功后设置center无效,还是显示在北京,marker已经生效了
Geolocation.getCurrentPosition()
.then(data => {
this.setState({
zoom: 15,
marker: {
latitude: data.latitude,
longitude: data.longitude,
title: data.address
},
center: {
latitude: data.latitude,
longitude: data.longitude,
rand: Math.random()
},
address: data.address
});
})
.catch(e => {
Toast.fail("定位失败:" + e.message);
})