打印地图mapContext,没有addArc方法,使用报错Unhandled promise rejection TypeError: mapContext.addArc is not a function
const mapContext = wx.createMapContext('map', this);
console.log(mapContext);
mapContext.addArc({
id: 11,
start: departure,
end: destination,
angle: 45,
})
检查下基础库是否是2.21.0以上
addArc 画的弧线上可以添加方向嘛
基础库版本:2.22.0,开发者工具提示不支持,真机调试API调用成功,但是地图上没有出来效果呢。
基础库版本过低导致的。