I’m trying to animate a billboard moving between two points hundreds of miles apart on the Earth. What I see happening is that my billboard is visible at the endpoints, but as it interpolates between them it sinks into the earth and disappears then emerges on the other end. My billboard snippet of CZML looks like this:
"billboard": {
"eyeOffset": {
"cartesian": [ 0, 0, 0 ]
},
"heightReference": {
"heightReference": "RELATIVE_TO_GROUND"
},
"horizontalOrigin": "CENTER",
"verticalOrigin": "CENTER",
"image": "../images/logo.png",
"pixelOffset": {
"cartesian2": [ 0, 0 ]
},
"scale": 0.05
}
I’ve also tried with heightReference set to CLAMP_TO_GROUND to no avail. Any clues as to what I might be doing wrong?