HTML5 地理定位,仅限 GPS
有没有办法让 HTML5 的地理定位仅在使用 GPS 设备获取位置时才起作用?
Is there a way to make HTML5's Geolocation only work, if it is using a GPS device to get the location?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我不相信这是可能的,你能做的最好的事情就是为 enableHighAccuracy 并使用基于 准确度值。
--编辑
上个月我看到了 Remy Sharp 的演示,他有一个有用的建议:如果你使用
watchPosition
而不是getCurrentPosition
那么您可以等待,直到位置信息变得足够准确; GPS 通常需要一些时间来锁定卫星,因此通常getCurrentPosition
只会从不太准确但响应速度更快的方法之一返回一些内容。I don't believe it's possible, the best you can do is pass
true
for enableHighAccuracy and use a heuristic based on the accuracy value.--Edit
I saw a presentation by Remy Sharp last month and he had a useful suggestion: if you use
watchPosition
instead ofgetCurrentPosition
then you can wait until the location information becomes accurate enough; GPS often takes some time to lock on to satellites so usuallygetCurrentPosition
will just return something from one of the less accurate but more responsive methods.请查看 http://code.google.com/p/mobile-gps-网络门/
Check out http://code.google.com/p/mobile-gps-web-gate/