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.
35 lines (34 loc) • 768 B
TypeScript
/**
* @Author: Caven
* @Date: 2021-07-17 18:02:35
*/
import MeasureBase from "../MeasureBase";
declare class TriangleHeight extends MeasureBase {
_maxAnchorSize: number;
_helpLinePositions: any[];
_helpLine: Cesium.Entity;
_lengthLabel: Cesium.Entity;
_heightLabel: Cesium.Entity;
_distanceLabel: Cesium.Entity;
constructor();
/**
*
* @param delegate
* @private
*/
_onDrawStop(delegate: any): void;
/**
*
* @param positions
* @private
*/
_onCalc(positions: any): void;
/**
*
* @param measure
* @param options
* @returns {TriangleHeight}
*/
start(measure: any, options: any): this;
}
export default TriangleHeight;