Two billboards at the same location, only one is clickable

I have two billboards at the same location, but only one of them is clickable. Any suggestion to solve this problem? Maybe use pinBuilder to create a numbered pin, but as I have the clustering feature in my project, such numbered pin might be confused. And as I click a billboard which contains multiple cites,is this possible to show a list of names and descriptions in the information window?

Thanks!

Hi there,

Check out scene.drillPick: http://cesiumjs.org/Cesium/Build/Documentation/Scene.html?classFilter=sce#drillPick

This pick will return all the entities beneath the cursor, casting a ray down (hence the “drill”). Using this, you can customize the selection behavior, and perhaps generate an infobox containing descriptions for all the entities beneath the ray.

Hope that helps,

  • Rachel