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.

27 lines (26 loc) 534 B
import Layer from "../Layer"; /** * 3dTiles 图层,用于添加 3dTiles 模型数据 * @noInheritDoc * @example * ```ts * let layer = new BC.TilesetLayer('id') * viewer.addLayer(layer) * ``` */ declare class TilesetLayer extends Layer { /** * @param id 图层唯一标识 */ constructor(id: string); /** * 类型 */ get type(): string; /** * 清空图层 */ clear(): TilesetLayer; setStyle(style: any): void; } export default TilesetLayer;