@igo2/geo 20.1.1 → 20.2.1
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.
- package/fesm2022/igo2-geo.mjs +636 -617
- package/fesm2022/igo2-geo.mjs.map +1 -1
- package/index.d.ts +4 -1
- package/package.json +5 -5
package/index.d.ts
CHANGED
|
@@ -6706,6 +6706,7 @@ declare enum QueryFormat {
|
|
|
6706
6706
|
GML2 = "gml2",
|
|
6707
6707
|
GML3 = "gml3",
|
|
6708
6708
|
JSON = "json",
|
|
6709
|
+
GEO_PLUS_JSON = "geo+json",
|
|
6709
6710
|
GEOJSON = "geojson",
|
|
6710
6711
|
GEOJSON2 = "geojson2",
|
|
6711
6712
|
ESRIJSON = "esrijson",
|
|
@@ -6717,6 +6718,7 @@ declare enum QueryFormatMimeType {
|
|
|
6717
6718
|
GML2 = "application/vnd.ogc.gml",
|
|
6718
6719
|
GML3 = "application/vnd.ogc.gml/3.1.1",
|
|
6719
6720
|
JSON = "application/json",
|
|
6721
|
+
GEO_PLUS_JSON = "application/geo+json",
|
|
6720
6722
|
GEOJSON = "application/geojson",
|
|
6721
6723
|
GEOJSON2 = "geojson",
|
|
6722
6724
|
ESRIJSON = "application/json",
|
|
@@ -11068,6 +11070,7 @@ declare class ExportService {
|
|
|
11068
11070
|
private formatRecord;
|
|
11069
11071
|
private formatDataType;
|
|
11070
11072
|
private exportWithOgre;
|
|
11073
|
+
private getFileName;
|
|
11071
11074
|
private formatFilename;
|
|
11072
11075
|
private nothingToExport;
|
|
11073
11076
|
private getFeaturesFromMap;
|
|
@@ -11076,7 +11079,7 @@ declare class ExportService {
|
|
|
11076
11079
|
getWorkspaceByLayerId(id: LayerId, store: WorkspaceStore): Workspace;
|
|
11077
11080
|
getGeomTypes(features: OlFeature[], format?: AnyExportFormat): GeometryCollection[];
|
|
11078
11081
|
/**
|
|
11079
|
-
* Checks if the given payload exceeds the OGRE maximum allowed size (
|
|
11082
|
+
* Checks if the given payload exceeds the OGRE maximum allowed size (50MB).
|
|
11080
11083
|
* @param payload The GeoJSON payload as a string.
|
|
11081
11084
|
* @returns An Observable that throws an error if the payload is too large, or undefined if the size is acceptable.
|
|
11082
11085
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@igo2/geo",
|
|
3
|
-
"version": "20.
|
|
3
|
+
"version": "20.2.1",
|
|
4
4
|
"description": "IGO Library",
|
|
5
5
|
"author": "IGO Community",
|
|
6
6
|
"keywords": [
|
|
@@ -40,10 +40,10 @@
|
|
|
40
40
|
"@angular/material": "^20.0.0",
|
|
41
41
|
"@angular/material-moment-adapter": "^20.0.0",
|
|
42
42
|
"@angular/platform-browser": "^20.0.0",
|
|
43
|
-
"@igo2/auth": "^20.
|
|
44
|
-
"@igo2/common": "^20.
|
|
45
|
-
"@igo2/core": "^20.
|
|
46
|
-
"@igo2/utils": "^20.
|
|
43
|
+
"@igo2/auth": "^20.2.1",
|
|
44
|
+
"@igo2/common": "^20.2.1",
|
|
45
|
+
"@igo2/core": "^20.2.1",
|
|
46
|
+
"@igo2/utils": "^20.2.1",
|
|
47
47
|
"@mat-datetimepicker/core": "^16.0.0",
|
|
48
48
|
"@turf/boolean-intersects": "^7.2.0",
|
|
49
49
|
"@turf/buffer": "^7.2.0",
|