Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Simple cesium resource control #235

Merged
merged 2 commits into from
Sep 3, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@
primitive collection may be retrieved with the `getRootPrimitive()` method.

* Changes
* Allow blocking Cesium rendering to save resources using
`olcs.OLCesium#setBlockCesiumRendering(true)`.
* The `build/generate-info.js` tool now follows symlinks to properly
generate exports.
* `olcs.RasterSynchronizer.prototype.convertLayerToCesiumImagery` may be
Expand Down
33 changes: 25 additions & 8 deletions src/ol3cesium.js
Original file line number Diff line number Diff line change
Expand Up @@ -141,12 +141,19 @@ olcs.OLCesium = function(options) {
this.camera_.readFromView();

this.cesiumRenderingDelay_ = new goog.async.AnimationDelay(function(time) {
this.scene_.initializeFrame();
this.handleResize_();
this.scene_.render();
this.enabled_ && this.camera_.checkCameraChange();
if (!this.blockCesiumRendering_) {
this.scene_.initializeFrame();
this.handleResize_();
this.scene_.render();
this.enabled_ && this.camera_.checkCameraChange();
}
this.cesiumRenderingDelay_.start();
}, undefined, this);

/**
* @private
*/
this.blockCesiumRendering_ = false;
};


Expand Down Expand Up @@ -255,10 +262,10 @@ olcs.OLCesium.prototype.setEnabled = function(enable) {


/**
* Preload Cesium so that it is ready when transitioning from 2D to 3D.
* @param {number} height Target height of the camera
* @param {number} timeout Milliseconds after which the warming will stop
* @api
* Preload Cesium so that it is ready when transitioning from 2D to 3D.
* @param {number} height Target height of the camera
* @param {number} timeout Milliseconds after which the warming will stop
* @api
*/
olcs.OLCesium.prototype.warmUp = function(height, timeout) {
if (this.enabled_) {
Expand All @@ -279,3 +286,13 @@ olcs.OLCesium.prototype.warmUp = function(height, timeout) {
function() { !that.enabled_ && that.cesiumRenderingDelay_.stop(); },
timeout);
};


/**
* Block Cesium rendering to save resources.
* @param {boolean} block True to block.
* @api
*/
olcs.OLCesium.prototype.setBlockCesiumRendering = function(block) {
this.blockCesiumRendering_ = block;
};