Show entities on Circle

Hello Everybody,
I have an application in which I have to show some placemarks within a specified region. I am able to achieve that but the problem is that my encircled area is coming over the entities so I am not able to select the entities. Please refer the attached image Circle Over Entities.JPG. Can anybody help me in this.

Thanks
Manoj Sethi
manojsethi90@gmail.com

Hello Manoj,

You can the eyeOffset property of the billboard to layer the pins over the circle. A negative z value will move it towards the screen. Here’s an example:

viewer.entities.add({
position : Cesium.Cartesian3.fromDegrees(-76, 41),
billboard : {
image : pinBuilder.fromColor(Cesium.Color.RED, 48).toDataURL(),
verticalOrigin : Cesium.VerticalOrigin.BOTTOM,
eyeOffset: new Cesium.Cartesian3(0, 0, -1000)
},
});

``

Hope this helps!

-Hannah

Thanks Hannah,

You saved my day. :slight_smile:

Manoj