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.
39 lines (38 loc) • 780 B
TypeScript
/**
* @Author: Caven
* @Date: 2021-07-11 09:56:33
*/
import MeasureBase from "../MeasureBase";
declare class DistanceSurface extends MeasureBase {
_maxAnchorSize: number;
constructor();
/**
*
* @param start
* @param end
* @param num
* @returns {*[]}
* @private
*/
_lerp(start: any, end: any, num?: number): any[];
/**
*
* @param entity
* @private
*/
_onDrawStop(entity: any): void;
/**
*
* @param positions
* @private
*/
_onCalc(positions: any): void;
/**
*
* @param measure
* @param options
* @returns {DistanceSurface}
*/
start(measure: any, options: any): this;
}
export default DistanceSurface;