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.
27 lines (26 loc) • 503 B
TypeScript
import Edit from "./Edit";
declare class EditPoint extends Edit {
_position: any;
constructor(overlay: any);
/**
*
* @private
*/
_mountedHook(): void;
/**
*
* @private
*/
_stopedHook(): void;
/**
*
* @param pickedAnchor
* @param position
* @private
*/
_onAnchorMoving({ pickedAnchor, position }: {
pickedAnchor: any;
position: any;
}): void;
}
export default EditPoint;