UNPKG

geoportal-access-lib

Version:

French Geoportal resources access library

17 lines (15 loc) 749 B
/* eslint-disable no-unused-vars */ /** * * Object used to express a geographical (BBOX, scale) and temporal constraint. * * @property {String} crs - Coordinates System ID used to express coordinates contraints. * @property {Gp.BBox} bbox - Constraint Bounding Box. * @property {Number} minScaleDenominator - Minimum scale denominator where constraint applies. * @property {Number} maxScaleDenominator - Maximum scale denominator where constraint applies. * @property {Array.<String>} temporalExtent - Array expressing the time interval of the constraint [minT, maxT]. Dates are expressed in the [ISO-8601]{@link https://en.wikipedia.org/wiki/ISO_8601} way. * * @namespace * @alias Gp.Services.Config.Constraint */ var Constraint = {};