Browse Source

问题管理地图修改

master
huxinglu 4 years ago
parent
commit
2ece16b594
2 changed files with 3 additions and 3 deletions
  1. BIN
      src/assets/img/marker-img.png
  2. +3
    -3
      src/views/problem/detailDialog.vue

BIN
src/assets/img/marker-img.png View File

Before After
Width: 32  |  Height: 32  |  Size: 455B Width: 18  |  Height: 31  |  Size: 782B

+ 3
- 3
src/views/problem/detailDialog.vue View File

@@ -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);

Loading…
Cancel
Save