1. A concise explanation of the problem you're experiencing.
I realize a flight simulator and I use Cesium's "Camera" with Bing Maps images to show what we see outside the plane.
Unhappily, the picture seems to be "flat", not in 3D.
For example, have a look at position 48.863466N, 2.301881E, height 100m,
heading 230°, pitch 10°. You will see the shade of Eiffel Tower on river Seine, but not Eiffel Tower itself.
If you use Bing Maps directly at the same position, you see it very well.
How is it possible to correct this problem ?
Thank you very much for your help.
2. A minimal code example. If you've found a bug, this helps us reproduce and repair it.
homeCamera = {
orientation : {
heading : Cesium.Math.toRadians(Heading),
pitch : Cesium.Math.toRadians(Pitch),
roll : Cesium.Math.toRadians(Roll)
}
};
viewer.camera.setView(homeCamera);
3. Context. Why do you need to do this? We might know a better way to accomplish your goal.
I realize a flight simulator and I use Cesium's "Camera" with Bing Maps images to show what we see outside the plane.
4. The Cesium version you're using, your operating system and browser.
Cesium's version is the latest one (1.42 I presume). I use a PC with Windows 7 and Firefox 58.0.2 (latest version).