获得过 0 次赞
回答过的问题获得 0 次赞
分享过的文章/案例获得 0 次赞
评论与回复获得 0 次赞
onReady() { mapContext = wx.createMapContext('map'); }, // 在合适的事件中调用移动 marker 的方法 moveMarker() { mapContext.translateMarker({ markerId: 1, // marker 的唯一标识符 destination: { latitude: 39.908823, // 目标位置的纬度 longitude: 116.397470, // 目标位置的经度 }, autoRotate: true, // 是否自动旋转 marker rotate: 90, // 旋转角度 duration: 2000, // 移动到目标位置的过程时间,单位为毫秒 animationEnd() { console.log('Marker moved!'); }, }); },
小程序地图上图标移动问题,会一闪一闪怎么办?地图上有多个marker点,控制其中一两个点改变坐标移动,其它位置不变 注:本人尝试用js控制markers,但所有图标会一闪一闪的,效果很差。
2023-07-05