Problem with function flyTo()

Hello!
The problem is that after the flight on the coordinates there are problems in the relief depicted in the picture.

Who ever had this? How to deal with this? Thanks in advance for the answer!

A minimal code example:
function test() {
    if (terrainProvider.ready)
        scene.camera.flyTo({
            destination: Cesium.Cartesian3.fromDegrees(37.6255282346114, 55.825518463942 - 0.00275, 163.70853901087668 + 200.0),
            orientation: {
                pitch: Cesium.Math.toRadians(-35.0),
                roll: 0.0
            }
        });
    else
        setTimeout(function () {
            test();
        }, 1000);
}

The Cesium version 1.37, my operating system is Windows 10 and Google Chrome Browser.

Hi there,

Could you provide a little more context on what data you’re loading, like imagery? I think it may be a problem with that rather than the flyTo.

Thanks!

Gabby