在ios中“当前位置”显示正常,但是在安卓中背景色显示异常
var markers = []
markers.push({
id: 1,
latitude: that.latitude,
longitude: that.longitude,
width: 20,
height: 30,
//title: '我在这里',//标注点名
//alpha: 0.5 ,
callout: {//自定义标记点上方的气泡窗口 点击有效
content: '安全范围中',//文本
color: '#ffffff',//文字颜色
fontSize: 14,//文本大小
borderRadius: 15,//边框圆角
borderWidth: '10',
bgColor: '#30ad19',//背景颜色
display: 'ALWAYS'//常显
}
})
that.marker = markers
请具体描述问题出现的流程,并提供能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。
ios显示没问题,但是安卓设备中显示不对