<map :markers=”markers” />
const updateMarkers = (): void => {
const tempMarkers: Marker[] = [];
if (wei !== undefined && jing !== undefined) {
//"https://proxy.daowey.com/qfqtest/app/d?f=119ad7760fa142f4ac43000bc2981c1f"
// 旧的无字"http://1.15.94.52:11212/app/d?f=c08c2604a95a46118791b3fad73cf0ad"
tempMarkers.push(
{
iconPath: "http://1.15.94.52:11212/app/d?f=c08c2604a95a46118791b3fad73cf0ad",
id: 0,
latitude: wei + 0.00004,//上下
longitude: jing + 0.00012,//左右
width: 260,
height: 80,
label: {
content: '内容',
anchorX: -115,
anchorY: -55
}
},
{
iconPath: "http://1.15.94.52:11212/app/d?f=8e0423554ca048d89061cf484720fbdd",
id: 1,
latitude: wei,
longitude: jing,
width: 15,
height: 15,
// label: {
// content: '内容',
// anchorX: -65,
// anchorY: -50
// },
}
);
// markers.value = markers.value.concat(tempMarkers);
markers.value = tempMarkers;
}
};
updateMarkers();
版权声明:本文为weixin_63730900原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。