hi,
in COLUMBUS_VIEW, with HeightReference.CLAMP_TO_GROUND prop in all entities, I want to implement a point below the rectangle. I know that Cesium purposely did not implement Z INDEX to the point due to the nature of the point entity,
the question is if there is still a way to implement it.
Sample code:
<Entity
rectangle={{
coordinates: Rectangle.fromDegrees(34.5007, 30.5046, 37.5007, 35.0046),
material: Color.DARKSLATEBLUE,
heightReference: HeightReference.CLAMP_TO_GROUND,
zIndex: 100,
}}
/>
And the point will appear below the rectangle.
with gratitude, israel