@zxh19890103/wik
Version:
The world-class JavaScript library for building large-scale digital warehouse both on 2D and 3D.
15 lines (14 loc) • 613 B
TypeScript
import { LayerWithID } from '../../interfaces';
import { LayerList } from './LayerList.class';
import { WikMap } from './Map.class';
import { PaneManager, WikPane, WikPaneType } from '../state/PaneManager.class';
export declare class VectorLayerList<M extends LayerWithID, E extends string = never> extends LayerList<M, E> {
readonly paneMgr: PaneManager;
readonly pane: string;
readonly rendererType: WikPaneType;
readonly paneObj: WikPane;
constructor(pane: string, rendererType: WikPaneType);
protected _add(item: M): void;
setZ(z: number): void;
mount(parent: WikMap): void;
}