this.mapCtx = wx.createMapContext('myMap')
this.mapCtx.moveToLocation();
this.mapCtx.setLocMarkerIcon({
iconPath:"https://res.wx.qq.com/wxdoc/dist/assets/img/map.dd86f5e2.jpg",
complete:function(res){
console.log('setLocMarkerIcon')
console.log(res)
}
})
用了,图片没有改成功
请具体描述问题出现的流程,并提供能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。
2、不能指定图标的大小
3、本地路径只支持相对路径,不支持绝对路径
有没有大佬解决了 遇到一样的问题
this.mapCtx = wx.createMapContext('mapId'); this.mapCtx.setLocMarkerIcon({ iconPath:'../../image/location.png' }); //手机看,IDE看不出来
setLocMarkerIcon
还有一条,使用setLocMarkerIcon和wx.getLocation不要同时使用,不然setLocMarkerIcon不生效
1、不支持模拟器显示,只支持真机显示
2、不能指定图标的大小
3、本地路径只支持相对路径,不支持绝对路径