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.

32 lines (31 loc) 636 B
/** * @Author: Caven * @Date: 2021-07-11 09:56:33 */ import MeasureBase from "../MeasureBase"; declare class Height extends MeasureBase { _maxAnchorSize: number; _helpLinePositions: any[]; _helpLine: Cesium.Entity; constructor(); /** * * @param entity * @private */ _onDrawStop(entity: any): void; /** * * @param positions * @private */ _onCalc(positions: any): void; /** * * @param measure * @param options * @returns {Height} */ start(measure: any, options: any): this; } export default Height;