@inovitas/infra3dapi 1.2.1 → 1.2.2

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 CHANGED
@@ -37,6 +37,27 @@ 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.2.2 - 17.04.2025
41
+
42
+ ### Bugfixes
43
+
44
+ - Keydown/-up Eventlisteners ignored if evt.target is an HTMLInputElement, HTMLTextAreaElement or HTMLSelectElement.
45
+ - Requests in routesprovider have a lower limit to not reach the backend limit of 6 MB.
46
+ - Viewer is destroyed completly, with unlistening to events.
47
+ - Layer-configs: Wrong handling with source_options fixed
48
+ - When adding a new feature, it could be saved only after two inserts. This is now fixed.
49
+ - Fix shortened arcgis URL in Layer options
50
+ - Fix jump to multipolygon feature in Feature table
51
+ - Fix bug when Frame 0 is not inside projectscope
52
+ - Fix zick-zack bug in map when having lra-projects
53
+
54
+ ## 1.2.1 - 24.02.2025
55
+
56
+ ### Bugfixes
57
+
58
+ - React Reference Error when activating survey wheel measurement
59
+ - Not loading depthmaps anymore if loading view
60
+
40
61
  ## 1.2.0 - 16.12.2024
41
62
 
42
63
  ### Bugfixes
@@ -45,7 +66,6 @@ To use the API, you can call the init functions in infra3dapi. After loggin in a
45
66
  - Style of the scrollbar is no more globally overwritten by the API
46
67
  - Resize event listens now on the div and not the whole window
47
68
 
48
-
49
69
  ### Added
50
70
 
51
71
  - 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;