我有个健康类的微信小程序,想简单的调用地图api展示附近的医院,并标记出来,但是内置的微信地图只有简单查看附近区域,没有标记的地方,请问怎么能实现像微信小程序中的摩拜单车那样能标记附近单车的效果?能否给个解决思路呢
可以的哥哥
data: {
latitude: ‘’,
longitude: ‘’,
markers: [{
marker: [{
iconPath: ‘…/…/images/[email protected]’,
id: 0,
latitude: ‘’,
longitude: ‘’,
width: 40,
height: 40,
callout: {
content: ‘’,
color: ‘#666’,
fontSize: 14,
borderRadius: 6,
bgColor: ‘#FFF’,
padding: 10,
display: ‘ALWAYS’
}
}]
}]
},