Ver código fonte

问题管理地图修改

master
huxinglu 4 anos atrás
pai
commit
2ece16b594
2 arquivos alterados com 3 adições e 3 exclusões
  1. BIN
      src/assets/img/marker-img.png
  2. +3
    -3
      src/views/problem/detailDialog.vue

BIN
src/assets/img/marker-img.png Ver arquivo

Antes Depois
Largura: 32  |  Altura: 32  |  Tamanho: 455B Largura: 18  |  Altura: 31  |  Tamanho: 782B

+ 3
- 3
src/views/problem/detailDialog.vue Ver arquivo

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

Carregando…
Cancelar
Salvar