@igo2/geo 20.2.0 → 20.3.0
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 +635 -620
- package/fesm2022/igo2-geo.mjs.map +1 -1
- package/index.d.ts +4 -1
- package/package.json +5 -5
package/index.d.ts
CHANGED
|
@@ -10483,6 +10483,8 @@ declare class OptionsApiService extends OptionsService {
|
|
|
10483
10483
|
interface OptionsApiOptions {
|
|
10484
10484
|
url?: string;
|
|
10485
10485
|
provideContextUri?: boolean;
|
|
10486
|
+
/** Default to true */
|
|
10487
|
+
enabled?: boolean;
|
|
10486
10488
|
}
|
|
10487
10489
|
|
|
10488
10490
|
declare function optionsApiFactory(): OptionsApiService;
|
|
@@ -11070,6 +11072,7 @@ declare class ExportService {
|
|
|
11070
11072
|
private formatRecord;
|
|
11071
11073
|
private formatDataType;
|
|
11072
11074
|
private exportWithOgre;
|
|
11075
|
+
private getFileName;
|
|
11073
11076
|
private formatFilename;
|
|
11074
11077
|
private nothingToExport;
|
|
11075
11078
|
private getFeaturesFromMap;
|
|
@@ -11078,7 +11081,7 @@ declare class ExportService {
|
|
|
11078
11081
|
getWorkspaceByLayerId(id: LayerId, store: WorkspaceStore): Workspace;
|
|
11079
11082
|
getGeomTypes(features: OlFeature[], format?: AnyExportFormat): GeometryCollection[];
|
|
11080
11083
|
/**
|
|
11081
|
-
* Checks if the given payload exceeds the OGRE maximum allowed size (
|
|
11084
|
+
* Checks if the given payload exceeds the OGRE maximum allowed size (50MB).
|
|
11082
11085
|
* @param payload The GeoJSON payload as a string.
|
|
11083
11086
|
* @returns An Observable that throws an error if the payload is too large, or undefined if the size is acceptable.
|
|
11084
11087
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@igo2/geo",
|
|
3
|
-
"version": "20.
|
|
3
|
+
"version": "20.3.0",
|
|
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.3.0",
|
|
44
|
+
"@igo2/common": "^20.3.0",
|
|
45
|
+
"@igo2/core": "^20.3.0",
|
|
46
|
+
"@igo2/utils": "^20.3.0",
|
|
47
47
|
"@mat-datetimepicker/core": "^16.0.0",
|
|
48
48
|
"@turf/boolean-intersects": "^7.2.0",
|
|
49
49
|
"@turf/buffer": "^7.2.0",
|