UNPKG

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.

26 lines (25 loc) 640 B
/// <reference types="node" /> import Viewer from "../viewer/Viewer"; export default class FloodByEntity { _viewer: Viewer; extrudedHeight: number; entity: any; options: any; private _last_depthTestAgainstTerrain; timeIdx: NodeJS.Timer; constructor(); get height(): number; set height(val: number); get viewer(): Viewer; start(entity: any, options: any): void; stop(): void; clear(): void; destroy(): void; updateHeight(height: any): void; /** * * @param viewer */ install(viewer: Viewer): void; uninstall(viewer: any): void; }