You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
in Cesium 1.13 if you move the globe (any Cesium.Viewer instance) using a "flick" gesture, i.e. the mouse is still moving at the point the mouse button is released then viewer.camera.moveEnd is NOT triggered.
The moveEnd event appears to work correctly when moving the globe normally, e.g. a simple mouse down, move, mouse up.
Example
var viewer = new Cesium.Viewer('cesiumContainer');
viewer.camera.moveEnd.addEventListener(function () {
console.log("camera move");
}, this);
The text was updated successfully, but these errors were encountered:
I can't reproduce what you are seeing. It takes way too long, but the camera event always fires. Are you sure you simply aren't running into #2839? (We should fix this sooner rather than later either way).
in Cesium 1.13 if you move the globe (any Cesium.Viewer instance) using a "flick" gesture, i.e. the mouse is still moving at the point the mouse button is released then viewer.camera.moveEnd is NOT triggered.
The moveEnd event appears to work correctly when moving the globe normally, e.g. a simple mouse down, move, mouse up.
Example
The text was updated successfully, but these errors were encountered: