从启用 GPS 的设备获取当前纬度和经度
我想直接从网络浏览器获取启用 GPS 的移动设备当前位置的纬度和经度。我可以知道这可能吗?怎么办呢?需要地理定位 api 吗?一些编码示例会有帮助。谢谢。
I would like to get the latitude and longitude of current location from gps enabled mobile device right from the web browser. May I know is this possible? how to do it? does it require geolocation api? Some coding example would be helpful. Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
使用 HTML5 地理定位 API,这里是官方规范和示例。
编辑
我已经更新了我的答案以包含当前的浏览器支持。
W3C 地理定位 API 支持
· ·
上面未列出的其他手机使用 Gears 或其自己的特定于平台的 API。
啊,我们会只有一个 API 吗? :)
非常感谢 Mark Pilgrim 的精彩帖子。
Use the HTML5 Geolocation API, here's the official spec and examples.
EDIT
I've updated my answer to include current browser support.
W3C Geolocation API support
· ·
Other phones not listed above use Gears or their own, platform-specific APIs.
Ahh, will we ever have just one single API? :)
Many thanks to Mark Pilgrim for his awesome post.
这是使用 HTML5 Geolocation API 的实际 JavaScript 代码。以下内容适用于 Android 浏览器和 iPhone Safari:
Here is an actual JavaScript code which uses HTML5 Geolocation API. The following works on both Android browser and iPhone Safari:
您不必拥有最新的手机即可使用 GPS 和地理定位 API。几乎每个移动浏览器(没有代理服务器)都可以用来从内置 GPS 读取位置。如果您的手机中有 Java 和 GPS – 您可以使用 mobile-gps-web-gate – 请参阅 http://code.google.com/p/mobile-gps-web-gate/
You don’t have to have the newest mobile phone to use GPS and Geolocation API. Almost every mobile browser (without proxy server) can be used to read position from buidin GPS. If You have Java and GPS in Your phone – You can use mobile-gps-web-gate – see at http://code.google.com/p/mobile-gps-web-gate/
将来对某人有帮助
can be helpful in future for someone