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
43 lines (42 loc) • 1.64 kB
TypeScript
import { Basic } from './common/basic';
import CoordAideController from './tools/coordaide-controller';
import CoordinateController from './tools/coordinate-controller';
import MeasureController from './tools/measure-controller';
import PickerController from './tools/picker-controller';
import PickerPointController from './tools/pickerpoint-controller';
import PickerPolylineController from './tools/pickerpolyline-controller';
import MiniMapController from './tools/minimap-controller';
import ShapeController from './tools/shape-controller';
import CompassController from './tools/compass-controller';
import MoveLinearController from './tools/movelinear-controller';
import PickerMaterialController from './tools/pickermaterial-controller';
import ColorController from './tools/color-controller';
import ScreenController from './tools/screen-controller';
import ChinaMapController from './tools/chinamap-controller';
/**
* @public
* @class ToolsController
* @extends Basic
*/
declare class ToolsController extends Basic {
CoordAide: CoordAideController;
Coordinate: CoordinateController;
Measure: MeasureController;
Picker: PickerController;
PickerPoint: PickerPointController;
PickerPolyline: PickerPolylineController;
MiniMap: MiniMapController;
Shape: ShapeController;
Compass: CompassController;
MoveLinear: MoveLinearController;
PickerMaterial: PickerMaterialController;
Color: ColorController;
Screen: ScreenController;
ChinaMap: ChinaMapController;
/**
* @constructor
* @param {any} obj
*/
constructor(obj: any);
}
export default ToolsController;