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