Selection indicator is not appearing on full billboard object

selection indicator issue

I am using drag drop in my case.The selection indicator is not appearing on full icon in my case. kindly help.

position: Cesium.Cartesian3.fromDegrees(latLngArray[0], latLngArray[1]),
        billboard: {
            image: imageName,
            width: iconData.width !== 55 ? iconData.width : imgWidth,
            height: iconData.height !== 55 ? iconData.height : imgHeight,
            rotation: iconData.rotation,
            heightReference: Cesium.HeightReference.RELATIVE_TO_GROUND,
            verticalOrigin: Cesium.VerticalOrigin.BOTTOM,
            horizontalOrigin: Cesium.HorizontalOrigin.CENTER
        }

The selection indicator appears based on the origin of the entity. It looks like perhaps the billboard here is offset (since it has a vertical origin of bottom).

There’s a few workarounds you can do in your app here, like create an invisible entity with the right shape/size to give you more control over the selection indicator: Position of the selection rectangle when using polyline

Or disable the built-in selection indicator and create your own as suggested here: How to not auto centralize viewer selectionIndicator poistion for an entity with label, billboard and polyline?