GeoCloudPrimitive

new Cesium.GeoCloudPrimitive(options)

云对象
Name Type Description
options Object optional 参数选项:
Name Type Default Description
height Number 9000 optional 云高度
url String 云纹理地址
speedScale Number 1.0 optional 旋转速度比
gamma Cartesian4 new Cesium.Cartesian4(0.83, 1.03, 1.4, 0.25) optional 颜色伽马值
isInverse Boolean false optional 是否反向
Example:
var options = {
  height: 8000,
  url: '../../resource/images/cloud.jpg',
  speedScale: 2.0,
  gamma: new Cesium.Cartesian4(0.83, 1.03, 1.4, 0.3),
  isInverse: false
};

var cloud = new Cesium.GeoCloudPrimitive(options);
viewer.scene.primitives.add(cloud);
Demo:

Members

actived : Boolean

是否激活

alphaGamma : Number

透明伽马值

blueGamma : Number

蓝色伽马值

greenGamma : Number

绿色伽马值

isInverse : Boolean

是否反向

redGamma : Number

红色伽马值

speedScale : Number

速度比

url : String

纹理地址

Methods

update(frameState)

更新
Name Type Description
frameState Object 渲染状态