使用产品:超图cesium
操作系统:win 10
问题详细描述:我是用以下方式添加若干标牌,鼠标点击获取到标牌信息。能否自定义数据到标牌实例上面?
let eventsBillboards = viewer.scene.primitives.add(new Cesium.BillboardCollection())
eventsBillboards.add({
position: Cesium.Cartesian3.fromDegrees(lon,lat),
image: '',
verticalOrigin: Cesium.VerticalOrigin.BOTTOM,
id:'123',
properties:{
a:'你好'
}
})
其中自定义的properties拿不到