@geogirafe/lib-geoportal
Version:
GeoGirafe is a flexible application to build online geoportals.
16 lines (15 loc) • 428 B
TypeScript
import { GMFServerOgc } from './gmf';
export default class ServerOgc {
name: string;
url: string;
wfsSupport: boolean;
urlWfs?: string;
type: string;
imageType: string;
aliases: Record<string, string>;
constructor(name: string, elem: GMFServerOgc);
private getAliasKey;
private initializeAliases;
getAlias(table: string, column: string): string;
get uniqueWmsQueryId(): string;
}