let markers = [{
id : 1,
latitude : this.data.latitude,
longitude : this.data.longitude,
iconPath: '../../images/汽车.png',
width:30,
height:30,
callout : {
content : "停车点",
fontSize : 14,
borderRadius : 2,
bgColor : '#fff',
padding : 4,
display : 'ALWAYS'
}
}]
this.mapCtx.addMarkers({
markers,
clear : false,
success : (res) => {
console.log(that.mapCtx);
},
fail: (err) => {
console.log(err);
}
})
data: {
latitude:0,
longitude:0,
markers: [
{
id:2,
name:'123',
latitude : 34.34127,
longitude : 108.93984,
iconPath: '../../images/商店.png',
width:30,
height:30,
callout : {
content : "shop",
fontSize : 14,
borderRadius : 2,
bgColor : '#fff',
padding : 4,
display : 'ALWAYS'
}
},
{
id:3,
name:'123',
latitude : 34.240969,
longitude : 108.901913,
iconPath: '../../images/商店.png',
width:30,
height:30,
callout : {
content : "shop",
fontSize : 14,
borderRadius : 2,
bgColor : '#fff',
padding : 4,
display : 'ALWAYS'
},
},
{
id:4,
name:'123',
latitude : 34.34027,
longitude : 108.93584,
iconPath: '../../images/商店.png',
width:30,
height:30,
callout : {
content : "shop",
fontSize : 14,
borderRadius : 2,
bgColor : '#fff',
padding : 4,
display : 'ALWAYS'
},
}
],
不知道有没有理解错意思..
https://developers.weixin.qq.com/miniprogram/dev/component/map.html#%E5%9C%B0%E5%9B%BE%E5%9F%BA%E7%A1%80%E5%B1%9E%E6%80%A7
let markers = [{
iconPath: "../../images/xxx.png",
id: 0,
latitude: points[0].latitude,
longitude: points[0].longitude,
width: 32,
height: 32
}, {
iconPath: "../../images/xxx1.png",
id: 2,
latitude: points[x].latitude,
longitude: points[x].longitude,
width: 48,
height: 24
}]