1.0.3版本无效啊,点击后没有任何反应。1.0.1版本的在新的开发工具里又不让用
引入组件wxacommentplugin使用出现问题https://developers.weixin.qq.com/miniprogram/dev/platform-capabilities/business-capabilities/guarantee/comment-plugin.html 调用报错提示 plugin.openComment success {errCode: 0, errMsg: ""} 编译报错提示 "plugin://wx82e6ae1175f264fa/test" has been used as another component or page. Please do not register multiple components or pages with the same alias.(env: Windows,mp,1.06.2401020; lib: 3.2.0) (anonymous) @ appservice.js:6505 (anonymous) @ appservice.js:6510 (anonymous) @ VM4710:1962 Promise.then (async) (anonymous) @ VM4710:2 (anonymous) @ VM4710:1965 "plugin://wx82e6ae1175f264fa/index" has been used as another component or page. Please do not register multiple components or pages with the same alias.(env: Windows,mp,1.06.2401020; lib: 3.2.0)
01-311.构建地图的marker时,属性是id且值为number;且要设置旋转中心点anchor: {x: 0.5, y: 0.5} 2.translateMarker入参中的autoRotate文档中说是必填参数,但实际是不要设置此参数,才能旋转 3.旋转角度<180的顺时方向,否则逆时方向:360-角度,且该角度是目标角度,即再旋转同样角度是没有反应的,认为已经旋转到目标角度了(相对于 marker的原始角度算起)
translateMarker的rotate应该如何设置?这个rotate是应该设置希望转到的角度,还是设置在目前角度上转动的角度? 例如,目前角度是30度,我希望转到90度,是设置rotate为60还是设置成90?
2021-03-191.构建地图的marker时,属性是id且值为number;且要设置旋转中心点anchor: {x: 0.5, y: 0.5} 2.translateMarker入参中的autoRotate文档中说是必填参数,但实际是不要设置此参数,才能旋转 3.旋转角度<180的顺时方向,否则逆时方向:360-角度,且该角度是目标角度,即再旋转同样角度是没有反应的,认为已经旋转到目标角度了(相对于 marker的原始角度算起)
MapContext.translateMarker duration 平移与旋转如何分别计算?//平移 console.log('平移开始', app.getBeijingTime().time,rotate); that.mapCtx.translateMarker({ markerId: carMarkerID, destination: { latitude: tcbDbRes.latitude, longitude: tcbDbRes.longitude, }, autoRotate: true, moveWithRotate: false, rotate, duration: 30000, animationEnd: function(animationEnd_e) { console.log('平移结束', animationEnd_e,app.getBeijingTime().time); that.showBus();//从云端读取新数据,供下一次平移动画 }, fail: function() { that.showBus({ ifFirstTime: true, }); } }) 看似是30秒后animationEnd才执行下一次的获取新数据,其实是不到1秒内就疯狂执行animationEnd函数。 请问,这是bug么?还是我用的不对?
2021-03-19bindanchorpointtap eventhandle 否点击定位标时触发,[代码]e.detail = {longitude, latitude}[代码] show-location 有实时定位的效果,如果有回调接口,定位变化就发送坐标就好了,不用getLocation手动定时获取,不用事件
map组件中,可以获取到show-location对应的坐标吗?要是要是可以获取到,就不用调用getLocation来重新获取获取当前坐标了
2021-03-09