js获取 gps坐标

Posted 暖暖的心窝子

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js获取 gps坐标相关的知识,希望对你有一定的参考价值。

if (navigator.geolocation) {
                  navigator.geolocation.getCurrentPosition(function(pos) {
                    model.address.geo = {
                      lat: pos.coords.latitude.toFixed(5),
                      lng: pos.coords.longitude.toFixed(5)
                    };
                  });
              } else {
                  alert("Geolocation is not supported by this browser.");
              }

以上是关于js获取 gps坐标的主要内容,如果未能解决你的问题,请参考以下文章

jquery mobile 如何获取触摸的坐标

使用内部 GPS 接收器和 VBA 获取 GPS 坐标

如何获取用户指向的 GPS 坐标?

html5 如何调用安卓手机获取gps坐标

Android中QPython的位置不返回GPS坐标 - 仅“网络”

获取 GPS 坐标并保存为文本文件