getCurrentPosition()
和watchPosition()
之間的區別是什麼。我讀了幾篇關於getCurrentPosition()
和watchPosition()
的文章。但是沒有一個對我很清楚。據我瞭解getCurrentPosition()
更新位置只有一次但watchPosition()
不斷更新位置。我是對的?watchPosition()和getCurrentPosition
2
A
回答
2
你是對的。 getCurrentPosition()
回調被觸發一次,並且watchPosition()
回調被持續觸發。 Good reading on this here。
5
getCurrentPosition()
給出currentPosition緯度和經度值,它只會觸發一次。 watchPosition()
連續給出currentPosition的緯度和經度值。如果位置變更後(假設你是在移動的車輛,然後watchPosition()
會給你result.Then會知道這樣的結果)
0
watchPosition
每次您的設備位置的變化(與FN PARAMS指定的時間間隔)解僱。 getCurrentPostion
只有一次。
watchPosition
實際上類似於setInterval
fn並且還返回可用於通過使用clearWatch
停止迭代過程的id。
相關問題
- 1. Phonegap getCurrentPosition和watchPosition
- 2. appMobi watchPosition getCurrentPosition失敗
- 3. watchPosition()與getCurrentPosition()與setTimeout的
- 4. phoneGap應用程序與watchPosition或getCurrentPosition的最小更新時間?
- 5. 地理位置getCurrentPosition()和watchPosition()不起作用在不安全的起源
- 6. 爲什麼我在本地主機上的Chrome中出現getCurrentPosition()和watchPosition()「不安全起源」錯誤?
- 7. Android:MediaPlayer getDuration()和getCurrentPosition()具有NullPointerException
- 8. Google maps API watchPosition
- 9. MediaPlayer getCurrentPosition()問題
- 10. getCurrentPosition不刷新
- 11. 地理位置WatchPosition
- 12. watchPosition結合折線
- 13. WatchPosition Time Out In Geolocation
- 14. chrome中斷getCurrentPosition javascript
- 15. getCurrentPosition返回什麼?
- 16. Phonegap WatchPosition停止更新。 EBUSY?
- 17. 谷歌地圖API watchPosition
- 18. 只接收WatchPosition一次
- 19. 停止執行getCurrentPosition方法
- 20. 谷歌Javascript地圖getCurrentPosition
- 21. getCurrentPosition不更新位置
- 22. 是什麼讓getCurrentPosition失敗?
- 23. getCurrentposition的替代方法?
- 24. getCurrentPosition()等效於錄音機
- 25. Cordova getCurrentPosition()永不返回
- 26. getCurrentPosition()不會顯示 - javascript
- 27. Phonegap watchPosition測量距離和觸發事件
- 28. navigator.geolocation.getCurrentPosition/watchPosition沒有在安卓6.0
- 29. IOS6地理位置watchPosition回調失敗
- 30. 使用W3C GeoLocation API的watchPosition函數
你說得對:'watchPosition()'在每次有新的位置可用時執行回調函數,'getCurrentPosition()'只在第一個位置可用時執行回調。 –
有人在下面回答你的問題,或者你還有問題嗎? – thecoolmacdude