有没有办法知道 navigator.geolocation 坐标的来源?
是否可以确定 navigator.geolocation 坐标是来自 GPS 还是以其他方式生成?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
是否可以确定 navigator.geolocation 坐标是来自 GPS 还是以其他方式生成?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
否。
不过,您可以检查
.coords.accuracy
属性来查明它是否可能是 GPS 或其他东西(例如附近的 WLAN)。
编辑:根据 https://developer.mozilla.org/en/Using_geolocation至少Firefox不提供这个属性。所以在这种情况下你就不走运了。编辑 2:根据 firebug 控制台,属性实际上可用。在我的工作电脑上,没有无线网络,例如,它是
25000
。所以这个值是有道理的,当在谷歌地图上测试时,我的情况下的位置不是很准确。
结论:
如果确定位置是否准确对您来说已经足够,请选择准确。否则你就不走运了。
No.
However, you could check the
.coords.accuracy
attribute to find out if it's likely to be GPS or something else (like nearby WLANs).Edit: According to https://developer.mozilla.org/en/Using_geolocation at least Firefox does not provide this attribute. So in this case you are out of luck.Edit 2: According to the firebug console the attribute is actually available. On my work PC which does not have wireless, it's
25000
for example.So the value makes sense, when testing on Google maps the position in my case was not very accurate.
Conclusion:
If finding out if the location is accurate or not is sufficient for you, go with accuracy. Otherwise you are out of luck.