Cylinder Entity not updating on mousemove

1. A concise explanation of the problem you’re experiencing.

I’m trying to update the position of a cylinder as the mouse moves but the cylinder flickers while moving slow or doesn’t move until you stop moving.

2. A minimal code example. If you’ve found a bug, this helps us reproduce and repair it.

3. Context. Why do you need to do this? We might know a better way to accomplish your goal.

I want the user to be able to define the location of a cylinder on the map. It would be useful to have instantaneous feedback where the cylinder will be placed as the user moves the mouse.

4. The Cesium version you’re using, your operating system and browser.

1.41

You need to define a CallbackProperty on the entity position.

Working Example:

Thanks for the update Kevin!