获取地址公共组件优化,增加点击地图后选择点击定位进行表单填充的功能

This commit is contained in:
yangrd 2025-03-24 16:03:54 +08:00
parent 24459b6be1
commit af9aa75772

View File

@ -227,6 +227,7 @@ export default {
this.form.address = this.address;
/*this.coordinateToAddress(this.currentPosition.coordinates);*/
}
this.map.on('click', this.showInfoClick);
});
},
handleConfirm() {
@ -265,6 +266,10 @@ export default {
});
}
},
showInfoClick(e){
let lnglat= [e.lnglat.getLng(), e.lnglat.getLat()]
this.coordinateToAddress(lnglat)
},
coordinateToAddress(lnglat) {
let that = this;
this.list = [];