@vertigis/viewer-spec 53.10.1 → 55.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.
- package/app-config/{mobile → common}/EventListenerModelProperties.d.ts +10 -5
- package/app-config/common/TranslatableText.d.ts +1 -1
- package/app-config/schema/common-app-config.schema.json +1 -1
- package/app-config/schema/mobile-app-config.schema.json +1 -1
- package/app-config/schema/web-app-config.schema.json +1 -1
- package/messaging/Event.d.ts +3 -2
- package/messaging/registry/app-config.d.ts +1 -1
- package/messaging/registry/app.d.ts +27 -21
- package/messaging/registry/arcade.d.ts +3 -3
- package/messaging/registry/auth.d.ts +4 -3
- package/messaging/registry/basemap.d.ts +2 -2
- package/messaging/registry/bookmark.d.ts +4 -4
- package/messaging/registry/charts.d.ts +8 -7
- package/messaging/registry/debugConsole.d.ts +2 -0
- package/messaging/registry/device.d.ts +3 -3
- package/messaging/registry/display.d.ts +1 -1
- package/messaging/registry/drawing.d.ts +8 -6
- package/messaging/registry/edit.d.ts +9 -8
- package/messaging/registry/file.d.ts +8 -8
- package/messaging/registry/filter-builder.d.ts +4 -3
- package/messaging/registry/geocode.d.ts +1 -1
- package/messaging/registry/geolocation.d.ts +27 -24
- package/messaging/registry/geometry-toolbar.d.ts +2 -2
- package/messaging/registry/geometry.d.ts +12 -12
- package/messaging/registry/highlights.d.ts +8 -6
- package/messaging/registry/input.d.ts +2 -2
- package/messaging/registry/iwtm.d.ts +1 -1
- package/messaging/registry/kpi.d.ts +8 -7
- package/messaging/registry/layer-comparison.d.ts +9 -8
- package/messaging/registry/layer-presets.d.ts +2 -2
- package/messaging/registry/layers.d.ts +16 -14
- package/messaging/registry/layout.d.ts +4 -4
- package/messaging/registry/licensing.d.ts +2 -2
- package/messaging/registry/location-marker.d.ts +7 -7
- package/messaging/registry/logViewer.d.ts +2 -2
- package/messaging/registry/map.d.ts +68 -61
- package/messaging/registry/measurement.d.ts +16 -16
- package/messaging/registry/messaging.d.ts +1 -1
- package/messaging/registry/network.d.ts +4 -4
- package/messaging/registry/offline.d.ts +34 -29
- package/messaging/registry/panel.d.ts +9 -5
- package/messaging/registry/photos.d.ts +3 -3
- package/messaging/registry/portal.d.ts +3 -3
- package/messaging/registry/project.d.ts +13 -13
- package/messaging/registry/query-builder.d.ts +3 -3
- package/messaging/registry/region.d.ts +2 -2
- package/messaging/registry/reports.d.ts +6 -5
- package/messaging/registry/results.d.ts +39 -31
- package/messaging/registry/search.d.ts +6 -6
- package/messaging/registry/settings.d.ts +1 -1
- package/messaging/registry/shortcut.d.ts +2 -2
- package/messaging/registry/sketching.d.ts +34 -29
- package/messaging/registry/system.d.ts +14 -13
- package/messaging/registry/tasks.d.ts +8 -5
- package/messaging/registry/ui.d.ts +32 -26
- package/messaging/registry/viewer.d.ts +13 -11
- package/messaging/registry/workflow.d.ts +7 -7
- package/messaging/schema/common-action.schema.json +15 -15
- package/messaging/schema/common-event.schema.json +5 -5
- package/messaging/schema/mobile-action.schema.json +131 -131
- package/messaging/schema/mobile-event.schema.json +99 -99
- package/messaging/schema/web-action.schema.json +218 -218
- package/messaging/schema/web-event.schema.json +37 -37
- package/package.json +2 -2
- package/version.d.ts +1 -1
- package/version.js +1 -1
- /package/app-config/{mobile → common}/EventListenerModelProperties.js +0 -0
|
@@ -58,7 +58,7 @@ export declare enum GeometryEditorGeometryMode {
|
|
|
58
58
|
export declare class MeasurementCommands extends CommandRegistry {
|
|
59
59
|
/**
|
|
60
60
|
* Display the measurements settings dialog. This allows you to configure
|
|
61
|
-
* measurements system, area and length units.
|
|
61
|
+
* measurements system, area and length units. Web only.
|
|
62
62
|
*
|
|
63
63
|
* @webOnly
|
|
64
64
|
*/
|
|
@@ -66,47 +66,47 @@ export declare class MeasurementCommands extends CommandRegistry {
|
|
|
66
66
|
/**
|
|
67
67
|
* Sets the value of the default point, line, or polygon symbol. The symbol
|
|
68
68
|
* can be configured with an instance of the Esri symbol or with the Esri
|
|
69
|
-
* WebMap JSON.
|
|
69
|
+
* WebMap JSON. Web only.
|
|
70
70
|
*
|
|
71
71
|
* @webOnly
|
|
72
72
|
*/
|
|
73
73
|
get setDefaultSymbol(): Command<SymbolLike | HasSymbol>;
|
|
74
74
|
/**
|
|
75
75
|
* Sets the area units used for measurements. Set as undefined for units to
|
|
76
|
-
* be intelligently selected based on dimensions.
|
|
76
|
+
* be intelligently selected based on dimensions. Web only.
|
|
77
77
|
*
|
|
78
78
|
* @webOnly
|
|
79
79
|
*/
|
|
80
80
|
get setAreaUnits(): Command<AreaMeasurementUnits | undefined>;
|
|
81
81
|
/**
|
|
82
82
|
* Sets the length units used for measurements. Set as undefined for units
|
|
83
|
-
* to be intelligently selected based on dimensions.
|
|
83
|
+
* to be intelligently selected based on dimensions. Web only.
|
|
84
84
|
*
|
|
85
85
|
* @webOnly
|
|
86
86
|
*/
|
|
87
87
|
get setLengthUnits(): Command<LengthMeasurementUnits | undefined>;
|
|
88
88
|
/**
|
|
89
89
|
* Starts drawing a measurement on the map. If a drawing has previously been
|
|
90
|
-
* started and stopped it will be resumed.
|
|
90
|
+
* started and stopped it will be resumed. Mobile only.
|
|
91
91
|
*
|
|
92
92
|
* @mobileOnly
|
|
93
93
|
*/
|
|
94
94
|
get start(): Command<Maps | void>;
|
|
95
95
|
/**
|
|
96
96
|
* Stops drawing a measurement on the map. Graphic remains visible and
|
|
97
|
-
* drawing can be resumed.
|
|
97
|
+
* drawing can be resumed. Mobile only.
|
|
98
98
|
*
|
|
99
99
|
* @mobileOnly
|
|
100
100
|
*/
|
|
101
101
|
get stop(): Command<Maps | void>;
|
|
102
102
|
/**
|
|
103
|
-
* Stops drawing and clears graphics from the map.
|
|
103
|
+
* Stops drawing and clears graphics from the map. Mobile only.
|
|
104
104
|
*
|
|
105
105
|
* @mobileOnly
|
|
106
106
|
*/
|
|
107
107
|
get clear(): Command<Maps | void>;
|
|
108
108
|
/**
|
|
109
|
-
* Sets the geometry mode in use.
|
|
109
|
+
* Sets the geometry mode in use. Mobile only.
|
|
110
110
|
*
|
|
111
111
|
* @mobileOnly
|
|
112
112
|
*/
|
|
@@ -115,7 +115,7 @@ export declare class MeasurementCommands extends CommandRegistry {
|
|
|
115
115
|
export declare class MeasurementOperations extends OperationRegistry {
|
|
116
116
|
/**
|
|
117
117
|
* Creates graphics out of geometries with the default symbology set by the
|
|
118
|
-
* "measurement.set-default-symbol" command'.
|
|
118
|
+
* "measurement.set-default-symbol" command'. Web only.
|
|
119
119
|
*
|
|
120
120
|
* @webOnly
|
|
121
121
|
*/
|
|
@@ -123,35 +123,35 @@ export declare class MeasurementOperations extends OperationRegistry {
|
|
|
123
123
|
/**
|
|
124
124
|
* Allows the user to create geometry by sketching on a map with live
|
|
125
125
|
* measurement labels. Returns the geometry that was drawn, along with the
|
|
126
|
-
* map that it was drawn on.
|
|
126
|
+
* map that it was drawn on. Web only.
|
|
127
127
|
*
|
|
128
128
|
* @webOnly
|
|
129
129
|
*/
|
|
130
130
|
get captureGeometry(): Operation<CaptureGeometryArgs, CaptureGeometryResult>;
|
|
131
131
|
/**
|
|
132
132
|
* Gets the value of the default point, line, or polygon symbol for the
|
|
133
|
-
* provided geometry type.
|
|
133
|
+
* provided geometry type. Web only.
|
|
134
134
|
*
|
|
135
135
|
* @webOnly
|
|
136
136
|
*/
|
|
137
137
|
get getDefaultSymbol(): Operation<GetDefaultSymbolArgs | GeometryType, DrawingSymbolConfig>;
|
|
138
138
|
/**
|
|
139
139
|
* Gets the value of the default 3D point, line, or polygon symbol for the
|
|
140
|
-
* provided geometry type.
|
|
140
|
+
* provided geometry type. Web only.
|
|
141
141
|
*
|
|
142
142
|
* @webOnly
|
|
143
143
|
*/
|
|
144
144
|
get getDefaultSymbol3D(): Operation<GetDefaultSymbolArgs | GeometryType, DrawingSymbolConfig>;
|
|
145
145
|
/**
|
|
146
146
|
* Gets the area units used for measurements. If undefined the units will be
|
|
147
|
-
* selected intelligently based on dimensions.
|
|
147
|
+
* selected intelligently based on dimensions. Web only.
|
|
148
148
|
*
|
|
149
149
|
* @webOnly
|
|
150
150
|
*/
|
|
151
151
|
get getAreaUnits(): Operation<void, AreaMeasurementUnits | undefined>;
|
|
152
152
|
/**
|
|
153
153
|
* Gets the length units used for measurements. If undefined the units will
|
|
154
|
-
* be selected intelligently based on dimensions.
|
|
154
|
+
* be selected intelligently based on dimensions. Web only.
|
|
155
155
|
*
|
|
156
156
|
* @webOnly
|
|
157
157
|
*/
|
|
@@ -159,13 +159,13 @@ export declare class MeasurementOperations extends OperationRegistry {
|
|
|
159
159
|
}
|
|
160
160
|
export declare class MeasurementEvents extends EventRegistry {
|
|
161
161
|
/**
|
|
162
|
-
* Raised when a measurement is started.
|
|
162
|
+
* Raised when a measurement is started. Mobile only.
|
|
163
163
|
*
|
|
164
164
|
* @mobileOnly
|
|
165
165
|
*/
|
|
166
166
|
get started(): Event<MeasurementEventArgs>;
|
|
167
167
|
/**
|
|
168
|
-
* Raised when a measurement is stopped.
|
|
168
|
+
* Raised when a measurement is stopped. Mobile only.
|
|
169
169
|
*
|
|
170
170
|
* @mobileOnly
|
|
171
171
|
*/
|
|
@@ -14,7 +14,7 @@ export declare class MessagingOperations extends OperationRegistry {
|
|
|
14
14
|
*
|
|
15
15
|
* Note that argument merging already occurs automatically in command
|
|
16
16
|
* chains; this explicit operation exists for advanced scenarios like
|
|
17
|
-
* VertiGIS Studio Workflow or custom code written using the SDK.
|
|
17
|
+
* VertiGIS Studio Workflow or custom code written using the SDK. Web only.
|
|
18
18
|
*
|
|
19
19
|
* @webOnly
|
|
20
20
|
*/
|
|
@@ -24,25 +24,25 @@ export interface HostAndPortArgs {
|
|
|
24
24
|
}
|
|
25
25
|
export declare class NetworkOperations extends OperationRegistry {
|
|
26
26
|
/**
|
|
27
|
-
* Determines if the device has a network connection.
|
|
27
|
+
* Determines if the device has a network connection. Mobile only.
|
|
28
28
|
*
|
|
29
29
|
* @mobileOnly
|
|
30
30
|
*/
|
|
31
31
|
get hasConnection(): Operation<void, boolean>;
|
|
32
32
|
/**
|
|
33
|
-
* Returns the network status.
|
|
33
|
+
* Returns the network status. Mobile only.
|
|
34
34
|
*
|
|
35
35
|
* @mobileOnly
|
|
36
36
|
*/
|
|
37
37
|
get getStatus(): Operation<void, NetworkStatus>;
|
|
38
38
|
/**
|
|
39
|
-
* Determines if the device can reach a given host and port.
|
|
39
|
+
* Determines if the device can reach a given host and port. Mobile only.
|
|
40
40
|
*
|
|
41
41
|
* @mobileOnly
|
|
42
42
|
*/
|
|
43
43
|
get canReachHost(): Operation<HostAndPortArgs, boolean>;
|
|
44
44
|
/**
|
|
45
|
-
* Determines if the device can reach a given url.
|
|
45
|
+
* Determines if the device can reach a given url. Mobile only.
|
|
46
46
|
*
|
|
47
47
|
* @mobileOnly
|
|
48
48
|
*/
|
|
@@ -303,14 +303,14 @@ export declare enum OfflineErrorCode {
|
|
|
303
303
|
export declare class OfflineCommands extends CommandRegistry {
|
|
304
304
|
/**
|
|
305
305
|
* Cancels any create offline map area operation in progress and resets the
|
|
306
|
-
* form used to create custom offline map areas.
|
|
306
|
+
* form used to create custom offline map areas. Mobile only.
|
|
307
307
|
*
|
|
308
308
|
* @mobileOnly
|
|
309
309
|
*/
|
|
310
310
|
get cancelCreateArea(): Command;
|
|
311
311
|
/**
|
|
312
312
|
* Cancels the download of the specified offline area, if it is currently in
|
|
313
|
-
* progress.
|
|
313
|
+
* progress. Mobile only.
|
|
314
314
|
*
|
|
315
315
|
* @mobileOnly
|
|
316
316
|
*/
|
|
@@ -318,14 +318,14 @@ export declare class OfflineCommands extends CommandRegistry {
|
|
|
318
318
|
/**
|
|
319
319
|
* Deletes the data stored on the device for the specified offline area. If
|
|
320
320
|
* a custom offline area is specified, and the area is not downloaded,
|
|
321
|
-
* deletes the custom area definition instead.
|
|
321
|
+
* deletes the custom area definition instead. Mobile only.
|
|
322
322
|
*
|
|
323
323
|
* @mobileOnly
|
|
324
324
|
*/
|
|
325
325
|
get deleteArea(): Command<OfflineCommandArgs>;
|
|
326
326
|
/**
|
|
327
327
|
* Displays a form that allows for the creation of a custom offline map
|
|
328
|
-
* area.
|
|
328
|
+
* area. Mobile only.
|
|
329
329
|
*
|
|
330
330
|
* @mobileOnly
|
|
331
331
|
*/
|
|
@@ -333,98 +333,102 @@ export declare class OfflineCommands extends CommandRegistry {
|
|
|
333
333
|
}
|
|
334
334
|
export declare class OfflineEvents extends EventRegistry {
|
|
335
335
|
/**
|
|
336
|
-
* Raised when an offline area is activated.
|
|
336
|
+
* Raised when an offline area is activated. Mobile only.
|
|
337
337
|
*
|
|
338
338
|
* @mobileOnly
|
|
339
339
|
*/
|
|
340
340
|
get areaActivated(): Event<AreaActivatedEventArgs>;
|
|
341
341
|
/**
|
|
342
|
-
* Raised when an offline area is about to be activated.
|
|
342
|
+
* Raised when an offline area is about to be activated. Mobile only.
|
|
343
343
|
*
|
|
344
344
|
* @mobileOnly
|
|
345
345
|
*/
|
|
346
346
|
get areaActivating(): Event<OfflineAreaBase>;
|
|
347
347
|
/**
|
|
348
|
-
* Raised when the data for offline map area is deleted.
|
|
348
|
+
* Raised when the data for offline map area is deleted. Mobile only.
|
|
349
349
|
*
|
|
350
350
|
* @mobileOnly
|
|
351
351
|
*/
|
|
352
352
|
get areaDeleted(): Event<OfflineAreaBase>;
|
|
353
353
|
/**
|
|
354
|
-
* Raised when an offline area download has started.
|
|
354
|
+
* Raised when an offline area download has started. Mobile only.
|
|
355
355
|
*
|
|
356
356
|
* @mobileOnly
|
|
357
357
|
*/
|
|
358
358
|
get areaDownloadStarted(): Event<OfflineAreaBase>;
|
|
359
359
|
/**
|
|
360
|
-
* Raised when an offline area download is canceled by the user.
|
|
360
|
+
* Raised when an offline area download is canceled by the user. Mobile
|
|
361
|
+
* only.
|
|
361
362
|
*
|
|
362
363
|
* @mobileOnly
|
|
363
364
|
*/
|
|
364
365
|
get areaDownloadCanceled(): Event<AreaOperationEndedEventArgs>;
|
|
365
366
|
/**
|
|
366
|
-
* Raised when an offline area download fails.
|
|
367
|
+
* Raised when an offline area download fails. Mobile only.
|
|
367
368
|
*
|
|
368
369
|
* @mobileOnly
|
|
369
370
|
*/
|
|
370
371
|
get areaDownloadFailed(): Event<AreaOperationEndedEventArgs>;
|
|
371
372
|
/**
|
|
372
|
-
* Raised when an offline area download completes.
|
|
373
|
+
* Raised when an offline area download completes. Mobile only.
|
|
373
374
|
*
|
|
374
375
|
* @mobileOnly
|
|
375
376
|
*/
|
|
376
377
|
get areaDownloaded(): Event<AreaOperationEndedEventArgs>;
|
|
377
378
|
/**
|
|
378
|
-
* Raised when an offline area update has started.
|
|
379
|
+
* Raised when an offline area update has started. Mobile only.
|
|
379
380
|
*
|
|
380
381
|
* @mobileOnly
|
|
381
382
|
*/
|
|
382
383
|
get areaUpdateStarted(): Event<OfflineAreaBase>;
|
|
383
384
|
/**
|
|
384
|
-
* Raised when an offline area has been updated.
|
|
385
|
+
* Raised when an offline area has been updated. Mobile only.
|
|
385
386
|
*
|
|
386
387
|
* @mobileOnly
|
|
387
388
|
*/
|
|
388
389
|
get areaUpdated(): Event<AreaOperationEndedEventArgs>;
|
|
389
390
|
/**
|
|
390
|
-
* Raised when an any error occurs during an offline map update.
|
|
391
|
+
* Raised when an any error occurs during an offline map update. Mobile
|
|
392
|
+
* only.
|
|
391
393
|
*
|
|
392
394
|
* @mobileOnly
|
|
393
395
|
*/
|
|
394
396
|
get areaUpdateFailed(): Event<AreaOperationEndedEventArgs>;
|
|
395
397
|
/**
|
|
396
|
-
* Raised when an operation to submit offline area edits has started.
|
|
398
|
+
* Raised when an operation to submit offline area edits has started. Mobile
|
|
399
|
+
* only.
|
|
397
400
|
*
|
|
398
401
|
* @mobileOnly
|
|
399
402
|
*/
|
|
400
403
|
get areaEditsSubmitStarted(): Event<AreaEditsSubmitStartedEventArgs>;
|
|
401
404
|
/**
|
|
402
405
|
* Raised when offline area edits have been submitted and this operation is
|
|
403
|
-
* successfully completed.
|
|
406
|
+
* successfully completed. Mobile only.
|
|
404
407
|
*
|
|
405
408
|
* @mobileOnly
|
|
406
409
|
*/
|
|
407
410
|
get areaEditsSubmitted(): Event<AreaOperationEndedEventArgs>;
|
|
408
411
|
/**
|
|
409
|
-
* Raised when any error occurs during an offline map submit edits.
|
|
412
|
+
* Raised when any error occurs during an offline map submit edits. Mobile
|
|
413
|
+
* only.
|
|
410
414
|
*
|
|
411
415
|
* @mobileOnly
|
|
412
416
|
*/
|
|
413
417
|
get areaEditsSubmitFailed(): Event<AreaOperationEndedEventArgs>;
|
|
414
418
|
/**
|
|
415
|
-
* Raised when a new custom offline map area is created.
|
|
419
|
+
* Raised when a new custom offline map area is created. Mobile only.
|
|
416
420
|
*
|
|
417
421
|
* @mobileOnly
|
|
418
422
|
*/
|
|
419
423
|
get customAreaCreated(): Event<CustomOfflineArea>;
|
|
420
424
|
/**
|
|
421
|
-
* Raised when the definition of a custom map area is deleted.
|
|
425
|
+
* Raised when the definition of a custom map area is deleted. Mobile only.
|
|
422
426
|
*
|
|
423
427
|
* @mobileOnly
|
|
424
428
|
*/
|
|
425
429
|
get customAreaDeleted(): Event<CustomOfflineArea>;
|
|
426
430
|
/**
|
|
427
|
-
* Raised when a map is switched to the online map.
|
|
431
|
+
* Raised when a map is switched to the online map. Mobile only.
|
|
428
432
|
*
|
|
429
433
|
* @mobileOnly
|
|
430
434
|
*/
|
|
@@ -432,59 +436,60 @@ export declare class OfflineEvents extends EventRegistry {
|
|
|
432
436
|
}
|
|
433
437
|
export declare class OfflineOperations extends OperationRegistry {
|
|
434
438
|
/**
|
|
435
|
-
* Creates a new custom offline map area.
|
|
439
|
+
* Creates a new custom offline map area. Mobile only.
|
|
436
440
|
*
|
|
437
441
|
* @mobileOnly
|
|
438
442
|
*/
|
|
439
443
|
get createArea(): Operation<CreateOfflineAreaArgs, CustomOfflineArea>;
|
|
440
444
|
/**
|
|
441
|
-
* Gets a list of available offline areas for the web map.
|
|
445
|
+
* Gets a list of available offline areas for the web map. Mobile only.
|
|
442
446
|
*
|
|
443
447
|
* @mobileOnly
|
|
444
448
|
*/
|
|
445
449
|
get getAreas(): Operation<MapExtension, OfflineAreaBase[]>;
|
|
446
450
|
/**
|
|
447
|
-
* Gets a list of layer edits for a given map area.
|
|
451
|
+
* Gets a list of layer edits for a given map area. Mobile only.
|
|
448
452
|
*
|
|
449
453
|
* @mobileOnly
|
|
450
454
|
*/
|
|
451
455
|
get getEdits(): Operation<OfflineCommandArgs, LayerEdits[]>;
|
|
452
456
|
/**
|
|
453
457
|
* Activates the specified offline area, replacing the map on the MapView
|
|
454
|
-
* with the offline map associated with the specified offline area.
|
|
458
|
+
* with the offline map associated with the specified offline area. Mobile
|
|
459
|
+
* only.
|
|
455
460
|
*
|
|
456
461
|
* @mobileOnly
|
|
457
462
|
*/
|
|
458
463
|
get activateArea(): Operation<OfflineCommandArgs, OfflineOperationResult>;
|
|
459
464
|
/**
|
|
460
|
-
* Downloads the data for the specified offline area.
|
|
465
|
+
* Downloads the data for the specified offline area. Mobile only.
|
|
461
466
|
*
|
|
462
467
|
* @mobileOnly
|
|
463
468
|
*/
|
|
464
469
|
get downloadArea(): Operation<OfflineCommandArgs, OfflineOperationResult>;
|
|
465
470
|
/**
|
|
466
|
-
* Switches from an offline map to the online map.
|
|
471
|
+
* Switches from an offline map to the online map. Mobile only.
|
|
467
472
|
*
|
|
468
473
|
* @mobileOnly
|
|
469
474
|
*/
|
|
470
475
|
get goOnline(): Operation<OfflineCommandArgs, OfflineOperationResult>;
|
|
471
476
|
/**
|
|
472
477
|
* Checks whether a map area is active for the specified map, or for any map
|
|
473
|
-
* if argument is null.
|
|
478
|
+
* if argument is null. Mobile only.
|
|
474
479
|
*
|
|
475
480
|
* @mobileOnly
|
|
476
481
|
*/
|
|
477
482
|
get checkForActiveArea(): Operation<MapExtension, boolean>;
|
|
478
483
|
/**
|
|
479
484
|
* Pushes any edits to the server that have been done in the indicated
|
|
480
|
-
* offline map.
|
|
485
|
+
* offline map. Mobile only.
|
|
481
486
|
*
|
|
482
487
|
* @mobileOnly
|
|
483
488
|
*/
|
|
484
489
|
get submitEdits(): Operation<OfflineCommandArgs, OfflineOperationResult>;
|
|
485
490
|
/**
|
|
486
491
|
* Pulls down any new map changes from the server to the indicated offline
|
|
487
|
-
* map.
|
|
492
|
+
* map. Mobile only.
|
|
488
493
|
*
|
|
489
494
|
* @mobileOnly
|
|
490
495
|
*/
|
|
@@ -54,6 +54,7 @@ export declare class PanelCommands extends CommandRegistry {
|
|
|
54
54
|
* out from the side of the screen). The component input parameter is
|
|
55
55
|
* required, and if you don't provide it, or pass in a component that is
|
|
56
56
|
* already hosted elsewhere in the application, you will get an exception.
|
|
57
|
+
* Mobile only.
|
|
57
58
|
*
|
|
58
59
|
* @mobileOnly
|
|
59
60
|
*/
|
|
@@ -62,7 +63,7 @@ export declare class PanelCommands extends CommandRegistry {
|
|
|
62
63
|
* Closes the host panel. If a component is specified, the panel is only
|
|
63
64
|
* closed if the specified component is currently open in the host panel. If
|
|
64
65
|
* no component is specified (input null), then the host panel will always
|
|
65
|
-
* be closed.
|
|
66
|
+
* be closed. Mobile only.
|
|
66
67
|
*
|
|
67
68
|
* @mobileOnly
|
|
68
69
|
*/
|
|
@@ -70,7 +71,7 @@ export declare class PanelCommands extends CommandRegistry {
|
|
|
70
71
|
/**
|
|
71
72
|
* Anchors the host panel so that content will open with a certain offset
|
|
72
73
|
* from the left or right side of the application (depending on if provided
|
|
73
|
-
* anchor component is on the left or right side of the app).
|
|
74
|
+
* anchor component is on the left or right side of the app). Mobile only.
|
|
74
75
|
*
|
|
75
76
|
* @mobileOnly
|
|
76
77
|
*/
|
|
@@ -78,19 +79,21 @@ export declare class PanelCommands extends CommandRegistry {
|
|
|
78
79
|
/**
|
|
79
80
|
* Snaps the host panel to a particular position (eg. Middle, top, or
|
|
80
81
|
* hidden). For use only with the horizontal taskbar on mobile phones, where
|
|
81
|
-
* the taskbar panel content slides up from the bottom.
|
|
82
|
+
* the taskbar panel content slides up from the bottom. Mobile only.
|
|
82
83
|
*
|
|
83
84
|
* @mobileOnly
|
|
84
85
|
*/
|
|
85
86
|
get snapHostPanel(): Command<SnapHostPanelArgs>;
|
|
86
87
|
/**
|
|
87
88
|
* Closes the popout window for a panel and restores the original layout.
|
|
89
|
+
* Web only.
|
|
88
90
|
*
|
|
89
91
|
* @webOnly
|
|
90
92
|
*/
|
|
91
93
|
get popIn(): Command<Model["id"] | Model>;
|
|
92
94
|
/**
|
|
93
95
|
* Removes a panel from the main layout and opens it in a new popout window.
|
|
96
|
+
* Web only.
|
|
94
97
|
*
|
|
95
98
|
* @webOnly
|
|
96
99
|
*/
|
|
@@ -99,14 +102,15 @@ export declare class PanelCommands extends CommandRegistry {
|
|
|
99
102
|
export declare class PanelEvents extends EventRegistry {
|
|
100
103
|
/**
|
|
101
104
|
* Raised when the component that is currently being displayed by the host
|
|
102
|
-
* panel is changed. Argument is the id of the component.
|
|
105
|
+
* panel is changed. Argument is the id of the component. Mobile only.
|
|
103
106
|
*
|
|
104
107
|
* @mobileOnly
|
|
105
108
|
*/
|
|
106
109
|
get hostPanelComponentChanged(): Event<string>;
|
|
107
110
|
/**
|
|
108
111
|
* Raised when the component that is currently being displayed by the host
|
|
109
|
-
* panel is about to change. Argument is the id of the component.
|
|
112
|
+
* panel is about to change. Argument is the id of the component. Mobile
|
|
113
|
+
* only.
|
|
110
114
|
*
|
|
111
115
|
* @mobileOnly
|
|
112
116
|
*/
|
|
@@ -23,13 +23,13 @@ export interface DisplayPhotoDetailsArgs {
|
|
|
23
23
|
}
|
|
24
24
|
export declare class PhotosCommands extends CommandRegistry {
|
|
25
25
|
/**
|
|
26
|
-
* Displays a photo in expanded / details view.
|
|
26
|
+
* Displays a photo in expanded / details view. Mobile only.
|
|
27
27
|
*
|
|
28
28
|
* @mobileOnly
|
|
29
29
|
*/
|
|
30
30
|
get displayDetails(): Command<DisplayPhotoDetailsArgs>;
|
|
31
31
|
/**
|
|
32
|
-
* Hides the currently displayed photo details.
|
|
32
|
+
* Hides the currently displayed photo details. Mobile only.
|
|
33
33
|
*
|
|
34
34
|
* @mobileOnly
|
|
35
35
|
*/
|
|
@@ -37,7 +37,7 @@ export declare class PhotosCommands extends CommandRegistry {
|
|
|
37
37
|
}
|
|
38
38
|
export declare class PhotosEvents extends EventRegistry {
|
|
39
39
|
/**
|
|
40
|
-
* Raised when photo details are hidden.
|
|
40
|
+
* Raised when photo details are hidden. Mobile only.
|
|
41
41
|
*
|
|
42
42
|
* @mobileOnly
|
|
43
43
|
*/
|
|
@@ -69,7 +69,7 @@ export interface CreateOrUpdateItemArgs extends PortalItemData {
|
|
|
69
69
|
}
|
|
70
70
|
export declare class PortalEvents extends EventRegistry {
|
|
71
71
|
/**
|
|
72
|
-
* Raised when an ArcGIS Portal is initialized.
|
|
72
|
+
* Raised when an ArcGIS Portal is initialized. Mobile only.
|
|
73
73
|
*
|
|
74
74
|
* @mobileOnly
|
|
75
75
|
*/
|
|
@@ -78,13 +78,13 @@ export declare class PortalEvents extends EventRegistry {
|
|
|
78
78
|
export declare class PortalOperations extends OperationRegistry {
|
|
79
79
|
/**
|
|
80
80
|
* Allows the user to browse/search the application's associated portal for
|
|
81
|
-
* one or more layers.
|
|
81
|
+
* one or more layers. Web only.
|
|
82
82
|
*
|
|
83
83
|
* @webOnly
|
|
84
84
|
*/
|
|
85
85
|
get chooseLayers(): Operation<ChooseLayersOptions, ChooseLayersResult>;
|
|
86
86
|
/**
|
|
87
|
-
* Creates or updates a portal item from the supplied data.
|
|
87
|
+
* Creates or updates a portal item from the supplied data. Web only.
|
|
88
88
|
*
|
|
89
89
|
* @webOnly
|
|
90
90
|
*/
|
|
@@ -53,40 +53,40 @@ export declare class ProjectCommands extends CommandRegistry {
|
|
|
53
53
|
/**
|
|
54
54
|
* Loads a project's app config and updates the application's current state,
|
|
55
55
|
* accordingly. If more than one file is provided, only the first will be
|
|
56
|
-
* loaded.
|
|
56
|
+
* loaded. Web only.
|
|
57
57
|
*
|
|
58
58
|
* @webOnly
|
|
59
59
|
*/
|
|
60
60
|
get load(): Command<AppConfig | HasAppConfig | SharedProject | Blob | Blob[]>;
|
|
61
61
|
/**
|
|
62
62
|
* Create or updates a shared project with the specified shared project
|
|
63
|
-
* details and project config.
|
|
63
|
+
* details and project config. Web only.
|
|
64
64
|
*
|
|
65
65
|
* @webOnly
|
|
66
66
|
*/
|
|
67
67
|
get saveShared(): Command<SaveSharedProjectArgs>;
|
|
68
68
|
/**
|
|
69
|
-
* Guard command for enabling the project.save-shared command.
|
|
69
|
+
* Guard command for enabling the project.save-shared command. Web only.
|
|
70
70
|
*
|
|
71
71
|
* @webOnly
|
|
72
72
|
*/
|
|
73
73
|
get ensureCanSaveShared(): Command<SaveSharedProjectArgs>;
|
|
74
74
|
/**
|
|
75
75
|
* Shows a shared projects settings. Requires a shared-projects component to
|
|
76
|
-
* be in the layout.
|
|
76
|
+
* be in the layout. Web only.
|
|
77
77
|
*
|
|
78
78
|
* @webOnly
|
|
79
79
|
*/
|
|
80
80
|
get showSettings(): Command<ShowSharedProjectArgs>;
|
|
81
81
|
/**
|
|
82
82
|
* Shows a shared projects share link. Requires a shared-projects component
|
|
83
|
-
* to be in the layout.
|
|
83
|
+
* to be in the layout. Web only.
|
|
84
84
|
*
|
|
85
85
|
* @webOnly
|
|
86
86
|
*/
|
|
87
87
|
get showShareLink(): Command<SharedProject>;
|
|
88
88
|
/**
|
|
89
|
-
* Deletes a shared project and its associated project config.
|
|
89
|
+
* Deletes a shared project and its associated project config. Web only.
|
|
90
90
|
*
|
|
91
91
|
* @webOnly
|
|
92
92
|
*/
|
|
@@ -95,25 +95,25 @@ export declare class ProjectCommands extends CommandRegistry {
|
|
|
95
95
|
export declare class ProjectOperations extends OperationRegistry {
|
|
96
96
|
/**
|
|
97
97
|
* Creates app config for a project, based on the current state of the
|
|
98
|
-
* application.
|
|
98
|
+
* application. Web only.
|
|
99
99
|
*
|
|
100
100
|
* @webOnly
|
|
101
101
|
*/
|
|
102
102
|
get create(): Operation<unknown, AppConfig | HasAppConfig>;
|
|
103
103
|
/**
|
|
104
|
-
* Returns a Shared Project Content.
|
|
104
|
+
* Returns a Shared Project Content. Web only.
|
|
105
105
|
*
|
|
106
106
|
* @webOnly
|
|
107
107
|
*/
|
|
108
108
|
get getSharedContent(): Operation<SharedProject, HasAppConfig>;
|
|
109
109
|
/**
|
|
110
|
-
* Returns a url share link for the provided Shared Project.
|
|
110
|
+
* Returns a url share link for the provided Shared Project. Web only.
|
|
111
111
|
*
|
|
112
112
|
* @webOnly
|
|
113
113
|
*/
|
|
114
114
|
get getShareLink(): Operation<SharedProject, string>;
|
|
115
115
|
/**
|
|
116
|
-
* Returns a list of Shared Projects.
|
|
116
|
+
* Returns a list of Shared Projects. Web only.
|
|
117
117
|
*
|
|
118
118
|
* @webOnly
|
|
119
119
|
*/
|
|
@@ -121,19 +121,19 @@ export declare class ProjectOperations extends OperationRegistry {
|
|
|
121
121
|
}
|
|
122
122
|
export declare class ProjectEvents extends EventRegistry {
|
|
123
123
|
/**
|
|
124
|
-
* Raised when a project is loaded.
|
|
124
|
+
* Raised when a project is loaded. Web only.
|
|
125
125
|
*
|
|
126
126
|
* @webOnly
|
|
127
127
|
*/
|
|
128
128
|
get loaded(): Event<SharedProject>;
|
|
129
129
|
/**
|
|
130
|
-
* Raised when a shared project is added.
|
|
130
|
+
* Raised when a shared project is added. Web only.
|
|
131
131
|
*
|
|
132
132
|
* @webOnly
|
|
133
133
|
*/
|
|
134
134
|
get shareAdded(): Event<SharedProject>;
|
|
135
135
|
/**
|
|
136
|
-
* Raised when a shared project is removed.
|
|
136
|
+
* Raised when a shared project is removed. Web only.
|
|
137
137
|
*
|
|
138
138
|
* @webOnly
|
|
139
139
|
*/
|
|
@@ -47,13 +47,13 @@ export interface SetQueryArgs extends QueryBuilderArgsBase, Query {
|
|
|
47
47
|
export declare class QueryBuilderCommands extends CommandRegistry {
|
|
48
48
|
/**
|
|
49
49
|
* Sets the current query criteria in the query builder and also activates
|
|
50
|
-
* the component.
|
|
50
|
+
* the component. Web only.
|
|
51
51
|
*
|
|
52
52
|
* @webOnly
|
|
53
53
|
*/
|
|
54
54
|
get displayQuery(): Command<SetQueryArgs>;
|
|
55
55
|
/**
|
|
56
|
-
* Sets the current query criteria in the query builder.
|
|
56
|
+
* Sets the current query criteria in the query builder. Web only.
|
|
57
57
|
*
|
|
58
58
|
* @webOnly
|
|
59
59
|
*/
|
|
@@ -67,7 +67,7 @@ export interface GetQueryArgs extends Required<QueryBuilderArgsBase> {
|
|
|
67
67
|
export declare class QueryBuilderOperations extends OperationRegistry {
|
|
68
68
|
/**
|
|
69
69
|
* Gets the currently visible query from the specified query builder
|
|
70
|
-
* component.
|
|
70
|
+
* component. Web only.
|
|
71
71
|
*
|
|
72
72
|
* @webOnly
|
|
73
73
|
*/
|
|
@@ -5,7 +5,7 @@ import type { Event } from "../Event.js";
|
|
|
5
5
|
import { EventRegistry } from "../EventRegistry.js";
|
|
6
6
|
export declare class RegionCommands extends CommandRegistry {
|
|
7
7
|
/**
|
|
8
|
-
* Sets the current measurement system.
|
|
8
|
+
* Sets the current measurement system. Web only.
|
|
9
9
|
*
|
|
10
10
|
* @webOnly
|
|
11
11
|
*/
|
|
@@ -13,7 +13,7 @@ export declare class RegionCommands extends CommandRegistry {
|
|
|
13
13
|
}
|
|
14
14
|
export declare class RegionEvents extends EventRegistry {
|
|
15
15
|
/**
|
|
16
|
-
* Raised when the current measurement system is changed.
|
|
16
|
+
* Raised when the current measurement system is changed. Web only.
|
|
17
17
|
*
|
|
18
18
|
* @webOnly
|
|
19
19
|
*/
|