Point, Label , Line

Hi, I have lines, points and a label on map. But for some reason half of the points and the label remain underground. What could be the reason?

example image.

example of code.

viewer.entities.add({
      position: Cartesian3,
      point: {
        color: Cesium.Color.RED,
        pixelSize: 8,
        heightReference: Cesium.HeightReference.CLAMP_TO_GROUND,
      },
      label: {
        text:  "231345",
        font: "20px sans-serif",
        showBackground: true,
        horizontalOrigin: Cesium.HorizontalOrigin.CENTER,
      },
      
    });

Capture2

@Mr_Fun

Thank you for the descriptive post! I was looking through the community forum and our documentation and I found some resources that might be helpful to you.

Here is a forum post where another community member asks a very similar question:

@dzung gives a great response. Essentially, this functionality is by design - we want to prevent the points and billboards from obstructing the terrain when we zoom in. The response also provides a link to an active GitHub issue:

This issue goes over various workourounds that might be relevant to your use case.

Let me know if you have any other questions or concerns!

-Sam