@@ -126,16 +126,16 @@ export default { | |||
); | |||
let icon = new AMap.Icon({ | |||
// 图标尺寸 | |||
size: new AMap.Size(25, 25), | |||
size: new AMap.Size(25, 35), | |||
// 图标的取图地址 | |||
image: require("../../assets/img/marker-img.png"), | |||
// 图标所用图片大小 | |||
imageSize: new AMap.Size(25, 25) | |||
imageSize: new AMap.Size(25, 35) | |||
}); | |||
let marker = new AMap.Marker({ | |||
position: point, | |||
icon: icon, | |||
offset: new AMap.Pixel(-12, -12) | |||
offset: new AMap.Pixel(-12, -17) | |||
}); | |||
marker.setDraggable(true); | |||
marker.setMap(me.map); |