SimulationController

new Cesium.SimulationController()

态势仿真控制器类

Methods

addControllerCallBackEvent(callback)

添加播放控制回调事件
Name Type Description
callback SimulationController~callBack 实体添加回调函数

addExecuteCallBackEvent(callback)

添加脚本执行回调
Name Type Description
callback SimulationController~executeCallBack 回调函数

continue()

继续

getIsReverse()boolean

获取是否反向
Returns:
是否反向

getSimulationSpeed()Number

获取仿真倍速
Returns:
仿真倍速

getSimulationTime()Number

获取仿真时间
Returns:
仿真时间

getUTCTime()Number

获取UTC时间
Returns:
UTC时间

isPlay()boolean

获取是否在执行仿真
Returns:
是否在执行仿真

pause()

暂停

removeControllerCallBackEvent(callback)

移除播放控制回调事件
Name Type Description
callback SimulationController~callBack 实体添加回调函数

removeExecuteCallBackEvent(callback)

移除脚本执行回调
Name Type Description
callback SimulationController~executeCallBack 回调函数

reset()

复位

setCameraFollowEarthRotation(isFollow)

设置开启或关闭相机跟随地球自转
Name Type Description
isFollow boolean 开启或关闭

setExecutePassTimeOffset(passTimeOffset)

设置仿真时间偏移量
Name Type Description
passTimeOffset Number 时间偏移量

setIsReverse(isReverse)

设置是否反向
Name Type Description
isReverse boolean 是否反向

setResetType(resetType)

设置脚本执行复位方式
Name Type Description
resetType DeductionScriptExecuteResetType 脚本复位方式

setSimulationSpeed(dSpeed)

设置仿真倍数
Name Type Description
dSpeed Number 仿真倍数

setSimulationTime(lTime)

设置仿真时间
Name Type Description
lTime Number 仿真时间

start()Number

播放
Returns:
脚本执行总时长(单位毫秒)

stop()

停止

updataAllOrbitPosition()

更新轨道位置

Type Definitions

callBack(params)

播放状态控制回调事件()
Name Type Description
params Object 参数
Name Type Description
status String 当前的播放状态,返回字符串:start、stop、reset三种

executeCallBack(params)

脚本执行回调函数
Name Type Description
params Object 回调函数参数
Name Type Description
allPassTime Number 总执行时长(单位毫秒)
groupIndex Number 当前执行组
groupPassTime Number 当前执行组已执行时长(单位毫秒)