BoundedItemsQuery constructor

const BoundedItemsQuery({
  1. CoordRefSys? crs,
  2. CoordRefSys? bboxCrs,
  3. Box? bbox,
  4. Temporal? timeFrame,
  5. int? limit,
  6. Map<String, dynamic>? parameters,
})

A query with bounds for requesting items from a geospatial data source.

Implementation

const BoundedItemsQuery({
  super.crs,
  this.bboxCrs,
  this.bbox,
  this.timeFrame,
  super.limit,
  super.parameters,
});