@inovitas/infra3dapi 1.2.1 → 1.3.0-rc
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 +31 -1
- package/infra3dapi.d.ts +4 -4
- package/infra3dapi.js +1 -1
- package/licenses.txt +11 -273
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -37,6 +37,37 @@ 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.3.0-rc - 09.05.2025
|
|
41
|
+
|
|
42
|
+
### Added
|
|
43
|
+
|
|
44
|
+
- viewer.getCameraView() and viewer.setCameraView(...)
|
|
45
|
+
- viewer.setUserInteraction(true, false) to enable or disable paning and/or zooming in the image
|
|
46
|
+
- viewer.on("panzoomchanged", ...) to get notified when a user is interacting whithin a stereo image
|
|
47
|
+
- viewer.getCurrentNode() to retrieve some information like coordinates of the current position
|
|
48
|
+
- extended the viewer.on("nodechanged", ...) with some further properties
|
|
49
|
+
|
|
50
|
+
## 1.2.2 - 17.04.2025
|
|
51
|
+
|
|
52
|
+
### Bugfixes
|
|
53
|
+
|
|
54
|
+
- Keydown/-up Eventlisteners ignored if evt.target is an HTMLInputElement, HTMLTextAreaElement or HTMLSelectElement.
|
|
55
|
+
- Requests in routesprovider have a lower limit to not reach the backend limit of 6 MB.
|
|
56
|
+
- Viewer is destroyed completly, with unlistening to events.
|
|
57
|
+
- Layer-configs: Wrong handling with source_options fixed
|
|
58
|
+
- When adding a new feature, it could be saved only after two inserts. This is now fixed.
|
|
59
|
+
- Fix shortened arcgis URL in Layer options
|
|
60
|
+
- Fix jump to multipolygon feature in Feature table
|
|
61
|
+
- Fix bug when Frame 0 is not inside projectscope
|
|
62
|
+
- Fix zick-zack bug in map when having lra-projects
|
|
63
|
+
|
|
64
|
+
## 1.2.1 - 24.02.2025
|
|
65
|
+
|
|
66
|
+
### Bugfixes
|
|
67
|
+
|
|
68
|
+
- React Reference Error when activating survey wheel measurement
|
|
69
|
+
- Not loading depthmaps anymore if loading view
|
|
70
|
+
|
|
40
71
|
## 1.2.0 - 16.12.2024
|
|
41
72
|
|
|
42
73
|
### Bugfixes
|
|
@@ -45,7 +76,6 @@ To use the API, you can call the init functions in infra3dapi. After loggin in a
|
|
|
45
76
|
- Style of the scrollbar is no more globally overwritten by the API
|
|
46
77
|
- Resize event listens now on the div and not the whole window
|
|
47
78
|
|
|
48
|
-
|
|
49
79
|
### Added
|
|
50
80
|
|
|
51
81
|
- Added functions on viewer to draw and pick a geometry
|
package/infra3dapi.d.ts
CHANGED
|
@@ -64,9 +64,9 @@ interface LookazimuthchangedEvent extends ViewerEvent {
|
|
|
64
64
|
type: "lookazimuthchanged";
|
|
65
65
|
}
|
|
66
66
|
|
|
67
|
-
declare class InternalViewer {}
|
|
68
|
-
declare class GeoJSON {}
|
|
69
|
-
declare class ApmBase {}
|
|
67
|
+
declare class InternalViewer { }
|
|
68
|
+
declare class GeoJSON { }
|
|
69
|
+
declare class ApmBase { }
|
|
70
70
|
|
|
71
71
|
declare class Viewer extends EventEmitter implements IViewer {
|
|
72
72
|
private _sdk_viewer;
|
|
@@ -163,8 +163,8 @@ declare class Manager extends EventEmitter {
|
|
|
163
163
|
show_cockpit?: boolean;
|
|
164
164
|
show_mapWindow?: boolean;
|
|
165
165
|
show_toolbar?: boolean;
|
|
166
|
-
toolbar?: string;
|
|
167
166
|
show_topbar?: boolean;
|
|
167
|
+
toolbar?: string;
|
|
168
168
|
}): Promise<Viewer>;
|
|
169
169
|
getProjects(): Promise<cardProps[]>;
|
|
170
170
|
setViewer(viewer: InternalViewer): void;
|