@vertigis/viewer-spec 53.10.0 → 54.0.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.
Files changed (65) hide show
  1. package/app-config/{mobile → common}/EventListenerModelProperties.d.ts +8 -3
  2. package/app-config/common/TranslatableText.d.ts +1 -1
  3. package/app-config/schema/mobile-app-config.schema.json +1 -1
  4. package/messaging/Event.d.ts +3 -2
  5. package/messaging/registry/app-config.d.ts +1 -1
  6. package/messaging/registry/app.d.ts +27 -21
  7. package/messaging/registry/arcade.d.ts +3 -3
  8. package/messaging/registry/auth.d.ts +4 -3
  9. package/messaging/registry/basemap.d.ts +2 -2
  10. package/messaging/registry/bookmark.d.ts +4 -4
  11. package/messaging/registry/charts.d.ts +8 -7
  12. package/messaging/registry/debugConsole.d.ts +2 -0
  13. package/messaging/registry/device.d.ts +3 -3
  14. package/messaging/registry/display.d.ts +1 -1
  15. package/messaging/registry/drawing.d.ts +8 -6
  16. package/messaging/registry/edit.d.ts +9 -8
  17. package/messaging/registry/file.d.ts +8 -8
  18. package/messaging/registry/filter-builder.d.ts +4 -3
  19. package/messaging/registry/geocode.d.ts +1 -1
  20. package/messaging/registry/geolocation.d.ts +27 -24
  21. package/messaging/registry/geometry-toolbar.d.ts +2 -2
  22. package/messaging/registry/geometry.d.ts +12 -12
  23. package/messaging/registry/highlights.d.ts +8 -6
  24. package/messaging/registry/input.d.ts +2 -2
  25. package/messaging/registry/iwtm.d.ts +1 -1
  26. package/messaging/registry/kpi.d.ts +8 -7
  27. package/messaging/registry/layer-comparison.d.ts +9 -8
  28. package/messaging/registry/layer-presets.d.ts +2 -2
  29. package/messaging/registry/layers.d.ts +16 -14
  30. package/messaging/registry/layout.d.ts +4 -4
  31. package/messaging/registry/licensing.d.ts +2 -2
  32. package/messaging/registry/location-marker.d.ts +7 -7
  33. package/messaging/registry/logViewer.d.ts +2 -2
  34. package/messaging/registry/map.d.ts +68 -61
  35. package/messaging/registry/measurement.d.ts +16 -16
  36. package/messaging/registry/messaging.d.ts +1 -1
  37. package/messaging/registry/network.d.ts +4 -4
  38. package/messaging/registry/offline.d.ts +34 -29
  39. package/messaging/registry/panel.d.ts +9 -5
  40. package/messaging/registry/photos.d.ts +3 -3
  41. package/messaging/registry/portal.d.ts +3 -3
  42. package/messaging/registry/project.d.ts +13 -13
  43. package/messaging/registry/query-builder.d.ts +3 -3
  44. package/messaging/registry/region.d.ts +2 -2
  45. package/messaging/registry/reports.d.ts +6 -5
  46. package/messaging/registry/results.d.ts +39 -31
  47. package/messaging/registry/search.d.ts +6 -6
  48. package/messaging/registry/settings.d.ts +1 -1
  49. package/messaging/registry/shortcut.d.ts +2 -2
  50. package/messaging/registry/sketching.d.ts +34 -29
  51. package/messaging/registry/system.d.ts +14 -13
  52. package/messaging/registry/tasks.d.ts +8 -5
  53. package/messaging/registry/ui.d.ts +32 -26
  54. package/messaging/registry/viewer.d.ts +13 -11
  55. package/messaging/registry/workflow.d.ts +7 -7
  56. package/messaging/schema/common-action.schema.json +15 -15
  57. package/messaging/schema/common-event.schema.json +5 -5
  58. package/messaging/schema/mobile-action.schema.json +131 -131
  59. package/messaging/schema/mobile-event.schema.json +99 -99
  60. package/messaging/schema/web-action.schema.json +215 -215
  61. package/messaging/schema/web-event.schema.json +37 -37
  62. package/package.json +9 -2
  63. package/version.d.ts +1 -1
  64. package/version.js +1 -1
  65. /package/app-config/{mobile → common}/EventListenerModelProperties.js +0 -0
