问题描述
web开发高德地图marker的label重叠了,怎么让label不重叠显示?
问题出现的环境背景及自己尝试过哪些方法
相关代码
// 请把代码文本粘贴到下方(请勿用图片代替代码)
marker = new SimpleMarker({
//直接使用dom节点
iconStyle: '
//图标文字
iconLabel: {
innerHTML: realName,
},
map: map,
position: [lng, lat],
showPositionPoint: false,
// 以 icon 的 [center bottom] 为原点
offset: new AMap.Pixel(-30, -10)
});
marker.setLabel({
//修改label相对于maker的位置
offset: new AMap.Pixel(-15, -23),
content: "
" + stayTime + "min" + "
});
}
你期待的结果是什么?实际看到的错误信息又是什么?
能让maeker的label不重叠地显示,比如左边一个右边一个,而不是写死的