- 备案审核 工信部短信核验点击没反应怎么办?
点提交接口403 怎么办 短信收到块一天了 昨天点没反应 今天还没反应 [图片]
08-22 - 小程序map组件如何添加天地图图层?
pc h5都可以在原有图层上添加新图层 小程序 怎么在map组件上覆盖天地图图层呢
2021-10-08 - 小程序有没有什么好的树形组件或者拓扑图组件?
[图片] 类似于这种的
2021-07-21 - 腾讯卫星图选点,无卫星图怎么办?
小程序内使用内置的腾讯地图想要标志出具体的点的坐标但放大到一定程度就没有卫星图,该怎么办 [图片] [图片]
2021-07-12 - 引入腾讯地图选点组件,怎么显示卫星图?
[图片] [图片] 如何在参数中设置显示卫星图 在线求解,急 wx.navigateTo({ url: 'plugin://chooseLocation/index?key=' + key + '&referer=' + referer + '&location=' + location + '&category=' + category })
2021-06-25 - onLocationChange在息屏状态下不执行,无法获取到定位?
已经开启wx.startLocationUpdateBackground和wx.onLocationChange 监听在手机屏幕点亮期间一直正常 ==》 即获取到的坐标点会添加到polyline中显示到地图上 当手机息屏或者放入后台,切换到其他软件等 onLocationChange没有被触发,但手机下拉任务栏或者息屏会显示 小程序xxx正在使用您的位置 在锁屏状态下点亮屏幕后 期间的点没有画到地图上,即 poyline的points中没有添加进点 亮屏后又可看到新的点添加显示到地图上 代码片段https://developers.weixin.qq.com/s/0uNw2mmP7eqI 在线求解
2021-05-17 - 地图poyline 动态加载动画效果一直闪烁?
[图片][图片] 刚开始是一条绿色的线 想要匀速走过的轨迹线变成红色 但是轨迹线动态加载时一直在闪烁 js // 全屏地图路线图并动画移动 var ii = 0 var timer = '' // 坐标集合 let points = [{ longitude: 106.5538, latitude: 29.50401, }, { longitude: 106.553907, latitude: 29.499472, }, { longitude: 106.556354, latitude: 29.487089, }, { longitude: 106.555667, latitude: 29.485053, }, { longitude: 106.553285, latitude: 29.476311, }, { longitude: 106.550131, latitude: 29.473864, }, { longitude: 106.540174, latitude: 29.468932, }, { longitude: 106.536183, latitude: 29.469941, }, { longitude: 106.531312, latitude: 29.469212, }, { longitude: 106.526527, latitude: 29.471043, }, { longitude: 106.524317, latitude: 29.47207, }, { longitude: 106.524253, latitude: 29.471939, }, // 轨迹点 . . . ]; Page({ data: { markers: [], // 标记点集合 polyline: [], // 坐标点集合 satellite: false, // 是否开启卫星图 i: 0 }, onReady: function () { this.mapCtx = wx.createMapContext('map'); // 创建 map 上下文 MapContext 对象 }, start() { let that = this; clearInterval(timer) ii = 0 this.setData({ polyline: [{ points: points, color: "#14C556", width: 5 }], // markers:markers, longitude: 106.587891, latitude: 29.544862, }) timer = setInterval(() => { ii = ++ii if (ii == points.length - 1) clearInterval(timer) that.translateMarker() }, 500); }, onLoad: function () { let that = this; this.start() }, // 平移marker,带动画 translateMarker: function (markers) { let that = this; var passedpoint = []; if (ii > 0) { for (var pointsindex = 0; pointsindex <= ii; pointsindex++) { passedpoint.push(points[pointsindex]); } let { polyline } = that.data polyline.push({ points: passedpoint, color: "#FF0000DD", width: 3, arrowLine: true }); that.setData({ polyline }) } }, }) wxml <button bindtap="start">开始</button> <view class="container"> <map id="map" longitude="{{longitude}}" latitude="{{latitude}}" scale="12" markers="{{markers}}" polyline="{{polyline}}" enable-satellite="{{satellite}}" show-location style="width: 100%; height: 100vh;"></map>
2021-04-06 - 小程序使用npm如何发布?如果引入的内容过多,npm包过大,上传大于2M怎么办?
1.是直接点击上传就可以吗,上传时node_modules是不上传,只会上传miniprogram_npm这个文件夹吗 2.如果我使用npm的体积过大,导致主包内容大于2M,但npm里的内容又不能卸载,怎么办 3.每次npm 之后都需要在 工具=》构建npm吗 4.暂时就这个,还请解答一下,万分感谢
2021-03-22 - map组件polyline 动态增加每次都重绘,闪烁怎么办?
首先 想要有一个轨迹平滑加载的一个动画,而不是直接把线画上去 思路 通过定时器往polyline的points里添加点的坐标,动态更新 [图片] 问题 每添加一个点,页面上的线就会闪烁一下,相当于每添加一个点都是重新绘制一遍 请问如何让它直接平滑的添加而不是每次都重新绘制
2021-03-12 - 小程序支付成功后,不点击完成,不会进入到success回调,怎么解决?
信息提交发起支付,支付成功之后,执行为其做绑定关系,但如果不点击完成往后success是不执行的,在线求解
2021-03-11