@geogirafe/lib-geoportal
Version:
GeoGirafe is a flexible application to build online geoportals.
14 lines (13 loc) • 691 B
TypeScript
import OgcApiFeaturesClient from './ogcapifeaturesclient';
import ServerOgc from '../../models/serverogc';
import { OapifSchemaResponse } from '../../models/serverogcapifeatures';
import { HttpMethod } from '../../models/serverogcapi';
export default class OgcApiFeaturesClientGmf extends OgcApiFeaturesClient {
constructor(serverConfig: ServerOgc);
/**
* POC overwrite: The demo server does not support schema requests. We therefore create a very simple schema based on
* the first item of the collection.
*/
getSchema(collectionId: string): Promise<OapifSchemaResponse>;
protected getFetchOptions(method?: HttpMethod, crsIdentifier?: string): RequestInit;
}