Thanks for the additional info. However, I wasn’t able to reproduce this problem. Here is the code example I tested with:
var viewer = new Cesium.Viewer(‘cesiumContainer’);
var west = -45.977340999999605;
var south = -21.417668000000273;
var east = -45.96351400000036;
var north = -21.403251000000008;
var rectangle = new Cesium.Rectangle.fromDegrees(west, south, east, north);
viewer.entities.add({
rectangle : {
coordinates: rectangle,
fill: false,
outline : true,
outlineColor: Cesium.Color.WHITE
}
});
I added a rectangle so you can see where the bounds are, and the camera includes the whole thing in both 2D and 3D for me. I tried different screen sizes as well and got the same result.
What version of Cesium are you using? Are there any other steps to reproduce the problem?