This commit is contained in:
weipengfei 2023-08-17 16:17:58 +08:00
parent 11a6f0e6ea
commit 555db76719
2 changed files with 25 additions and 3 deletions

View File

@ -8,7 +8,8 @@ import { shallowRef } from "@vue/reactivity";
const map = shallowRef(null);
let AMap: any = null;
let marker: any = null;
let markerList: Array<any> = [];
let m_index: Number = 0;
const initMap = async () => {
const loader = AMapLoader.load({
@ -24,21 +25,38 @@ const initMap = async () => {
map.value.on("click", (e: any) => {
console.log("点击", e);
if (marker) return;
if (m_index >= 3) return;
// Marker
var customIcon = new AMap.Icon({
size: new AMap.Size(36, 36), //
image: "https://webapi.amap.com/theme/v1.3/markers/n/mark_b.png", //
imageSize: new AMap.Size(26, 26), //
imageOffset: new AMap.Pixel(0, 0), //
label: {
content: "起", //
offset: new AMap.Pixel(-100, -100), //
},
});
//
marker = new AMap.Marker({
let marker = new AMap.Marker({
position: e.lnglat,
offset: new AMap.Pixel(-10, -10),
title: "位置",
icon: customIcon,
// content: "",
});
map.value.add(marker);
// markerList.push(marker);
m_index++;
//
marker.on("click", (event: any) => {
console.log("点击了标记点", event);
//
map.value.remove(marker);
m_index--;
marker = null;
});
});

View File

@ -15,10 +15,14 @@
placeholder="请输入要搜索的地址"
/>
<el-button type="primary">搜索</el-button>
<el-button>重置</el-button>
</el-form-item>
<el-form-item label="地图">
<MapContainer></MapContainer>
</el-form-item>
<el-form-item label="起点">
<input />
</el-form-item>
</el-form>
</popup>
</div>