UNPKG

@geogirafe/lib-geoportal

Version:

GeoGirafe is a flexible application to build online geoportals.

16 lines (15 loc) 764 B
import OgcApiFeaturesClient from './ogcapifeaturesclient'; import ServerOgc from '../../models/serverogc'; import { OapifCollection } from '../../models/serverogcapifeatures'; import { HttpMethod } from '../../models/serverogcapi'; export default class OgcApiFeaturesClientGeorama extends OgcApiFeaturesClient { constructor(serverConfig: ServerOgc); /** * POC overwrite: Upper/lowercase issues with collection property `storageCrs`: pygeoapi uses `storageCRS`. */ getCollection(collectionId: string): Promise<OapifCollection>; /** Overwrite base method fetch options because the Georama demo server currently only supports basic auth. */ protected getFetchOptions(method?: HttpMethod, crsIdentifier?: string): RequestInit; }