14

我在我的 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});
} 
4

1 回答 1

33

您可以设置一个选项,称为distanceFilter以米为单位设置精度。它在地理定位的文档中有所说明,但没有解释它的作用或默认值。如果您查看github上的源代码,默认设置为100米,这解释了您的行为。

如果您想要 1 米精度,请将选项设置为: {enableHighAccuracy: true, timeout: 20000, maximumAge: 0, distanceFilter: 1}

于 2017-02-01T07:57:33.420 回答