高德地图jsApi输入地址查询经纬度方法
2020-12-10 本文已影响0人
风中凌乱的男子
geoCode() {
var geocoder = new AMap.Geocoder({
city: "",
});
var address = this.form.address;
geocoder.getLocation(address, function(status, result) {
if (status === 'complete' && result.geocodes.length) {
var lnglat = result.geocodes[0].location
console.log(lnglat);
} else {
console.log('根据地址查询位置失败');
}
});
}