Is it possible to have a billboard never be obscured by other entities, even if the billboard's altitude is below other entities? I'd like the billboard to always take precedence over lines, walls, etc, regardless of altitude.
That is, in the following sandcastle, I'd like the line to never obscure the image. Is it possible, or am I expecting too much?
var viewer = new Cesium.Viewer('cesiumContainer');
viewer.entities.add({
position : Cesium.Cartesian3.fromDegrees(-75.59777, 40.03883, 10),
billboard :{
image : '../images/Cesium_Logo_overlay.png'
}
});
var positions = [ -65.59777, 40.03883, 10000, -75.59777, 40.03883, 10000, -85.59777, 40.03883, 10000 ];
viewer.entities.add({
polyline: {
positions: Cesium.Cartesian3.fromDegreesArrayHeights( positions ),
width: 10
}
});
viewer.zoomTo( viewer.entities );