@igo2/geo 21.0.0-next.7 → 21.0.0-next.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1664,6 +1664,7 @@ var QueryFormat;
1664
1664
  QueryFormat["GML2"] = "gml2";
1665
1665
  QueryFormat["GML3"] = "gml3";
1666
1666
  QueryFormat["JSON"] = "json";
1667
+ QueryFormat["GEO_PLUS_JSON"] = "geo+json";
1667
1668
  QueryFormat["GEOJSON"] = "geojson";
1668
1669
  QueryFormat["GEOJSON2"] = "geojson2";
1669
1670
  QueryFormat["ESRIJSON"] = "esrijson";
@@ -1676,6 +1677,7 @@ var QueryFormatMimeType;
1676
1677
  QueryFormatMimeType["GML2"] = "application/vnd.ogc.gml";
1677
1678
  QueryFormatMimeType["GML3"] = "application/vnd.ogc.gml/3.1.1";
1678
1679
  QueryFormatMimeType["JSON"] = "application/json";
1680
+ QueryFormatMimeType["GEO_PLUS_JSON"] = "application/geo+json";
1679
1681
  QueryFormatMimeType["GEOJSON"] = "application/geojson";
1680
1682
  QueryFormatMimeType["GEOJSON2"] = "geojson";
1681
1683
  // eslint-disable-next-line @typescript-eslint/no-duplicate-enum-values
@@ -16343,6 +16345,7 @@ class QueryService {
16343
16345
  case QueryFormat.JSON:
16344
16346
  case QueryFormat.GEOJSON:
16345
16347
  case QueryFormat.GEOJSON2:
16348
+ case QueryFormat.GEO_PLUS_JSON:
16346
16349
  features = this.extractGeoJSONData(res, layer.zIndex, allowedFieldsAndAlias);
16347
16350
  break;
16348
16351
  case QueryFormat.ESRIJSON: