地图公共组件优化,增加点击查询结果后改变定位信息的功能

This commit is contained in:
ag 2025-03-24 10:28:41 +08:00
parent 2cfce6d4a1
commit 24459b6be1

View File

@ -12,9 +12,10 @@
class="search-container" class="search-container"
v-if="!isReadonly"> v-if="!isReadonly">
<div class="search-input"> <div class="search-input">
<el-input @keydown.enter="handleSearch" <el-input
@keydown.enter="handleSearch"
v-model="searchAddress" v-model="searchAddress"
placeholder="请输入地址"></el-input> placeholder="请输入地址进行查询"></el-input>
<el-button <el-button
style="margin-left: 8px" style="margin-left: 8px"
plain plain
@ -204,6 +205,12 @@ export default {
pageSize: 20, // pageSize: 20, //
autoFitView: true, // 使 Marker autoFitView: true, // 使 Marker
}); });
this.placeSearch.on('selectChanged', (target) => {
let { selected } = target;
let { address, location } = selected.data;
this.coordinates = [location.lng, location.lat];
this.form.address = address;
});
// //
if (this.currentPosition && this.currentPosition.coordinates.length > 0) { if (this.currentPosition && this.currentPosition.coordinates.length > 0) {
@ -216,6 +223,7 @@ export default {
lat: lat, lat: lat,
}, },
}); });
this.coordinates = [lng, lat];
this.form.address = this.address; this.form.address = this.address;
/*this.coordinateToAddress(this.currentPosition.coordinates);*/ /*this.coordinateToAddress(this.currentPosition.coordinates);*/
} }
@ -224,6 +232,10 @@ export default {
handleConfirm() { handleConfirm() {
this.$refs.form.validate().then((valid) => { this.$refs.form.validate().then((valid) => {
if (valid) { if (valid) {
if (!this.coordinates) {
this.$message.error('请在地图上确定您的目标地点');
return;
}
let geometry = { type: 'Point', coordinates: this.coordinates }; let geometry = { type: 'Point', coordinates: this.coordinates };
this.$emit('getAddress', geometry, this.form.address); this.$emit('getAddress', geometry, this.form.address);
this.close(); this.close();
@ -282,9 +294,9 @@ export default {
} }
}); });
}, },
renderMarker(marker) { renderMarker(pois) {
this.clearMarker(); // this.clearMarker(); //
let location = marker.location; let location = pois.location;
this.map.setCenter([location.lng, location.lat]); this.map.setCenter([location.lng, location.lat]);
// //
// this.map.setZoomAndCenter(16, [location.lng, location.lat]); // this.map.setZoomAndCenter(16, [location.lng, location.lat]);
@ -294,13 +306,14 @@ export default {
position: [location.lng, location.lat], position: [location.lng, location.lat],
map: this.map, map: this.map,
}); });
// //
let infoWindowContent = `<div style="width: 200px">`; let infoWindowContent = `<div style="width: 200px">`;
if (marker.name) { if (pois.name) {
infoWindowContent += `<h3>${marker.name}</h3>`; infoWindowContent += `<h3>${pois.name}</h3>`;
} }
if (marker.address) { if (pois.address) {
infoWindowContent += `<p>地址:${marker.address}</p>`; infoWindowContent += `<p>地址:${pois.address}</p>`;
} }
infoWindowContent += '</div>'; infoWindowContent += '</div>';
let infoWindow = new AMap.InfoWindow({ let infoWindow = new AMap.InfoWindow({
@ -315,8 +328,13 @@ export default {
); );
}); });
this.searchPanelVisible = false; this.searchPanelVisible = false;
if (marker.address) { this.marker.on('click', () => {
this.form.address = marker.address; if (pois.address) {
this.form.address = pois.address;
}
});
if (pois.address) {
this.form.address = pois.address;
} }
}, },
close() { close() {
@ -367,8 +385,9 @@ export default {
} }
}); });
} else { } else {
//
console.error(result); console.error(result);
reject(result); /* reject(result);*/
/* this.$emit('error', '无法获取定位信息:' + result.message);*/ /* this.$emit('error', '无法获取定位信息:' + result.message);*/
} }
}); });