How to put the handler at the end of camera movement (end of slip) during mouse navigation

I want execute my own logic when camera movement (slip) will be stops after mouse iteration with map. Same for zoom in/out. Does exist any event?

Cesium.Camera has moveStart and moveEnd events that may help you:

viewer.camera.moveEnd.addEventListener(function() {

// do stuff

});

Is that what you need?

Jacob

Exactly, many thanks.