viewer.camera.flyTo({ camera.flyTo({ destination: Cesium.Cartesian3.fromDegrees(-122.19, 46.25, 5000.0), duration: 1, orientation: { heading: Cesium.Math.toRadians(), pitch: Cesium.Math.toRadians(), roll: Cesium.Math.toRadians() }, }); });
flyTo方法可以产生相机视角飞行一段时间到达目的地的效果.
destination-相机目标位置.
duration-相机飞行的时间,秒为单位,值越小,速度越快.
orientation-相机镜头对准的方法.
heading-代表镜头左右方向,正值为右,负值为左,360度和0度是一样的
pitch-代表镜头上下方向,正值为上,负值为下.
roll-代表镜头左右倾斜.正值,向右倾斜,负值向左倾斜
camera.lookAt(target,offset):
这个方法使相机的镜头直接对准目标,target为焦点的位置,offset为偏移量(焦距).
target是世界坐标系下的位置,offset是在target为原点的基础上建立的x-y-z坐标(对应east-north-up)
比如:
var center = Cesium.Cartesian3.fromDegrees(-98.0, 40.0); viewer.camera.lookAt(center, new Cesium.Cartesian3(0.0, -4790000.0, 3930000.0));
发表评论
侧栏公告
寄语
譬如朝露博客是一个分享前端知识的网站,联系方式11523518。
热评文章
标签列表
热门文章
友情链接