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.

16 lines (15 loc) 407 B
import { Label } from "../../overlay"; import Layer from "../Layer"; /** * 标签图层 */ declare class LabelLayer extends Layer { _dataSource: Promise<Cesium.GeoJsonDataSource>; constructor(id: any, url?: string); get type(): string; _createLabel(entity: any): Label; _initLabel(): void; clear(): void; setStyle(style: any): void; } export default LabelLayer;