地图组件的marker的label为什么不能居中呢, 点击地图上的图标,callout 也没法弹出
markers: [{
id: 1,
latitude: 23.099994,
longitude: 113.324520,
name: ‘T.I.T 创意园’,
callout:{
content:“将大幅降价”
},
label: {
content: “将大幅降价”,
textAlign:“center”
}
}],
就是你们例子里的
wechatide://minicode/3uVxpmmT6wY9
我把markers里的数据改成这样的
markers: [{
id: 1,
latitude: 23.099994,
longitude: 113.324520,
title: ‘T.I.T 创意园’,
callout:{
content:“calloutcallout”,
display: “ALWAYS”,
textAlign: “center”,
bgColor: “#fff”,
padding: 10,
},
label: {
content: “label”,
textAlign:“center”,
bgColor:"#fff",
padding:10,
// anchorX: -10, anchorY: -10,
// x: -10, y: -30,
}
}],
显示成这个样子