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.
22 lines (21 loc) • 513 B
TypeScript
import Layer from "../Layer";
/**
* 矢量图层,用于添加各类矢量数据(点、线、面等),将矢量数据按一定的逻辑分组,方便统一管理
* @noInheritDoc
*/
declare class VectorLayer extends Layer {
/**
* @param id 图层唯一标识
*/
constructor(id: string);
/**
* 类型
*/
get type(): string;
/**
* 清空图层
*/
clear(): VectorLayer;
setStyle(style: any): void;
}
export default VectorLayer;