APP端使用高德地图callout不生效, 只有content可以显示, 其他的属性都不生效。
const markers = users.map((user) => {
return {
id: user.phoneNumber,
// 用户ID或其他唯一标识
latitude: user.latitude,
longitude: user.longitude,
iconPath: '/static/images/map-bigcar.png',
width: 30,
// 标记图标宽度
height: 30,
// 标记图标高度
callout: {
content: phoneNumber !== user.phoneNumber ? user.nickName :
'我',
color: '#ffffff',
fontSize: '16',
borderRadius: '70',
padding: '10',
bgColor: '#0082FCaa',
// 'BYCLICK':点击显示; 'ALWAYS':常显
// display: 'BYCLICK'
display: 'ALWAYS'
}
};
});