navigator.geolocation.watchPosition仅返回每100米

时间:2017-01-01 11:19:17

标签: react-native geolocation react-native-maps

我在本机项目中使用navigator.geolocation.watchPosition在用户移动时在地图上绘制路径。我注意到此功能的返回频率非常低。当我使用iOS模拟器和"高速公路驱动器"进行测试时,我教过它至少是频率。 gps模拟器中的模式。现在,当我用" city run"相反,我可以看到位置的返回频率不依赖于某个时间间隔,而是取决于距离......无论位置改变多长时间,该函数每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});
} 

1 个答案:

答案 0 :(得分:29)

您可以设置一个名为distanceFilter的选项,您可以用米来设置精度。它在documentation for geolocation中说明,但没有解释它的作用或默认值。如果您查看github处的源代码,则默认设置为 100 米,这可以解释您的行为。

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