- 开发工具里面打开腾讯地图卡死?
i5 11400,16G,固态硬盘。 开发工具里面如果打开有腾讯地图的页面,CPU直接冲到90%以上,打开其他的页面,CPU只有几%。不是页面的问题,打开官方提供的地图DEMO也这样,就算是一个页面只有一个map组件,也会冲到90%以上。。。 试过很多版本的,现在是最新的开发工具,1.05.2108130
2021-08-26 - bindmarkertap失效,在手机上面无响应,开发工具有响应,几个手机都试了,没响应?
markertap在手机上面无响应,开发工具有响应,几个手机都试了,没响应 https://developers.weixin.qq.com/s/IWn0izm97hna 上面是代码片段分享链接 <map id="myMap" style="width: 100%; height: 100%;position: fixed;top: 0;left: 0;" latitude="27.2213" longitude="111.43888" scale="6" bindcontroltap="controltap" markers="{{markers}}" bindmarkertap="markertap" bindregionchange="regionchange" show-location ></map> const app = getApp() Page({ data: { markers: [{"id":2,"clusterId":2,"title":"测试地","latitude":"27.916539113640834","longitude":"112.54059791564941","width":"30px","height":"40px","rotate":0,"alpha":1,"zIndex":100,"callout":null}] }, onLoad() { console.log('https://mp.weixin.qq.com/debug/wxadoc/dev/devtools/devtools.html') }, controltap:function(){}, regionchange:function(){}, markertap:function(e){ console.log('markertap', e); } })
2021-01-23