wdpapi
Version:
51WORLD WdpApi is a set of programming interfaces developed by JavaScript that is responsible for negotiating between web pages and cloud rendering platforms. Supported by 51Cloud rendering platform, it enables the users to create any HTML5 UI element on
40 lines (39 loc) • 972 B
TypeScript
import { Basic } from '../common/basic';
import { ResultType } from '../common/data-type';
/**
* @public
* @class PickerPolylineController
* @extends Basic
*/
declare class PickerPolylineController extends Basic {
private apiClassName;
private PickerpolylineValidate;
/**
* @constructor
* @param {any} obj
*/
constructor(obj: any);
/**
* @public
* @async
* @function StartPickPolyline
* @returns {Promise<ResultType>}
*/
StartPickPolyline(): Promise<ResultType>;
/**
* @public
* @async
* @function EndPickPolyline
* @returns {Promise<ResultType>}
*/
EndPickPolyline(): Promise<ResultType>;
/**
* @public
* @async
* @function GetPickedPolylines
* @param {number} coordZRef (default value is 0)
* @returns {Promise<ResultType>}
*/
GetPickedPolylines(coordZRef?: number): Promise<ResultType>;
}
export default PickerPolylineController;