callout气泡正常应该在位置图标的上方,现在重叠在一起了该怎么办
.wxml文件如下:
<map class="map" markers="{{siteMakers}}" latitude="{{location.latitude}}" longitude="{{location.longitude}}" scale="{{20}}">
data数据如下:
siteMakers:
[
{
callout: {
content: '内容',
padding: 10,
borderRadius: 2,
display: 'ALWAYS',
anchorY:-10
},
latitude: 31.283131,
longitude: 121.213922,
iconPath: './imgs/Marker1_Activated@3x.png',
width: '34px',
height: '34px',
rotate: 0,
alpha: 1
}
],
location: {
latitude: 31.283131,
longitude: 121.213922
},
问题已解决,需要将上面的maker的宽高设置为number类型即写成
具体为什么不能写成'34px',有待进一步查看