您好,首先获取地图图层的范围ImageryLayer.getViewableRectangle(),然后根据范围来设置场景相机
var rectangle = ImageryLayer.getViewableRectangle();
camera.setView({
destination : rectangle,
orientation: {
heading : Cesium.Math.toRadians(0.0), //默认值
pitch : Cesium.Math.toRadians(-90.0), // 默认值
roll : 0.0 //默认值
}
});