亲测: https协议才能精准定位(位置更精准),http协议的项目存在获取失败及经纬度偏差大的问题
注意 :小距离偏差可能是坐标系导致的
坐标转换工具地址:https://tool.lu/coordinate/
经纬度查询工具地址:http://jingweidu.757dy.com/
申请ak地址 :https://lbsyun.baidu.com/apiconsole/key#/home
参考百度文档地址:https://lbsyun.baidu.com/index.php?title=jspopularGL/guide/geoloaction
本示例使用百度文档中的浏览器定位
<script type="text/javascript" src="https://api.map.baidu.com/api?v=2.0&type=webgl&ak=your ak"></script> //替换自己的ak
mounted() {
this.lib_getPosition(); //百度
},
methods: {
lib_getPosition() {
const BMap = window.BMapGL;
const BMapGeolocation = new BMap.Geolocation();
BMapGeolocation.getCurrentPosition(r => {
if (r.latitude && r.longitude) {
console.log("baidu", r);
alert(`百度成功-${JSON.stringify(r)}`);
// 获取到经纬度(百度转换高德经纬度)
} else {
console.log(22);
}
});
},
}
申请key地址:https://lbs.qq.com/dev/console/application/mine
参考腾讯文档地址:https://lbs.qq.com/webApi/component/componentGuide/componentGeolocation
本示例使用腾讯文档中的调用方式一
<script type="text/javascript" src="https://mapapi.qq.com/web/mapComponents/geoLocation/v/geolocation.min.js"></script>
mounted() {
this.getUserLocation(); //腾讯
},
methods: {
getUserLocation() {
console.log(88);
let geolocation = new qq.maps.Geolocation(
"your key",//替换自己的key
"myAPP"
);
geolocation.getLocation(this.showPosition, this.errorPosition); //开启定位
},
//成功返回的信息,挑取自己所需要的
showPosition(position) {
console.log(11111);
this.lat = position.lat;
this.lng = position.lng;
var location = position.lat + "," + position.lng;
console.log(location, "location");
alert(`腾讯成功1-${JSON.stringify(position)}`);
},
// 定位失败 继续尝试定位
errorPosition(e) {
console.log(e, "定位失败,再次进行定位");
alert(`腾讯失败1-${JSON.stringify(e)}`);
},
}