我在我的 react native 项目中使用 navigator.geolocation.watchPosition 在用户移动时在地图上绘制路径。我注意到这个函数的返回频率很低。当我使用 iOS 模拟器和 gps 模拟器中的“高速公路驾驶”模式进行测试时,我至少教过它是频率。现在,当我改用“城市跑”进行测试时,我可以看到位置的返回频率不取决于某个时间间隔,而是取决于距离......该函数每 100 米返回一次位置,不管位置变化这么大需要多长时间。
为什么会这样?这是预期的行为吗?我不知道它是否与 iOS 模拟器或我的代码有关,但我真的希望位置更精确,我希望它尽可能多地返回。
componentDidMount() {
const { region } = this.state;
navigator.geolocation.getCurrentPosition(
(position) => {
this.setState({position});
},
(error) => alert(JSON.stringify(error)),
{enableHighAccuracy: true, timeout: 20000, maximumAge: 1000}
);
this.watchID = navigator.geolocation.watchPosition((lastPosition) => {
var { distanceTotal, record } = this.state;
this.setState({lastPosition});
if(record) {
var newLatLng = {latitude:lastPosition.coords.latitude, longitude: lastPosition.coords.longitude};
this.setState({ track: this.state.track.concat([newLatLng]) });
this.setState({ distanceTotal: (distanceTotal + this.calcDistance(newLatLng)) });
this.setState({ prevLatLng: newLatLng });
}
},
(error) => alert(JSON.stringify(error)),
{enableHighAccuracy: true, timeout: 20000, maximumAge: 0});
}