收藏
回答

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,'成功')
								}
							})
回答关注问题邀请回答
收藏

2 个回答

  • 武曲心
    武曲心
    2022-04-28

    大兄弟,你贴的这个左右分开的代码是想怎么样?

    2022-04-28
    有用
    回复 2
    • 庞大
      庞大
      发表于移动端
      2022-04-28
      额,其实用手机看好一点,不好意思
      2022-04-28
      回复
    • 庞大
      庞大
      2022-04-28
      clusterId不要加上这个就行了,解决了
      2022-04-28
      回复
  • 庞大
    庞大
    2022-04-27

    手机真我GT大师探索版

    2022-04-27
    有用
    回复
登录 后发表内容