@inovitas/infra3dapi 1.1.1 → 1.1.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.
Files changed (3) hide show
  1. package/README.md +121 -107
  2. package/infra3dapi.js +1 -1
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -37,111 +37,125 @@ 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.1.0 - 09.10.2024
40
+ ## 1.1.2 - 21.10.2024
41
+
42
+ ### Bugfixes
43
+
44
+ - viewer.getRoutes() resulted in an error
45
+
46
+ ## 1.1.1 - 14.10.2024
47
+
48
+ ### Bugfixes
49
+
50
+ - Layer export not working for non-memory layers
51
+ - Duplicate layers when exporting directly after importing layers (without reloading)
52
+
53
+ ## 1.1.0 - 09.10.2024
54
+
55
+ ### Bugfixes
56
+
57
+ - Bug in viewer.getRoutesOutline() when using as migrated user.
58
+ - Same default EPSG-Code (4326) when using start-position for (un)-migrated users.
59
+
60
+ ### Added
61
+
62
+ - ProjectScope is available to restrict the access inside a project accordingly.
63
+ - New concept for routes abstraction in the map, using hexagons
64
+ - viewer.getRouteLines() and viewer.getRouteHexes()
65
+ - PointCloudExport
66
+ - Support of EPSG-Code in start-position
67
+
68
+ ## 1.0.3 - 17.09.2024
69
+
70
+ ### Bugfixes
71
+
72
+ - Fixed pilegate URL for migrated users.
73
+ - Using the profiletool, added an information and reset the tool when changing the image while performing a measurement.
74
+ - Fix the bug when using jest for testing.
75
+ - Added missing bounding box parameter to viewer.getRoutes().
76
+
77
+ ## 1.0.2 - 06.08.2024
78
+
79
+ ### Bugfixes
80
+
81
+ - Fixed bug in the layer tree view. The layer tree is visible again.
82
+
83
+ ## 1.0.1 - 23.07.2024
84
+
85
+ ### Bugfixes
86
+
87
+ - Fixed a bug in the campaign change event in the viewer.
88
+
89
+ ## 1.0.0 - 17.05.2024
90
+
91
+ ### Bugfixes
92
+
93
+ - Restoration of toolbar and top bar functionality: They can now be shown and hidden smoothly.
94
+
95
+ ### Added
96
+
97
+ - Introduction of machine authentication and a new corresponding example.
98
+ - Added: Option for access token in the init function.
99
+ - Added: Refresh token for the init function.
100
+ - Typings
101
+
102
+ ### Changed
103
+
104
+ - Examples have been updated to accommodate the new authentication process.
105
+
106
+ ### Deleted
107
+
108
+ - Interactive login functions.
109
+ - Removed: Two options from the init function:
110
+ - demoAccess
111
+ - redirectPath
112
+
113
+ ## 0.2.8 - 08.04.2024
114
+
115
+ ### Added
116
+
117
+ - Integrated and documented functions
118
+ - moveToPosition
119
+ - moveToCampaign
120
+ - lookAtPosition
121
+ - getRoutes
122
+
123
+ ## 0.2.7 - 04.04.2024
124
+
125
+ ### Added
126
+
127
+ - Improved documentation
128
+ - Description of the event types
129
+ - Description of further settings
130
+
131
+ ### Changed
132
+
133
+ - Adaptation to the existing examples
134
+
135
+ ## 0.2.4 - 14.03.2024
136
+
137
+ ### Bugfixes
138
+
139
+ - Troubleshooting with internal module
140
+
141
+ ## 0.2.3 - 09.02.2024
142
+
143
+ ### Added
144
+
145
+ - Demo Access Login
146
+ - Documenation
147
+
148
+ ### Changed
149
+
150
+ - Adoption of adjustments to the UI base of infra3D Edit
151
+
152
+ ### Bugfixes
153
+
154
+ - Various minor adjustments
155
+
156
+ ## 0.2.0 - 30.01.2024
157
+
158
+ ### Added
159
+
160
+ - Edit functionality
41
161
 
42
- ### Bugfixes
43
-
44
- - Bug in viewer.getRoutesOutline() when using as migrated user.
45
- - Same default EPSG-Code (4326) when using start-position for (un)-migrated users.
46
-
47
- ### Added
48
-
49
- - ProjectScope is available to restrict the access inside a project accordingly.
50
- - New concept for routes abstraction in the map, using hexagons
51
- - viewer.getRouteLines() and viewer.getRouteHexes()
52
- - PointCloudExport
53
- - Support of EPSG-Code in start-position
54
-
55
- ## 1.0.3 - 17.09.2024
56
-
57
- ### Bugfixes
58
-
59
- - Fixed pilegate URL for migrated users.
60
- - Using the profiletool, added an information and reset the tool when changing the image while performing a measurement.
61
- - Fix the bug when using jest for testing.
62
- - Added missing bounding box parameter to viewer.getRoutes().
63
-
64
- ## 1.0.2 - 06.08.2024
65
-
66
- ### Bugfixes
67
-
68
- - Fixed bug in the layer tree view. The layer tree is visible again.
69
-
70
- ## 1.0.1 - 23.07.2024
71
-
72
- ### Bugfixes
73
-
74
- - Fixed a bug in the campaign change event in the viewer.
75
-
76
- ## 1.0.0 - 17.05.2024
77
-
78
- ### Bugfixes
79
-
80
- - Restoration of toolbar and top bar functionality: They can now be shown and hidden smoothly.
81
-
82
- ### Added
83
-
84
- - Introduction of machine authentication and a new corresponding example.
85
- - Added: Option for access token in the init function.
86
- - Added: Refresh token for the init function.
87
- - Typings
88
-
89
- ### Changed
90
-
91
- - Examples have been updated to accommodate the new authentication process.
92
-
93
- ### Deleted
94
-
95
- - Interactive login functions.
96
- - Removed: Two options from the init function:
97
- - demoAccess
98
- - redirectPath
99
-
100
- ## 0.2.8 - 08.04.2024
101
-
102
- ### Added
103
-
104
- - Integrated and documented functions
105
- - moveToPosition
106
- - moveToCampaign
107
- - lookAtPosition
108
- - getRoutes
109
-
110
- ## 0.2.7 - 04.04.2024
111
-
112
- ### Added
113
-
114
- - Improved documentation
115
- - Description of the event types
116
- - Description of further settings
117
-
118
- ### Changed
119
-
120
- - Adaptation to the existing examples
121
-
122
- ## 0.2.4 - 14.03.2024
123
-
124
- ### Bugfixes
125
-
126
- - Troubleshooting with internal module
127
-
128
- ## 0.2.3 - 09.02.2024
129
-
130
- ### Added
131
-
132
- - Demo Access Login
133
- - Documenation
134
-
135
- ### Changed
136
-
137
- - Adoption of adjustments to the UI base of infra3D Edit
138
-
139
- ### Bugfixes
140
-
141
- - Various minor adjustments
142
-
143
- ## 0.2.0 - 30.01.2024
144
-
145
- ### Added
146
-
147
- - Edit functionality