行驶路径moveAlong不顺滑,为什么会有较大锯齿?
const mapCtx = wx.createMapContext('map', this);
mapCtx.moveAlong({
markerId: 1,
path: this.data.polyline[0].points, //移动路径的坐标串
duration: 10000, //平滑移动的时间
autoRotate: true //车头按行驶方向自动旋转,默认true
});
用的是官方示例,只是改了path的值,但出来的结果会有莫名其妙的差异,如下图
实际上应该是按公路一条直线或弧线,为什么会出现锯齿状呢?
1 回复
你好,麻烦提供出现问题的具体机型、微信版本号、系统版本号,以及能复现问题的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)