- addMarkers添加聚集点在开发工具上能用,在真机调试上显示不出点?请问是什么回事
for (let i in markersData) { const newMarker = { id: 1, iconPath: '../../static/pointDevice.png', width: 50, height: 50, joinCluster: true, // 指定了该参数才会参与聚合 label: { width: 50, height: 30, borderWidth: 1, borderRadius: 5, borderColor:'#138FE3', bgColor: '#ffffff', anchorX: 0, anchorY: -10, content:'' } } newMarker.id = i +1 newMarker.latitude = markersData[i].lat newMarker.longitude = markersData[i].lon newMarker.label.content = markersData[i].species newMarker.clusterId = markersData[i].id this.markerListData.push(newMarker.id) markers.push(newMarker) } // console.log(markers,'asdafdasf') this.mapContext.addMarkers({ markers:markers, clear: true, complete(res) { console.log(res,'complete') }, success(res){ console.log(res,'成功') } })
2022-04-27 - security.mediaCheckAsync 无法检测Mp4文件,那请问如何检测视频文件呢?
请问一下视频文件应该如何检测
2021-12-30 - 小程序,文字安全API,msgSecCheck不管传入违禁词,但是返回ok,怎么回事?
请问我这个调用出了什么问题吗?UTF-8也加了,但是接口无论输入什么敏感字都还是返回成功,code值等于0[图片]
2021-12-29