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) • 623 B
TypeScript
import Layer from "../Layer";
/**
* 贴地图元图层,用于添加各类贴地图元数据,将贴地图元数据按一定的逻辑分组,方便统一管理
* @noInheritDoc
* @example
* ```ts
* let layer = new BC.GroundPrimitiveLayer('id')
* viewer.addLayer(layer)
* ```
*/
declare class GroundPrimitiveLayer extends Layer {
/**
* @param id 图层唯一标识
*/
constructor(id: any);
/**
* 类型
*/
get type(): string;
/**
* 清除图层
*/
clear(): this;
setStyle(style: any): void;
}
export default GroundPrimitiveLayer;