微信小程序map组件callout与label简单用法

callout和label的效果图
微信小程序map组件callout与label简单用法
微信小程序map组件callout与label简单用法
callout初始位置在标记上方 label初始位置在标记右下方

data:{
	marker:[{
		//气泡label
		label:{
        		content: ‘预约’,  //文本
        		color: '#FF0202',  //文本颜色
        		borderRadius: 3,  //边框圆角
       			borderWidth: 1,  //边框宽度
        		borderColor: '#68c4c7',  //边框颜色
       			bgColor: '#ffffff',  //背景色
       			padding: 5,  //文本边缘留白
       			textAlign: 'center'  //文本对齐方式  left, right, center
      	},
      	//气泡callout
      	callout: {
        		content: '预约',  //文本
       	 		color: '#FF0202',  //文本颜色
        		borderRadius: 3,  //边框圆角
       			borderWidth: 1,  //边框宽度
       			borderColor: '#FF0202',  //边框颜色
       			bgColor: '#68c4c7',  //背景色
       			padding: 5,  //文本边缘留白
       			textAlign: 'center'  //文本对齐方式  left, right, center
   		}
	}]
}

另外可用参数anchorY, anchorX调整纵向和横向的位移
微信小程序map组件callout与label简单用法
用callout有个问题就是如果marker过多 会导致callout被遮挡 官方文档没有提及zindex等参数调整层级 点击当前标记也没用 但是用label可以解决

上一篇:Charles 移动设备抓包


下一篇:一个 JS 库就能解决小程序跨页传递事件消息和数据