Show Preview
Show Cesium Code
Show Google Earth Code
For Google Earth Developers
All Google Earth examples
Additional Resources
Tutorials
Cesium Sandcastle
Reference Documentation
View Changed!
Relevant Cesium Source
Relevant Google Earth Source (
link
)
var vcTimeout = null; google.earth.addEventListener(ge.getView(), 'viewchange', function() { document.getElementById('vc-indicator').style.visibility = 'visible'; if (vcTimeout !== null) window.clearTimeout(vcTimeout); // hide the 'view changed' message after 250 ms of // inactivity vcTimeout = window.setTimeout(function() { document.getElementById('vc-indicator').style.visibility = 'hidden'; vcTimeout = null; }, 250); }); google.earth.addEventListener(ge.getView(), 'viewchangeend', function() { vceCount++; document.getElementById('vce-counter').innerHTML = vceCount; });