@@ -116,7 +116,8 @@ export declare enum GeolocateState {
116
116
  */
117
117
  export interface GeolocationEvent {
118
118
  /**
119
- * The GNSS source associated with the raised geolocation event.
119
+ * The GNSS source associated with the raised geolocation event. Mobile
120
+ * only.
120
121
  *
121
122
  * @mobileOnly
122
123
  */
@@ -289,7 +290,7 @@ export declare class GeolocationCommands extends CommandRegistry {
289
290
  * Centers the map on the user's current location and updates the
290
291
  * orientation of the map to face the direction of the device. Keeps the
291
292
  * location centered as it moves around. Returns whether guiding started
292
- * successfully.
293
+ * successfully. Mobile only.
293
294
  *
294
295
  * @mobileOnly
295
296
  */
@@ -303,31 +304,31 @@ export declare class GeolocationCommands extends CommandRegistry {
303
304
  */
304
305
  get turnOffGeolocation(): Command;
305
306
  /**
306
- * Displays the GNSS device settings view.
307
+ * Displays the GNSS device settings view. Mobile only.
307
308
  *
308
309
  * @mobileOnly
309
310
  */
310
311
  get displayDeviceSettings(): Command<GnssDeviceConnectionInfo>;
311
312
  /**
312
- * Displays the GNSS device metadata view.
313
+ * Displays the GNSS device metadata view. Mobile only.
313
314
  *
314
315
  * @mobileOnly
315
316
  */
316
317
  get displayDeviceMetadata(): Command;
317
318
  /**
318
- * Displays the GNSS device selection view.
319
+ * Displays the GNSS device selection view. Mobile only.
319
320
  *
320
321
  * @mobileOnly
321
322
  */
322
323
  get displayDeviceSelection(): Command;
323
324
  /**
324
- * Applies a datum transformation to the current GNSS device.
325
+ * Applies a datum transformation to the current GNSS device. Mobile only.
325
326
  *
326
327
  * @mobileOnly
327
328
  */
328
329
  get applyDatumTransformation(): Command<CoordinateTransformation | string | number | number[]>;
329
330
  /**
330
- * Modifies the location display symbol.
331
+ * Modifies the location display symbol. Mobile only.
331
332
  *
332
333
  * @mobileOnly
333
334
  */
@@ -335,20 +336,20 @@ export declare class GeolocationCommands extends CommandRegistry {
335
336
  }
336
337
  export declare class GeolocationOperations extends OperationRegistry {
337
338
  /**
338
- * Updates the currently active GNSS receiver.
339
+ * Updates the currently active GNSS receiver. Mobile only.
339
340
  *
340
341
  * @mobileOnly
341
342
  */
342
343
  get changeSource(): Operation<GnssDeviceConnectionInfo, void>;
343
344
  /**
344
- * Gets the currently active geolocation source.
345
+ * Gets the currently active geolocation source. Mobile only.
345
346
  *
346
347
  * @mobileOnly
347
348
  */
348
349
  get getActiveSource(): Operation<GnssDeviceConnectionInfo>;
349
350
  /**
350
351
  * Gets the list of currently available geolocation sources. Includes
351
- * integrated receivers, GNSS devices, and emulators.
352
+ * integrated receivers, GNSS devices, and emulators. Mobile only.
352
353
  *
353
354
  * @mobileOnly
354
355
  */
@@ -370,7 +371,7 @@ export declare class GeolocationOperations extends OperationRegistry {
370
371
  get getPosition(): Operation<void, Point>;
371
372
  /**
372
373
  * Returns a list of valid coordinate transformations for given input and
373
- * output spatial references.
374
+ * output spatial references. Mobile only.
374
375
  *
375
376
  * @mobileOnly
376
377
  */
@@ -384,7 +385,7 @@ export declare class GeolocationEvents extends EventRegistry {
384
385
  get accuracyChanged(): Event<GeolocateAccuracyChangedEventArgs>;
385
386
  /**
386
387
  * Raised when a GNSS receiver is active and metadata about the device or
387
- * location change.
388
+ * location change. Mobile only.
388
389
  *
389
390
  * @mobileOnly
390
391
  */
@@ -398,7 +399,7 @@ export declare class GeolocationEvents extends EventRegistry {
398
399
  /**
399
400
  * Raised when the user changes the geolocation mode to
400
401
  * recenter-and-reorient (updates map orientation to match device
401
- * direction).
402
+ * direction). Mobile only.
402
403
  *
403
404
  * @mobileOnly
404
405
  */
@@ -411,31 +412,33 @@ export declare class GeolocationEvents extends EventRegistry {
411
412
  get autoRecenterStopped(): Event<HasMaps | void>;
412
413
  /**
413
414
  * Raised when the user changes the geolocation mode to not
414
- * recenter-and-reorient.
415
+ * recenter-and-reorient. Mobile only.
415
416
  *
416
417
  * @mobileOnly
417
418
  */
418
419
  get autoRecenterAndReorientStopped(): Event<HasMaps>;
419
420
  /**
420
- * Raised when detection of connected GNSS receivers begins.
421
+ * Raised when detection of connected GNSS receivers begins. Mobile only.
421
422
  *
422
423
  * @mobileOnly
423
424
  */
424
425
  get gnssDeviceDetectionStarted(): Event;
425
426
  /**
426
- * Raised when detection of connected GNSS receivers ends.
427
+ * Raised when detection of connected GNSS receivers ends. Mobile only.
427
428
  *
428
429
  * @mobileOnly
429
430
  */
430
431
  get gnssDeviceDetectionStopped(): Event;
431
432
  /**
432
- * Raised when the lock status of an active GNSS device changes.
433
+ * Raised when the lock status of an active GNSS device changes. Mobile
434
+ * only.
433
435
  *
434
436
  * @mobileOnly
435
437
  */
436
438
  get gnssLockStatusChanged(): Event<GnssLockStateEventArgs>;
437
439
  /**
438
- * Raised when geolocation is activated and the user's heading changes.
440
+ * Raised when geolocation is activated and the user's heading changes. Web
441
+ * only.
439
442
  *
440
443
  * @webOnly
441
444
  */
@@ -456,7 +459,7 @@ export declare class GeolocationEvents extends EventRegistry {
456
459
  get positionLost(): Event<GeolocationEvent>;
457
460
  /**
458
461
  * Raised when the source of geolocation data is changed to a different
459
- * source (e.g. a GNSS receiver).
462
+ * source (e.g. a GNSS receiver). Mobile only.
460
463
  *
461
464
  * @mobileOnly
462
465
  */
@@ -467,31 +470,31 @@ export declare class GeolocationEvents extends EventRegistry {
467
470
  */
468
471
  get statusChanged(): Event<GeolocationStatusChangedEventArgs>;
469
472
  /**
470
- * Raised when geolocation enters displaying location mode.
473
+ * Raised when geolocation enters displaying location mode. Web only.
471
474
  *
472
475
  * @webOnly
473
476
  */
474
477
  get displayLocationStarted(): Event;
475
478
  /**
476
- * Raised when geolocation leaves displaying location mode.
479
+ * Raised when geolocation leaves displaying location mode. Web only.
477
480
  *
478
481
  * @webOnly
479
482
  */
480
483
  get displayLocationStopped(): Event;
481
484
  /**
482
- * Raised when the GNSS transformation is changed.
485
+ * Raised when the GNSS transformation is changed. Mobile only.
483
486
  *
484
487
  * @mobileOnly
485
488
  */
486
489
  get transformationChanged(): Event<GnssDeviceTransformationOverrideEventArgs>;
487
490
  /**
488
- * Raised when the GNSS antenna height is changed.
491
+ * Raised when the GNSS antenna height is changed. Mobile only.
489
492
  *
490
493
  * @mobileOnly
491
494
  */
492
495
  get antennaHeightChanged(): Event<GnssDeviceAntennaHeightEventArgs>;
493
496
  /**
494
- * Raised when the location display mode is changed.
497
+ * Raised when the location display mode is changed. Mobile only.
495
498
  *
496
499
  * @mobileOnly
497
500
  */
@@ -14,13 +14,13 @@ export interface GeometryToolbarArgs extends HasMaps {
14
14
  }
15
15
  export declare class GeometryToolbarCommands extends CommandRegistry {
16
16
  /**
17
- * Shows the Geometry Toolbar.
17
+ * Shows the Geometry Toolbar. Mobile only.
18
18
  *
19
19
  * @mobileOnly
20
20
  */
21
21
  get show(): Command<GeometryToolbarArgs | void>;
22
22
  /**
23
- * Hides the Geometry Toolbar.
23
+ * Hides the Geometry Toolbar. Mobile only.
24
24
  *
25
25
  * @mobileOnly
26
26
  */
@@ -186,14 +186,14 @@ export interface RemovePointArgs {
186
186
  }
187
187
  export declare class GeometryOperations extends OperationRegistry {
188
188
  /**
189
- * Projects a set of geometries to a new spatial reference.
189
+ * Projects a set of geometries to a new spatial reference. Web only.
190
190
  *
191
191
  * @webOnly
192
192
  */
193
193
  get project(): Operation<ProjectArgs, Geometry[]>;
194
194
  /**
195
195
  * Buffers a point geometry by a distance equivalent to the number of pixels
196
- * at the current map scale.
196
+ * at the current map scale. Web only.
197
197
  *
198
198
  * @webOnly
199
199
  */
@@ -201,43 +201,43 @@ export declare class GeometryOperations extends OperationRegistry {
201
201
  /**
202
202
  * Buffers a set of geometries by some distance to create a multi-part
203
203
  * polygon geometry. The distance value respects the user's preferences and
204
- * falls back on the default configured for the viewer session.
204
+ * falls back on the default configured for the viewer session. Web only.
205
205
  *
206
206
  * @webOnly
207
207
  */
208
208
  get buffer(): Operation<Geometries, BufferResult>;
209
209
  /**
210
- * Returns the default buffer distance for the viewer session.
210
+ * Returns the default buffer distance for the viewer session. Web only.
211
211
  *
212
212
  * @webOnly
213
213
  */
214
214
  get getBufferDistance(): Operation<void, number>;
215
215
  /**
216
- * Returns the default buffer units for the viewer session.
216
+ * Returns the default buffer units for the viewer session. Web only.
217
217
  *
218
218
  * @webOnly
219
219
  */
220
220
  get getBufferUnits(): Operation<void, LengthUnits>;
221
221
  /**
222
- * Adds a point to a given geometry.
222
+ * Adds a point to a given geometry. Mobile only.
223
223
  *
224
224
  * @mobileOnly
225
225
  */
226
226
  get addPoint(): Operation<AddPointArgs, Geometry>;
227
227
  /**
228
- * Adds a part to a given geometry.
228
+ * Adds a part to a given geometry. Mobile only.
229
229
  *
230
230
  * @mobileOnly
231
231
  */
232
232
  get addPart(): Operation<AddPartArgs, Geometry>;
233
233
  /**
234
- * Calculates a point relative to a given reference line.
234
+ * Calculates a point relative to a given reference line. Mobile only.
235
235
  *
236
236
  * @mobileOnly
237
237
  */
238
238
  get calculatePoint(): Operation<CalculatePointArgs, Point>;
239
239
  /**
240
- * Removes a point from a given geometry.
240
+ * Removes a point from a given geometry. Mobile only.
241
241
  *
242
242
  * @mobileOnly
243
243
  */
@@ -246,20 +246,20 @@ export declare class GeometryOperations extends OperationRegistry {
246
246
  export declare class GeometryCommands extends CommandRegistry {
247
247
  /**
248
248
  * Display the geometry settings dialog. This allows you to configure buffer
249
- * distance and buffer units.
249
+ * distance and buffer units. Web only.
250
250
  *
251
251
  * @webOnly
252
252
  */
253
253
  get displaySettings(): Command<HasUITarget>;
254
254
  /**
255
255
  * Sets the default buffer distance for the viewer session. The buffer
256
- * distance must be a number > 0.
256
+ * distance must be a number > 0. Web only.
257
257
  *
258
258
  * @webOnly
259
259
  */
260
260
  get setBufferDistance(): Command<number>;
261
261
  /**
262
- * Sets the default buffer units for the viewer session.
262
+ * Sets the default buffer units for the viewer session. Web only.
263
263
  *
264
264
  * @webOnly
265
265
  */
@@ -36,31 +36,33 @@ export declare class HighlightsCommands extends CommandRegistry {
36
36
  */
37
37
  get clearFocus(): Command<Maps | void>;
38
38
  /**
39
- * Hides all highlight overlays (can be undone with highlights.show).
39
+ * Hides all highlight overlays (can be undone with highlights.show). Mobile
40
+ * only.
40
41
  *
41
42
  * @mobileOnly
42
43
  */
43
44
  get hide(): Command<HasMaps>;
44
45
  /**
45
46
  * Hides the focus highlight (can be undone with highlights.show-focus).
47
+ * Mobile only.
46
48
  *
47
49
  * @mobileOnly
48
50
  */
49
51
  get hideFocus(): Command<HasMaps>;
50
52
  /**
51
- * Refreshes highlighting for one or many features.
53
+ * Refreshes highlighting for one or many features. Mobile only.
52
54
  *
53
55
  * @mobileOnly
54
56
  */
55
57
  get refresh(): Command<HasMapsAndFeatures>;
56
58
  /**
57
- * Shows all highlight overlays (makes not hidden).
59
+ * Shows all highlight overlays (makes not hidden). Mobile only.
58
60
  *
59
61
  * @mobileOnly
60
62
  */
61
63
  get show(): Command<HasMaps>;
62
64
  /**
63
- * Shows the highlight focus (makes focus not hidden).
65
+ * Shows the highlight focus (makes focus not hidden). Mobile only.
64
66
  *
65
67
  * @mobileOnly
66
68
  */
@@ -68,13 +70,13 @@ export declare class HighlightsCommands extends CommandRegistry {
68
70
  }
69
71
  export declare class HighlightsOperations extends OperationRegistry {
70
72
  /**
71
- * Returns all highlighted features for a given map.
73
+ * Returns all highlighted features for a given map. Web only.
72
74
  *
73
75
  * @webOnly
74
76
  */
75
77
  get get(): Operation<MapExtension, FeatureSet>;
76
78
  /**
77
- * Returns all focused features for a given map.
79
+ * Returns all focused features for a given map. Web only.
78
80
  *
79
81
  * @webOnly
80
82
  */
@@ -7,13 +7,13 @@ export interface ConsoleKeyInfoObj {
7
7
  }
8
8
  export declare class InputEvents extends EventRegistry {
9
9
  /**
10
- * Raised when the user shakes the device.
10
+ * Raised when the user shakes the device. Mobile only.
11
11
  *
12
12
  * @mobileOnly
13
13
  */
14
14
  get shake(): Event;
15
15
  /**
16
- * Raised when the user presses a keyboard shortcut.
16
+ * Raised when the user presses a keyboard shortcut. Mobile only.
17
17
  *
18
18
  * @mobileOnly
19
19
  */
@@ -2,7 +2,7 @@ import type { Command } from "../Command.js";
2
2
  import { CommandRegistry } from "../CommandRegistry.js";
3
3
  export declare class IwtmCommands extends CommandRegistry {
4
4
  /**
5
- * Displays the I Want To Menu with the given ID.
5
+ * Displays the I Want To Menu with the given ID. Mobile only.
6
6
  *
7
7
  * @mobileOnly
8
8
  */
@@ -48,31 +48,31 @@ export interface GetKpiDefinitionResult {
48
48
  }
49
49
  export declare class KpiCommands extends CommandRegistry {
50
50
  /**
51
- * Displays the KPI card and updates it with provided features.
51
+ * Displays the KPI card and updates it with provided features. Web only.
52
52
  *
53
53
  * @webOnly
54
54
  */
55
55
  get display(): Command<Features | UpdateKpiCardFeaturesArgs>;
56
56
  /**
57
- * Add one or more features to active KPI cards.
57
+ * Add one or more features to active KPI cards. Web only.
58
58
  *
59
59
  * @webOnly
60
60
  */
61
61
  get addFeatures(): Command<Features | UpdateKpiCardFeaturesArgs>;
62
62
  /**
63
- * Remove one or more features from active KPI cards.
63
+ * Remove one or more features from active KPI cards. Web only.
64
64
  *
65
65
  * @webOnly
66
66
  */
67
67
  get removeFeatures(): Command<Features | UpdateKpiCardFeaturesArgs>;
68
68
  /**
69
- * Clear features from active KPI cards.
69
+ * Clear features from active KPI cards. Web only.
70
70
  *
71
71
  * @webOnly
72
72
  */
73
73
  get clear(): Command<ModelRef | void>;
74
74
  /**
75
- * Updates the definition of a KPI Card.
75
+ * Updates the definition of a KPI Card. Web only.
76
76
  *
77
77
  * @webOnly
78
78
  */
@@ -80,14 +80,15 @@ export declare class KpiCommands extends CommandRegistry {
80
80
  }
81
81
  export declare class KpiOperations extends OperationRegistry {
82
82
  /**
83
- * Returns the current set of features from all active KPI Cards.
83
+ * Returns the current set of features from all active KPI Cards. Web only.
84
84
  *
85
85
  * @webOnly
86
86
  */
87
87
  get getFeatures(): Operation<ModelRef | void, Features>;
88
88
  /**
89
89
  * Gets the definition of a KPI card that corresponds to the ID or the
90
- * instance of the KPI card model that's passed in as an argument.
90
+ * instance of the KPI card model that's passed in as an argument. Web
91
+ * only.
91
92
  *
92
93
  * @webOnly
93
94
  */
@@ -37,14 +37,15 @@ export interface SetLayerComparisonDirectionArgs {
37
37
  }
38
38
  export declare class LayerComparisonCommands extends CommandRegistry {
39
39
  /**
40
- * Activates or deactivates the layer-comparison mode on the map(s).
40
+ * Activates or deactivates the layer-comparison mode on the map(s). Web
41
+ * only.
41
42
  *
42
43
  * @webOnly
43
44
  */
44
45
  get setMode(): Command<SetLayerComparisonModeArgs>;
45
46
  /**
46
47
  * Changes the orientation of the map(s') layer-comparison bar between
47
- * 'horizontal' and 'vertical'.
48
+ * 'horizontal' and 'vertical'. Web only.
48
49
  *
49
50
  * @webOnly
50
51
  */
@@ -56,7 +57,7 @@ export declare class LayerComparisonCommands extends CommandRegistry {
56
57
  * the map if the layer-comparison orientation is 'vertical'. Adding a layer
57
58
  * to the leading layers will automatically remove it from the trailing
58
59
  * layers. Only operational layers that exist within a given map are valid -
59
- * others will be ignored.
60
+ * others will be ignored. Web only.
60
61
  *
61
62
  * @webOnly
62
63
  */
@@ -68,33 +69,33 @@ export declare class LayerComparisonCommands extends CommandRegistry {
68
69
  * of the map if the layer-comparison orientation is 'vertical'. Adding a
69
70
  * layer to the trailing layers will automatically remove it from the
70
71
  * leading layers. Only operational layers that exist within a given map are
71
- * valid - others will be ignored.
72
+ * valid - others will be ignored. Web only.
72
73
  *
73
74
  * @webOnly
74
75
  */
75
76
  get addTrailingLayers(): Command<Layers>;
76
77
  /**
77
78
  * Removes the layer(s) from the map's leading layers, which are used by the
78
- * layer-comparison tool.
79
+ * layer-comparison tool. Web only.
79
80
  *
80
81
  * @webOnly
81
82
  */
82
83
  get removeLeadingLayers(): Command<Layers>;
83
84
  /**
84
85
  * Removes the layer(s) from the map's trailing layers, which are used by
85
- * the layer-comparison tool.
86
+ * the layer-comparison tool. Web only.
86
87
  *
87
88
  * @webOnly
88
89
  */
89
90
  get removeTrailingLayers(): Command<Layers>;
90
91
  /**
91
- * Removes all leading layers from the map(s).
92
+ * Removes all leading layers from the map(s). Web only.
92
93
  *
93
94
  * @webOnly
94
95
  */
95
96
  get clearLeadingLayers(): Command<MapsLike | void>;
96
97
  /**
97
- * Removes all trailing layers from the map(s).
98
+ * Removes all trailing layers from the map(s). Web only.
98
99
  *
99
100
  * @webOnly
100
101
  */
@@ -31,7 +31,7 @@ export declare class LayerPresetsCommands extends CommandRegistry {
31
31
  * Applies a layer-preset to a map. Applying a layer-preset means that the
32
32
  * layer visibilities, opacity, and the map's basemap are changed to match
33
33
  * the layer-preset definition. It's a quick way for a user to toggle the
34
- * state of the map to a pre-configured state.
34
+ * state of the map to a pre-configured state. Mobile only.
35
35
  *
36
36
  * @mobileOnly
37
37
  */
@@ -39,7 +39,7 @@ export declare class LayerPresetsCommands extends CommandRegistry {
39
39
  }
40
40
  export declare class LayerPresetsEvents extends EventRegistry {
41
41
  /**
42
- * Raised when a layer preset is applied.
42
+ * Raised when a layer preset is applied. Mobile only.
43
43
  *
44
44
  * @mobileOnly
45
45
  */
@@ -71,49 +71,50 @@ export interface LayerSettingsArgs extends HasLayerSettings, HasLayers, HasSymbo
71
71
  }
72
72
  export declare class LayersCommands extends CommandRegistry {
73
73
  /**
74
- * Guard command for enabling the layers.set-symbol command.
74
+ * Guard command for enabling the layers.set-symbol command. Web only.
75
75
  *
76
76
  * @webOnly
77
77
  */
78
78
  get ensureCanSetSymbol(): Command<SetSymbolArgs>;
79
79
  /**
80
- * Updates the provided layer(s) with new popup template configuration.
80
+ * Updates the provided layer(s) with new popup template configuration. Web
81
+ * only.
81
82
  *
82
83
  * @webOnly
83
84
  */
84
85
  get setPopupTemplate(): Command<LayerSettingsArgs>;
85
86
  /**
86
- * Updates the symbol for the provided layer(s).
87
+ * Updates the symbol for the provided layer(s). Web only.
87
88
  *
88
89
  * @webOnly
89
90
  */
90
91
  get setSymbol(): Command<SetSymbolArgs>;
91
92
  /**
92
- * Updates the provided layer(s) with new task settings.
93
+ * Updates the provided layer(s) with new task settings. Web only.
93
94
  *
94
95
  * @webOnly
95
96
  */
96
97
  get setTaskSettings(): Command<LayerSettingsArgs>;
97
98
  /**
98
- * Changes the title of the provided layer(s).
99
+ * Changes the title of the provided layer(s). Web only.
99
100
  *
100
101
  * @webOnly
101
102
  */
102
103
  get setTitle(): Command<LayerSettingsArgs>;
103
104
  /**
104
- * Updates the visibility of the provided layer(s).
105
+ * Updates the visibility of the provided layer(s). Web only.
105
106
  *
106
107
  * @webOnly
107
108
  */
108
109
  get setVisibility(): Command<SetVisibilityArgs>;
109
110
  /**
110
- * Turns on the layer's labels on the map.
111
+ * Turns on the layer's labels on the map. Web only.
111
112
  *
112
113
  * @webOnly
113
114
  */
114
115
  get showLabels(): Command<SetLabelVisibilityArgs>;
115
116
  /**
116
- * Turns off the layer's labels on the map.
117
+ * Turns off the layer's labels on the map. Web only.
117
118
  *
118
119
  * @webOnly
119
120
  */
@@ -121,20 +122,21 @@ export declare class LayersCommands extends CommandRegistry {
121
122
  }
122
123
  export declare class LayersOperations extends OperationRegistry {
123
124
  /**
124
- * Retrieves the popup configuration applied to the supplied layer(s).
125
+ * Retrieves the popup configuration applied to the supplied layer(s). Web
126
+ * only.
125
127
  *
126
128
  * @webOnly
127
129
  */
128
130
  get getPopupTemplate(): Operation<HasLayers, LayerSettingsArgs>;
129
131
  /**
130
132
  * Retrieves the values for the 'taskSettings' applied to the supplied
131
- * layer(s).
133
+ * layer(s). Web only.
132
134
  *
133
135
  * @webOnly
134
136
  */
135
137
  get getTaskSettings(): Operation<HasLayers, LayerSettingsArgs>;
136
138
  /**
137
- * Retrieves the titles of the supplied layer(s).
139
+ * Retrieves the titles of the supplied layer(s). Web only.
138
140
  *
139
141
  * @webOnly
140
142
  */
@@ -142,7 +144,7 @@ export declare class LayersOperations extends OperationRegistry {
142
144
  /**
143
145
  * Shows a UI for editing the settings on an existing layer or layers. Note
144
146
  * that changes will not be applied to the supplied layers by this
145
- * operation. Use `layers.set-*` for this.
147
+ * operation. Use `layers.set-*` for this. Web only.
146
148
  *
147
149
  * @webOnly
148
150
  */
@@ -150,7 +152,7 @@ export declare class LayersOperations extends OperationRegistry {
150
152
  /**
151
153
  * Edit the symbol from an existing layer or layers. Note that changes to
152
154
  * these symbols will not be applied to the layers by this operation. Use
153
- * `layers.set-symbol` for this.
155
+ * `layers.set-symbol` for this. Web only.
154
156
  *
155
157
  * @webOnly
156
158
  */
@@ -158,7 +160,7 @@ export declare class LayersOperations extends OperationRegistry {
158
160
  }
159
161
  export declare class LayersEvents extends EventRegistry {
160
162
  /**
161
- * Raised when a layer's visibility changes.
163
+ * Raised when a layer's visibility changes. Mobile only.
162
164
  *
163
165
  * @mobileOnly
164
166
  */
@@ -21,26 +21,26 @@ export interface LayoutMarginChangedArgs {
21
21
  }
22
22
  export declare class LayoutEvents extends EventRegistry {
23
23
  /**
24
- * Raised when a layout is finished being displayed.
24
+ * Raised when a layout is finished being displayed. Mobile only.
25
25
  *
26
26
  * @mobileOnly
27
27
  */
28
28
  get displayed(): Event;
29
29
  /**
30
- * Raised when a layout is loaded.
30
+ * Raised when a layout is loaded. Mobile only.
31
31
  *
32
32
  * @mobileOnly
33
33
  */
34
34
  get loaded(): Event<Page>;
35
35
  /**
36
36
  * Raised when a layout is unloaded (typically so that a new layout can be
37
- * loaded).
37
+ * loaded). Mobile only.
38
38
  *
39
39
  * @mobileOnly
40
40
  */
41
41
  get unloaded(): Event;
42
42
  /**
43
- * Raised when a layout's margin values have been updated.
43
+ * Raised when a layout's margin values have been updated. Mobile only.
44
44
  *
45
45
  * @mobileOnly
46
46
  */
@@ -19,7 +19,7 @@ export declare class LicenseRequestArgs {
19
19
  export declare class LicensingCommands extends CommandRegistry {
20
20
  /**
21
21
  * Validate the current application license and show appropriate prompts or
22
- * errors.
22
+ * errors. Web only.
23
23
  *
24
24
  * @webOnly
25
25
  */
@@ -28,7 +28,7 @@ export declare class LicensingCommands extends CommandRegistry {
28
28
  export declare class LicensingOperations extends OperationRegistry {
29
29
  /**
30
30
  * Retrieve the license state for the specified account and SKU. Defaults to
31
- * returning Web current state.
31
+ * returning Web current state. Web only.
32
32
  *
33
33
  * @webOnly
34
34
  */