UNPKG

@geogirafe/lib-geoportal

Version:

GeoGirafe is a flexible application to build online geoportals.

12 lines (11 loc) 588 B
// SPDX-License-Identifier: Apache-2.0 import ServerOgcApi from './serverogcapi.js'; 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); } }