пятница, 7 апреля 2017 г., 8:55:48 UTC+3 пользователь
mehulpa...@gmail.com написал:
> how to mouse hover and change color in 3d model in cesium software please help thanks.
Hi!
Try add event listener on the document with type 'mouseover'
and then use Cartesian2 to calculate mouse position on the Cesium globe:
let mousePosition = new Cartesian2(e.clientX, e.clientY);
and then pick a ray,that find your object on the map:
let pickedPoint = this.viewer.scene.pick(mousePosition);