gpt4 book ai didi

javascript - 如何正确地从 navigator.geolocation 调用 stopObserving()?

转载 作者:塔克拉玛干 更新时间:2023-11-02 09:36:39 25 4
gpt4 key购买 nike

我这样观察用户的位置

_someFunc() {
navigator.geolocation.watchPosition((position) => {
...
)};
}

_someFunc()_onPress() 中调用。在另一个 onPress() 中,我想停止 watchPosition。这样做,我使用 stopObserving 就像(糟糕?)记录了 here .在另一个 onPress() 上,我只是调用

_anotherSomeFunc() {
navigator.geolocation.stopObserving();
}

但是,这给了我警告:

Called stopObserving without existing subscriptions.

我不知道该怎么做。什么样的订阅?

最佳答案

您应该保存 navigator.geolocation.watchPosition 返回的 watchId,然后调用 clearWatch:

watchId = navigator.geolocation.watchPosition((position) => {
...
}
);

...

navigator.geolocation.clearWatch(watchId);
navigator.geolocation.stopObserving();

关于javascript - 如何正确地从 navigator.geolocation 调用 stopObserving()?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46405277/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com