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.

25 lines (24 loc) 520 B
import Draw from "./Draw"; import DoubleArrowGraphics from "../graphics/DoubleArrowGraphics"; declare class DrawDoubleArrow extends Draw { _maxAnchorSize: number; _graphics: DoubleArrowGraphics; constructor(style: any); /** * * @private */ _mountedHook(): void; /** * * @private */ _stopdHook(): void; /** * * @param position * @private */ _onDrawAnchor(position: any): void; } export default DrawDoubleArrow;