获取地址公共组件优化,增加点击地图后选择点击定位进行表单填充的功能
This commit is contained in:
parent
24459b6be1
commit
af9aa75772
@ -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 = [];
|
||||
|
Loading…
x
Reference in New Issue
Block a user