@geogirafe/lib-geoportal
Version:
GeoGirafe is a flexible application to build online geoportals.
19 lines (18 loc) • 536 B
TypeScript
import Layer from './layer.js';
type LayerVectorTilesOptions = {
projection?: string;
layerName?: string;
isDefaultChecked?: boolean;
disclaimer?: string;
metadataUrl?: string;
opacity?: number;
protected?: boolean;
};
declare class LayerVectorTiles extends Layer {
style: string;
layerName?: string;
projection?: string;
constructor(id: number, name: string, order: number, style: string, options?: LayerVectorTilesOptions);
clone(): LayerVectorTiles;
}
export default LayerVectorTiles;