@geogirafe/lib-geoportal
Version:
GeoGirafe is a flexible application to build online geoportals.
11 lines (10 loc) • 367 B
TypeScript
import ServerOgc from '../serverogc.js';
import LayerWms from './layerwms.js';
export default class LayerWmsExternal extends LayerWms {
private static nextAvailableLayerId;
private selected;
get isSelected(): boolean;
set isSelected(value: boolean);
constructor(title: string, name: string, ogcServer: ServerOgc);
clone(): LayerWmsExternal;
}