Cesium 1.11 release

We are starting the 1.11 release. It will be out later today. This will be an awesome release with a lot of camera improvements.

Patrick

Cesium 1.11 is now available: http://cesiumjs.org/2015/07/01/Cesium-version-1.11-released/

Patrick

Any tips on how to get around the deprecation of camera.clone?

- V

Camera.clone never completely cloned the camera, so I assume you were using it to store a view for later? You can still easily do that yourself. For example:

var cameraSettings = {

position : Cesium.Cartesian3.clone(camera.position),

direction : Cesium.Cartesian3.clone(camera.direction),

up : Cesium.Cartesian3.clone(camera.up),

right : Cesium.Cartesian3.clone(camera.right),

transform : Cesium.Matrix4.clone(camera.transform),

};

Thanks, you're the best!

- V

Thanks a lot for the great job!

Sorry I'm asking it here, but do you have a timeline for vector on terrain rendering?
I check every new version for this feature...

We don’t have a specific timeline, but work is picking up again on the ground-primitive branch.

Patrick

Love the addition of UrlTemplateImageryProvider!

  • Jackie