@inovitas/infra3dapi 1.6.0 → 1.7.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/README.md +25 -0
- package/infra3dapi.d.ts +9 -9
- package/infra3dapi.js +1 -1
- package/licenses.txt +398 -20
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -37,6 +37,31 @@ To use the API, you can call the init functions in infra3dapi. After loggin in a
|
|
|
37
37
|
|
|
38
38
|
# Changelog
|
|
39
39
|
|
|
40
|
+
## 1.7.0 - 2025-12-16
|
|
41
|
+
|
|
42
|
+
### Added
|
|
43
|
+
|
|
44
|
+
- Enable linref for cantons (IN-3084)
|
|
45
|
+
- Fully support domains in ArcGIS Layers
|
|
46
|
+
- add link to infra3D Academy
|
|
47
|
+
- enabled link to profile on platform (IN-1993)
|
|
48
|
+
|
|
49
|
+
## 1.6.1 - 2025-11-20
|
|
50
|
+
|
|
51
|
+
### Bugfixes
|
|
52
|
+
|
|
53
|
+
- Performance when calling movePosition on the viewer is improved (NVTS-1060, NVTS-1062)
|
|
54
|
+
- When clicking twice on a feature with the info-tool, the feature info disappears (NVTS-1029, NVTS-1125)
|
|
55
|
+
- When exceeding the limit of the localstorage when importing layers, a message is displayed (NVTS-995)
|
|
56
|
+
- Fixed errors when importing geodataconfigurations from infra3D Classic (NVTS-1069)
|
|
57
|
+
- The Share-Link is updated even if the tool is open and the viewer is moved (NVTS-1078)
|
|
58
|
+
- While the layertree is open and focussed, the play with space works again (NVTS-1066)
|
|
59
|
+
- Overlap of layertree visibility-symbol with scrollbar in Firefox is fixed (NVTS-1067)
|
|
60
|
+
|
|
61
|
+
### Added
|
|
62
|
+
|
|
63
|
+
- PDF-Export is now also in the API available (NVTS-1057)
|
|
64
|
+
|
|
40
65
|
## 1.6.0 - 2025-10-29
|
|
41
66
|
|
|
42
67
|
### Bugfixes
|
package/infra3dapi.d.ts
CHANGED
|
@@ -361,15 +361,15 @@ declare class Viewer extends EventEmitter implements IViewer {
|
|
|
361
361
|
}
|
|
362
362
|
): Promise<GeoJSON>;
|
|
363
363
|
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
364
|
+
getAllCampaigns(bbox?: {
|
|
365
|
+
minEasting: number;
|
|
366
|
+
maxEasting: number;
|
|
367
|
+
minNorthing: number;
|
|
368
|
+
maxNorthing: number;
|
|
369
|
+
epsg: number;
|
|
370
|
+
}): Promise<ICampaign[]>;
|
|
371
|
+
|
|
372
|
+
getCampaign(campagin_uid: string): Promise<ICampaign>;
|
|
373
373
|
|
|
374
374
|
attachToMeasurementTool(
|
|
375
375
|
toolname: "lengthMeasure" | "areaMeasure",
|