bcgis-type
Version:
The SDK is based on Cesium for secondary development of 2, 3D all-in-one WebGis application framework, the framework optimizes the use of Cesium and add some additional features, designed for developers to quickly build WebGis applications.
44 lines (43 loc) • 655 B
TypeScript
declare enum State {
/**
* 初始化
*/
INITIALIZED = "initialized",
/**
* 已添加
*/
ADDED = "added",
/**
* 已移除
*/
REMOVED = "removed",
/**
* 已清除
*/
CLEARED = "cleared",
/**
* 已安装
*/
INSTALLED = "installed",
/**
* 可用
*/
ENABLED = "enabled",
/**
* 不可用
*/
DISABLED = "disabled",
/**
* 播放
*/
PLAY = "play",
/**
* 暂停
*/
PAUSE = "pause",
/**
* 停止
*/
RESTORE = "restore"
}
export default State;