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坐标的主要内容,如果未能解决你的问题,请参考以下文章