@inovitas/infra3dapi 1.7.0 → 1.7.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/235.infra3dapi.js +2 -0
- package/235.infra3dapi.js.map +1 -0
- package/287.infra3dapi.js +2 -0
- package/287.infra3dapi.js.map +1 -0
- package/732.infra3dapi.js +2 -0
- package/732.infra3dapi.js.map +1 -0
- package/{12.infra3dapi.js → 757.infra3dapi.js} +2 -1
- package/757.infra3dapi.js.map +1 -0
- package/README.md +357 -330
- package/infra3dapi.d.ts +7 -4
- package/infra3dapi.js +2 -2
- package/{2bc1d70c511b58108958.gif → infra3dapi.js.map} +0 -0
- package/licenses.txt +23 -353
- package/package.json +6 -2
- package/005403bc8e5f26788284.jpg +0 -0
- package/1f77029fdd773d10ddab.gif +0 -0
- package/274.infra3dapi.js +0 -1
- package/505.infra3dapi.js +0 -1
- package/6a3d99a3d2dc80491364.jpg +0 -0
- package/80.infra3dapi.js +0 -1
- package/81e9296c232fd0e0c86e.jpg +0 -0
- package/c8593183238821a27cbc.gif +0 -0
- package/e970b398393900ae343f.gif +0 -0
- package/ecc862ea04d3c481e631.gif +0 -0
package/README.md
CHANGED
|
@@ -1,333 +1,360 @@
|
|
|
1
|
-
# Installation
|
|
2
|
-
|
|
3
|
-
### NPM Package
|
|
4
|
-
|
|
5
|
-
The API can be installed as a package using npm. To install it from the npm package repository, simply type:
|
|
6
|
-
|
|
7
|
-
```bash
|
|
8
|
-
npm install @inovitas/infra3dapi
|
|
9
|
-
```
|
|
10
|
-
|
|
11
|
-
### CDN Download
|
|
12
|
-
|
|
13
|
-
Alternatively, you can obtain the API from a CDN. To get the latest version, add the following script to your HTML file:
|
|
14
|
-
|
|
15
|
-
```html
|
|
16
|
-
<script src="https://cdn.jsdelivr.net/npm/@inovitas/infra3dapi@latest/infra3dapi.js"></script>
|
|
17
|
-
```
|
|
18
|
-
|
|
19
|
-
We recommend using a specific version in your project. To get a specific version, use the following script and adjust the version accordingly:
|
|
20
|
-
|
|
21
|
-
```html
|
|
22
|
-
<script src="https://cdn.jsdelivr.net/npm/@inovitas/infra3dapi@1.0.1/infra3dapi.js"></script>
|
|
23
|
-
```
|
|
24
|
-
|
|
25
|
-
**Note**: Please do not name the `<div>` in which the viewer is initialized as "infra3d" as this may cause internal conflicts.
|
|
26
|
-
|
|
27
|
-
# Core Concept
|
|
28
|
-
|
|
29
|
-
To use the API, you can call the init functions in infra3dapi. After loggin in and initializing the view (with [`manager.initView()`](classes/_inovitas_infra3dapi.manager.Manager.html#initView)), you will get a viewer object. This viewer object can then be used to add event-listeners to different events emitted by the viewer (like [`viewer.geoframechanged`](classes/_inovitas_infra3dsdk.Viewer.html#geoframechanged)) or to call some functions (like [`viewer.getRoutes()`](classes/_inovitas_infra3dsdk.Viewer.html#getRoutes) or [`viewer.movePosition()`](classes/_inovitas_infra3dsdk.Viewer.html#movePosition)).
|
|
30
|
-
|
|
31
|
-
# Authentication
|
|
32
|
-
|
|
33
|
-
1. Register your OAuth 2.0 application with our sales team to obtain credentials (client_id and client_secret).
|
|
34
|
-
2. Develop a server-side component to securely use these credentials, obtaining an access token from infra3D.
|
|
35
|
-
3. Your server-side component fetches the access token using client credentials, which can then be shared with your client app.
|
|
36
|
-
4. Your client app uses this token to authenticate with infra3D for requested services, refreshing it via the server component when expired. Remember to treat the client_secret like a password, avoiding exposure in client-side environments for enhanced security.
|
|
37
|
-
|
|
1
|
+
# Installation
|
|
2
|
+
|
|
3
|
+
### NPM Package
|
|
4
|
+
|
|
5
|
+
The API can be installed as a package using npm. To install it from the npm package repository, simply type:
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install @inovitas/infra3dapi
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
### CDN Download
|
|
12
|
+
|
|
13
|
+
Alternatively, you can obtain the API from a CDN. To get the latest version, add the following script to your HTML file:
|
|
14
|
+
|
|
15
|
+
```html
|
|
16
|
+
<script src="https://cdn.jsdelivr.net/npm/@inovitas/infra3dapi@latest/infra3dapi.js"></script>
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
We recommend using a specific version in your project. To get a specific version, use the following script and adjust the version accordingly:
|
|
20
|
+
|
|
21
|
+
```html
|
|
22
|
+
<script src="https://cdn.jsdelivr.net/npm/@inovitas/infra3dapi@1.0.1/infra3dapi.js"></script>
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
**Note**: Please do not name the `<div>` in which the viewer is initialized as "infra3d" as this may cause internal conflicts.
|
|
26
|
+
|
|
27
|
+
# Core Concept
|
|
28
|
+
|
|
29
|
+
To use the API, you can call the init functions in infra3dapi. After loggin in and initializing the view (with [`manager.initView()`](classes/_inovitas_infra3dapi.manager.Manager.html#initView)), you will get a viewer object. This viewer object can then be used to add event-listeners to different events emitted by the viewer (like [`viewer.geoframechanged`](classes/_inovitas_infra3dsdk.Viewer.html#geoframechanged)) or to call some functions (like [`viewer.getRoutes()`](classes/_inovitas_infra3dsdk.Viewer.html#getRoutes) or [`viewer.movePosition()`](classes/_inovitas_infra3dsdk.Viewer.html#movePosition)).
|
|
30
|
+
|
|
31
|
+
# Authentication
|
|
32
|
+
|
|
33
|
+
1. Register your OAuth 2.0 application with our sales team to obtain credentials (client_id and client_secret).
|
|
34
|
+
2. Develop a server-side component to securely use these credentials, obtaining an access token from infra3D.
|
|
35
|
+
3. Your server-side component fetches the access token using client credentials, which can then be shared with your client app.
|
|
36
|
+
4. Your client app uses this token to authenticate with infra3D for requested services, refreshing it via the server component when expired. Remember to treat the client_secret like a password, avoiding exposure in client-side environments for enhanced security.
|
|
37
|
+
|
|
38
38
|
# Changelog
|
|
39
39
|
|
|
40
|
-
## 1.7.
|
|
41
|
-
|
|
42
|
-
### Added
|
|
43
|
-
|
|
44
|
-
-
|
|
45
|
-
-
|
|
46
|
-
- add
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
-
|
|
54
|
-
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
-
|
|
59
|
-
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
-
|
|
75
|
-
|
|
76
|
-
## 1.
|
|
77
|
-
|
|
78
|
-
### Bugfixes
|
|
79
|
-
|
|
80
|
-
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
-
|
|
175
|
-
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
-
|
|
184
|
-
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
###
|
|
207
|
-
|
|
208
|
-
-
|
|
209
|
-
-
|
|
210
|
-
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
-
|
|
217
|
-
|
|
218
|
-
## 1.
|
|
219
|
-
|
|
220
|
-
### Bugfixes
|
|
221
|
-
|
|
222
|
-
-
|
|
223
|
-
-
|
|
224
|
-
|
|
225
|
-
## 1.
|
|
226
|
-
|
|
227
|
-
### Bugfixes
|
|
228
|
-
|
|
229
|
-
-
|
|
230
|
-
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
-
|
|
236
|
-
-
|
|
237
|
-
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
###
|
|
279
|
-
|
|
280
|
-
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
-
|
|
318
|
-
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
###
|
|
325
|
-
|
|
326
|
-
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
###
|
|
331
|
-
|
|
332
|
-
-
|
|
40
|
+
## 1.7.2 - 2026-03-05
|
|
41
|
+
|
|
42
|
+
### Added
|
|
43
|
+
|
|
44
|
+
- nodechanged event returns now also an averaged lat/lon
|
|
45
|
+
- add new interactive authentication method
|
|
46
|
+
- add tenant name to apm logs
|
|
47
|
+
|
|
48
|
+
### Bugfixes
|
|
49
|
+
|
|
50
|
+
- fix not all layerimports give local storage warning
|
|
51
|
+
- fix linref measurement not showing the pinned value field
|
|
52
|
+
- fix localStorage not updating
|
|
53
|
+
- fix point cloud export not working correctly on tablet
|
|
54
|
+
- fix textures & geometries memory leak, which caused a WebGL context-loss
|
|
55
|
+
|
|
56
|
+
### Changes
|
|
57
|
+
|
|
58
|
+
- internal repo reorganisation
|
|
59
|
+
- update sdk dependencies
|
|
60
|
+
|
|
61
|
+
## 1.7.1 - 2026-01-27
|
|
62
|
+
|
|
63
|
+
### Bugfixes
|
|
64
|
+
|
|
65
|
+
- Fix login as non-migrated user when using the API
|
|
66
|
+
|
|
67
|
+
## 1.7.0 - 2025-12-16
|
|
68
|
+
|
|
69
|
+
### Added
|
|
70
|
+
|
|
71
|
+
- Enable linref for cantons (IN-3084)
|
|
72
|
+
- Fully support domains in ArcGIS Layers
|
|
73
|
+
- add link to infra3D Academy
|
|
74
|
+
- enabled link to profile on platform (IN-1993)
|
|
75
|
+
|
|
76
|
+
## 1.6.1 - 2025-11-20
|
|
77
|
+
|
|
78
|
+
### Bugfixes
|
|
79
|
+
|
|
80
|
+
- Performance when calling movePosition on the viewer is improved (NVTS-1060, NVTS-1062)
|
|
81
|
+
- When clicking twice on a feature with the info-tool, the feature info disappears (NVTS-1029, NVTS-1125)
|
|
82
|
+
- When exceeding the limit of the localstorage when importing layers, a message is displayed (NVTS-995)
|
|
83
|
+
- Fixed errors when importing geodataconfigurations from infra3D Classic (NVTS-1069)
|
|
84
|
+
- The Share-Link is updated even if the tool is open and the viewer is moved (NVTS-1078)
|
|
85
|
+
- While the layertree is open and focussed, the play with space works again (NVTS-1066)
|
|
86
|
+
- Overlap of layertree visibility-symbol with scrollbar in Firefox is fixed (NVTS-1067)
|
|
87
|
+
|
|
88
|
+
### Added
|
|
89
|
+
|
|
90
|
+
- PDF-Export is now also in the API available (NVTS-1057)
|
|
91
|
+
|
|
92
|
+
## 1.6.0 - 2025-10-29
|
|
93
|
+
|
|
94
|
+
### Bugfixes
|
|
95
|
+
|
|
96
|
+
- When clicking twice on a feature with the info-tool, the feature info disappears
|
|
97
|
+
- When importing Shapefiles, containing an id property, the ID is no longer overwritten with an internal one
|
|
98
|
+
|
|
99
|
+
### Added
|
|
100
|
+
|
|
101
|
+
- Authenticate interactively. You could now login with the common login mask (using username)
|
|
102
|
+
|
|
103
|
+
## 1.5.1 - 2025-10-13
|
|
104
|
+
|
|
105
|
+
### Bugfixes
|
|
106
|
+
|
|
107
|
+
- fix forever loading search when switching from classic to nextgen (IN-3791)
|
|
108
|
+
|
|
109
|
+
## 1.5.0 - 2025-09-17
|
|
110
|
+
|
|
111
|
+
### Added
|
|
112
|
+
|
|
113
|
+
- Node ID is returned in nodechanged event
|
|
114
|
+
- viewer.moveToKey() to move to a specific key
|
|
115
|
+
|
|
116
|
+
### Bugfixes
|
|
117
|
+
|
|
118
|
+
- Projects with a projectScope containing start- or endtimestamps, show the correct routeLines and routeHexes in the map
|
|
119
|
+
- Fix boolean attribute handling on creating new features
|
|
120
|
+
- moveToPosition is considering the maxDist parameter correctly
|
|
121
|
+
|
|
122
|
+
### Removed
|
|
123
|
+
|
|
124
|
+
- No request to /outline in framegate is been done, instead the project boundary or the boundary of the EPSG is used.
|
|
125
|
+
|
|
126
|
+
## 1.4.2 - 2025-08-13
|
|
127
|
+
|
|
128
|
+
### Bugfixes
|
|
129
|
+
|
|
130
|
+
- fix readme docs
|
|
131
|
+
|
|
132
|
+
## 1.4.1 - 2025-08-13
|
|
133
|
+
|
|
134
|
+
### Bugfixes
|
|
135
|
+
|
|
136
|
+
- fix performance (re-render) issue & improve store implementations (IN-3675)
|
|
137
|
+
- fix showing whatsnew on hotfix release (IN-3400)
|
|
138
|
+
- reset selectedaxis when moving away too far
|
|
139
|
+
- fix linref step being shown in non-linref projects
|
|
140
|
+
|
|
141
|
+
### Changes
|
|
142
|
+
|
|
143
|
+
- streamline PDF Export translations across the whole app (-)
|
|
144
|
+
- activate continuous measurement in linref tool
|
|
145
|
+
|
|
146
|
+
### Added
|
|
147
|
+
|
|
148
|
+
- implement whatsnew step
|
|
149
|
+
|
|
150
|
+
## 1.4.0 - 07.08.2025
|
|
151
|
+
|
|
152
|
+
### Changes
|
|
153
|
+
|
|
154
|
+
- Improve What's New Announcements
|
|
155
|
+
|
|
156
|
+
### Added
|
|
157
|
+
|
|
158
|
+
- Linear Reference tools: Axisscalebar, Axis Panel, Linear Reference Measurement
|
|
159
|
+
- Survey Wheel Measure
|
|
160
|
+
- PDF Export Tool
|
|
161
|
+
|
|
162
|
+
## 1.3.1 - 25.07.2025
|
|
163
|
+
|
|
164
|
+
### Bugfixes
|
|
165
|
+
|
|
166
|
+
- Fix types-file
|
|
167
|
+
- Bundle images inside the js-file
|
|
168
|
+
|
|
169
|
+
## 1.3.0 - 02.07.2025
|
|
170
|
+
|
|
171
|
+
### Added
|
|
172
|
+
|
|
173
|
+
- viewer.getCameraView() and viewer.setCameraView(...)
|
|
174
|
+
- viewer.setUserInteraction(true, false) to enable or disable paning and/or zooming in the image
|
|
175
|
+
- viewer.on("panzoomchanged", ...) to get notified when a user is interacting whithin a stereo image
|
|
176
|
+
- viewer.getCurrentNode() to retrieve some information like coordinates of the current position
|
|
177
|
+
- extended the viewer.on("nodechanged", ...) with some further properties
|
|
178
|
+
|
|
179
|
+
## 1.2.5 - 27.06.2025
|
|
180
|
+
|
|
181
|
+
### Bugfixes
|
|
182
|
+
|
|
183
|
+
- When adding a WFS 2.0 Layer, the settings have not been took over and not been saved correctly (IN-3444)
|
|
184
|
+
- When minimising the measurement panel and reopening meausrements again, the panels overlap each other (IN-3461)
|
|
185
|
+
|
|
186
|
+
## 1.2.4 - 12.06.2025
|
|
187
|
+
|
|
188
|
+
### Bugfixes
|
|
189
|
+
|
|
190
|
+
- Some request when using a non-migrated user resulted in a 400 Bad Request.
|
|
191
|
+
|
|
192
|
+
## 1.2.3 - 05.06.2025
|
|
193
|
+
|
|
194
|
+
### Bugfixes
|
|
195
|
+
|
|
196
|
+
- Profile Tool enlarge button now has a tooltip
|
|
197
|
+
- Add-On Point Cloud Export: Authorisation based on scope entry in token
|
|
198
|
+
|
|
199
|
+
### Added
|
|
200
|
+
|
|
201
|
+
- LoD Concept for Pointcloud fragments
|
|
202
|
+
- Add-On Point Cloud Export: Loading state on startup
|
|
203
|
+
|
|
204
|
+
## 1.2.2 - 17.04.2025
|
|
205
|
+
|
|
206
|
+
### Bugfixes
|
|
207
|
+
|
|
208
|
+
- Keydown/-up Eventlisteners ignored if evt.target is an HTMLInputElement, HTMLTextAreaElement or HTMLSelectElement.
|
|
209
|
+
- Requests in routesprovider have a lower limit to not reach the backend limit of 6 MB.
|
|
210
|
+
- Viewer is destroyed completly, with unlistening to events.
|
|
211
|
+
- Layer-configs: Wrong handling with source_options fixed
|
|
212
|
+
- When adding a new feature, it could be saved only after two inserts. This is now fixed.
|
|
213
|
+
- Fix shortened arcgis URL in Layer options
|
|
214
|
+
- Fix jump to multipolygon feature in Feature table
|
|
215
|
+
- Fix bug when Frame 0 is not inside projectscope
|
|
216
|
+
- Fix zick-zack bug in map when having lra-projects
|
|
217
|
+
|
|
218
|
+
## 1.2.1 - 24.02.2025
|
|
219
|
+
|
|
220
|
+
### Bugfixes
|
|
221
|
+
|
|
222
|
+
- React Reference Error when activating survey wheel measurement
|
|
223
|
+
- Not loading depthmaps anymore if loading view
|
|
224
|
+
|
|
225
|
+
## 1.2.0 - 16.12.2024
|
|
226
|
+
|
|
227
|
+
### Bugfixes
|
|
228
|
+
|
|
229
|
+
- Improve styling when using global box-sizing style
|
|
230
|
+
- Style of the scrollbar is no more globally overwritten by the API
|
|
231
|
+
- Resize event listens now on the div and not the whole window
|
|
232
|
+
|
|
233
|
+
### Added
|
|
234
|
+
|
|
235
|
+
- Added functions on viewer to draw and pick a geometry
|
|
236
|
+
- Added geometry overlays to display geometries in the viewer
|
|
237
|
+
- Function to destroy the API and remove it from the DOM
|
|
238
|
+
|
|
239
|
+
## 1.1.2 - 21.10.2024
|
|
240
|
+
|
|
241
|
+
### Bugfixes
|
|
242
|
+
|
|
243
|
+
- viewer.getRoutes() resulted in an error
|
|
244
|
+
|
|
245
|
+
## 1.1.1 - 14.10.2024
|
|
246
|
+
|
|
247
|
+
### Bugfixes
|
|
248
|
+
|
|
249
|
+
- Layer export not working for non-memory layers
|
|
250
|
+
- Duplicate layers when exporting directly after importing layers (without reloading)
|
|
251
|
+
|
|
252
|
+
## 1.1.0 - 09.10.2024
|
|
253
|
+
|
|
254
|
+
### Bugfixes
|
|
255
|
+
|
|
256
|
+
- Bug in viewer.getRoutesOutline() when using as migrated user.
|
|
257
|
+
- Same default EPSG-Code (4326) when using start-position for (un)-migrated users.
|
|
258
|
+
|
|
259
|
+
### Added
|
|
260
|
+
|
|
261
|
+
- ProjectScope is available to restrict the access inside a project accordingly.
|
|
262
|
+
- New concept for routes abstraction in the map, using hexagons
|
|
263
|
+
- viewer.getRouteLines() and viewer.getRouteHexes()
|
|
264
|
+
- PointCloudExport
|
|
265
|
+
- Support of EPSG-Code in start-position
|
|
266
|
+
|
|
267
|
+
## 1.0.3 - 17.09.2024
|
|
268
|
+
|
|
269
|
+
### Bugfixes
|
|
270
|
+
|
|
271
|
+
- Fixed pilegate URL for migrated users.
|
|
272
|
+
- Using the profiletool, added an information and reset the tool when changing the image while performing a measurement.
|
|
273
|
+
- Fix the bug when using jest for testing.
|
|
274
|
+
- Added missing bounding box parameter to viewer.getRoutes().
|
|
275
|
+
|
|
276
|
+
## 1.0.2 - 06.08.2024
|
|
277
|
+
|
|
278
|
+
### Bugfixes
|
|
279
|
+
|
|
280
|
+
- Fixed bug in the layer tree view. The layer tree is visible again.
|
|
281
|
+
|
|
282
|
+
## 1.0.1 - 23.07.2024
|
|
283
|
+
|
|
284
|
+
### Bugfixes
|
|
285
|
+
|
|
286
|
+
- Fixed a bug in the campaign change event in the viewer.
|
|
287
|
+
|
|
288
|
+
## 1.0.0 - 17.05.2024
|
|
289
|
+
|
|
290
|
+
### Bugfixes
|
|
291
|
+
|
|
292
|
+
- Restoration of toolbar and top bar functionality: They can now be shown and hidden smoothly.
|
|
293
|
+
|
|
294
|
+
### Added
|
|
295
|
+
|
|
296
|
+
- Introduction of machine authentication and a new corresponding example.
|
|
297
|
+
- Added: Option for access token in the init function.
|
|
298
|
+
- Added: Refresh token for the init function.
|
|
299
|
+
- Typings
|
|
300
|
+
|
|
301
|
+
### Changed
|
|
302
|
+
|
|
303
|
+
- Examples have been updated to accommodate the new authentication process.
|
|
304
|
+
|
|
305
|
+
### Deleted
|
|
306
|
+
|
|
307
|
+
- Interactive login functions.
|
|
308
|
+
- Removed: Two options from the init function:
|
|
309
|
+
- demoAccess
|
|
310
|
+
- redirectPath
|
|
311
|
+
|
|
312
|
+
## 0.2.8 - 08.04.2024
|
|
313
|
+
|
|
314
|
+
### Added
|
|
315
|
+
|
|
316
|
+
- Integrated and documented functions
|
|
317
|
+
- moveToPosition
|
|
318
|
+
- moveToCampaign
|
|
319
|
+
- lookAtPosition
|
|
320
|
+
- getRoutes
|
|
321
|
+
|
|
322
|
+
## 0.2.7 - 04.04.2024
|
|
323
|
+
|
|
324
|
+
### Added
|
|
325
|
+
|
|
326
|
+
- Improved documentation
|
|
327
|
+
- Description of the event types
|
|
328
|
+
- Description of further settings
|
|
329
|
+
|
|
330
|
+
### Changed
|
|
331
|
+
|
|
332
|
+
- Adaptation to the existing examples
|
|
333
|
+
|
|
334
|
+
## 0.2.4 - 14.03.2024
|
|
335
|
+
|
|
336
|
+
### Bugfixes
|
|
337
|
+
|
|
338
|
+
- Troubleshooting with internal module
|
|
339
|
+
|
|
340
|
+
## 0.2.3 - 09.02.2024
|
|
341
|
+
|
|
342
|
+
### Added
|
|
343
|
+
|
|
344
|
+
- Demo Access Login
|
|
345
|
+
- Documenation
|
|
346
|
+
|
|
347
|
+
### Changed
|
|
348
|
+
|
|
349
|
+
- Adoption of adjustments to the UI base of infra3D Edit
|
|
350
|
+
|
|
351
|
+
### Bugfixes
|
|
352
|
+
|
|
353
|
+
- Various minor adjustments
|
|
354
|
+
|
|
355
|
+
## 0.2.0 - 30.01.2024
|
|
356
|
+
|
|
357
|
+
### Added
|
|
358
|
+
|
|
359
|
+
- Edit functionality
|
|
333
360
|
|