This is a billboard implementation. The element must be a child of ac-layer
element. The properties of props are the same as the properties of Cesium's BillboardGraphics
.
<ac-billboard-desc props="{image: entity.image,position: entity.position,scale: entity.scale,color: entity.color,name: entity.name}"></ac-billboard-desc>
Check the billboard-layer-example.component.ts
or the full stackblitz example
This is a single billboard implementation. The element must be a child of ac-map
element. The properties of props are the same as the properties of Cesium's BillboardGraphics
.
<ac-billboard [props]="{image: image,position: position,scale: scale,color: color,name: name}"></ac-billboard>
This is a billboard primitive implementation. The element must be a child of ac-layer
element. The properties of props are the same as Cesium's Billboard
​
<ac-billboard-primitive-desc props="{image: entity.image,position: entity.position,scale: entity.scale,color: entity.color,name: entity.name}"></ac-billboard-primitive-desc>
​