瀏覽代碼

问题管理地图修改

master
huxinglu 4 年之前
父節點
當前提交
2ece16b594
共有 2 個檔案被更改,包括 3 行新增3 行删除
  1. 二進制
      src/assets/img/marker-img.png
  2. +3
    -3
      src/views/problem/detailDialog.vue

二進制
src/assets/img/marker-img.png 查看文件

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

+ 3
- 3
src/views/problem/detailDialog.vue 查看文件

@@ -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…
取消
儲存