@geogirafe/lib-geoportal
Version:
GeoGirafe is a flexible application to build online geoportals.
11 lines (10 loc) • 546 B
JavaScript
import ServerOgcApi from './serverogcapi';
export const oapifNumericTypes = ['integer', 'number', 'double', 'float', 'decimal', 'int', 'int32', 'int64'];
export const oapifTextTypes = ['string', 'date', 'time', 'datetime', 'date-time', 'duration'];
export const oapifTemporalTypes = ['date', 'time', 'date-time', 'datetime'];
export const oapifPropertyTypesList = [...oapifNumericTypes, ...oapifTextTypes, ...oapifTemporalTypes];
export default class ServerOgcApiFeatures extends ServerOgcApi {
constructor(url) {
super(url);
}
}