1. A concise explanation of the problem you’re experiencing.
when i’m trying to use Cartesian3.fromDegrees with lat+lng+alt to display airplane on the screen i have problem with his
Description
Altitude.
i see the plane in the correct position by in space.
I’m using BillboardCollection & Billboard for that with ReactJs.
2. A minimal code example. If you’ve found a bug, this helps us reproduce and repair it.
<Billboard
color={Color.YELLOW}
position={new Cartesian3.fromDegrees(this.state.drones[0].lng, this.state.drones[0].lat,0.0001)}
image={image}
scale={0.4}
/>
<Billboard
color={Color.ORANGE}
position={new Cartesian3.fromDegrees(this.state.drones[1].lng, this.state.drones[1].lat,0.001)}
image={image}
scale={0.4}
/>
**this is a picture of the problem: **
i just want to see the planes on ground and not in space…
thank you!
Nir