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) 533 B
import Overlay from "../Overlay"; import { T_Position } from "../../common/type"; /** * 云图元 * @noInheritDoc */ declare class CloudPrimitive extends Overlay { private _position; /** * * @param position 坐标 */ constructor(position: T_Position); get type(): any; set position(position: T_Position); get position(): T_Position; _mountedHook(): void; /** * * @param style */ setStyle(style: any): this; } export default CloudPrimitive;