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.
22 lines (21 loc) • 399 B
TypeScript
/**
* @Author: Caven
* @Date: 2020-08-29 20:54:37
*/
import Draw from "./Draw";
declare class DrawPolyline extends Draw {
constructor(style: any);
/**
*
* @private
*/
_mountedHook(): void;
/**
*
* @param position
* @returns {boolean}
* @private
*/
_onDrawAnchor(position: any): void;
}
export default DrawPolyline;