@vertigis/viewer-spec 60.6.0 → 60.8.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 (72) hide show
  1. package/app-config/schema/common-app-config.schema.json +1 -1
  2. package/app-config/schema/mobile-app-config.schema.json +1 -1
  3. package/app-config/schema/web-app-config.schema.json +1 -1
  4. package/messaging/schema/common-action.schema.json +15 -1
  5. package/messaging/schema/common-event.schema.json +15 -1
  6. package/messaging/schema/mobile-action.schema.json +15 -1
  7. package/messaging/schema/mobile-event.schema.json +15 -1
  8. package/messaging/schema/web-action.schema.json +15 -1
  9. package/messaging/schema/web-app-operation-definitions.md +30 -0
  10. package/messaging/schema/web-arcade-operation-definitions.md +93 -0
  11. package/messaging/schema/web-auth-command-definitions.md +12 -0
  12. package/messaging/schema/web-auth-operation-definitions.md +16 -0
  13. package/messaging/schema/web-basemap-command-definitions.md +20 -0
  14. package/messaging/schema/web-basemap-operation-definitions.md +31 -0
  15. package/messaging/schema/web-bulk-editing-command-definitions.md +54 -0
  16. package/messaging/schema/web-charts-command-definitions.md +135 -0
  17. package/messaging/schema/web-charts-operation-definitions.md +48 -0
  18. package/messaging/schema/web-drawing-command-definitions.md +551 -0
  19. package/messaging/schema/web-drawing-operation-definitions.md +720 -0
  20. package/messaging/schema/web-edit-command-definitions.md +540 -0
  21. package/messaging/schema/web-edit-operation-definitions.md +50 -0
  22. package/messaging/schema/web-event.schema.json +15 -1
  23. package/messaging/schema/web-filter-builder-command-definitions.md +50 -0
  24. package/messaging/schema/web-filter-builder-operation-definitions.md +18 -0
  25. package/messaging/schema/web-geocode-operation-definitions.md +132 -0
  26. package/messaging/schema/web-geolocation-command-definitions.md +27 -0
  27. package/messaging/schema/web-geolocation-operation-definitions.md +24 -0
  28. package/messaging/schema/web-geometry-command-definitions.md +34 -0
  29. package/messaging/schema/web-geometry-operation-definitions.md +438 -0
  30. package/messaging/schema/web-highlights-command-definitions.md +120 -0
  31. package/messaging/schema/web-kpi-command-definitions.md +139 -0
  32. package/messaging/schema/web-kpi-operation-definitions.md +48 -0
  33. package/messaging/schema/web-layer-comparison-command-definitions.md +214 -0
  34. package/messaging/schema/web-layer-list-command-definitions.md +30 -0
  35. package/messaging/schema/web-layers-command-definitions.md +1466 -0
  36. package/messaging/schema/web-layers-operation-definitions.md +612 -0
  37. package/messaging/schema/web-licensing-command-definitions.md +24 -0
  38. package/messaging/schema/web-licensing-operation-definitions.md +26 -0
  39. package/messaging/schema/web-location-marker-command-definitions.md +209 -0
  40. package/messaging/schema/web-map-command-definitions.md +2157 -0
  41. package/messaging/schema/web-map-operation-definitions.md +147 -0
  42. package/messaging/schema/web-measurement-command-definitions.md +556 -0
  43. package/messaging/schema/web-measurement-operation-definitions.md +314 -0
  44. package/messaging/schema/web-messaging-operation-definitions.md +16 -0
  45. package/messaging/schema/web-panel-command-definitions.md +44 -0
  46. package/messaging/schema/web-portal-operation-definitions.md +87 -0
  47. package/messaging/schema/web-printing-command-definitions.md +105 -0
  48. package/messaging/schema/web-printing-operation-definitions.md +21 -0
  49. package/messaging/schema/web-project-command-definitions.md +418 -0
  50. package/messaging/schema/web-project-operation-definitions.md +120 -0
  51. package/messaging/schema/web-query-builder-command-definitions.md +83 -0
  52. package/messaging/schema/web-query-builder-operation-definitions.md +18 -0
  53. package/messaging/schema/web-region-command-definitions.md +6 -0
  54. package/messaging/schema/web-reports-command-definitions.md +44 -0
  55. package/messaging/schema/web-results-command-definitions.md +348 -0
  56. package/messaging/schema/web-results-operation-definitions.md +1242 -0
  57. package/messaging/schema/web-search-command-definitions.md +6 -0
  58. package/messaging/schema/web-sketching-command-definitions.md +328 -0
  59. package/messaging/schema/web-sketching-operation-definitions.md +442 -0
  60. package/messaging/schema/web-studio-analytics-command-definitions.md +21 -0
  61. package/messaging/schema/web-system-command-definitions.md +159 -0
  62. package/messaging/schema/web-system-operation-definitions.md +104 -0
  63. package/messaging/schema/web-tasks-operation-definitions.md +360 -0
  64. package/messaging/schema/web-ui-command-definitions.md +340 -0
  65. package/messaging/schema/web-ui-operation-definitions.md +146 -0
  66. package/messaging/schema/web-viewer-command-definitions.md +40 -0
  67. package/messaging/schema/web-viewer-operation-definitions.md +48 -0
  68. package/messaging/schema/web-workflow-command-definitions.md +47 -0
  69. package/messaging/schema/web-workflow-operation-definitions.md +45 -0
  70. package/package.json +9 -8
  71. package/version.d.ts +1 -1
  72. package/version.js +1 -1
@@ -0,0 +1,1466 @@
1
+ # command: layers.ensure-can-set-symbol
2
+ Description: Guard command for enabling the layers.set-symbol command. Web only.
3
+
4
+ Inputs: `SetSymbolArgs`
5
+
6
+ SetSymbolArgs properties:
7
+ ```json
8
+ {
9
+ "layers": {
10
+ "description": "Layer(s) to use for the command/operation."
11
+ },
12
+ "maps": {
13
+ "description": "Map(s) to use for the command/operation."
14
+ },
15
+ "renderers": {
16
+ "anyOf": [
17
+ {
18
+ "$ref": "#/definitions/esri.rest-api.RendererJson.ClassBreaksRendererJson"
19
+ },
20
+ {
21
+ "$ref": "#/definitions/esri.rest-api.RendererJson.HeatmapRendererJson"
22
+ },
23
+ {
24
+ "$ref": "#/definitions/esri.rest-api.RendererJson.PointCloudClassBreaksRendererJson"
25
+ },
26
+ {
27
+ "$ref": "#/definitions/esri.rest-api.RendererJson.PointCloudRGBRendererJson"
28
+ },
29
+ {
30
+ "$ref": "#/definitions/esri.rest-api.RendererJson.PointCloudStretchRendererJson"
31
+ },
32
+ {
33
+ "$ref": "#/definitions/esri.rest-api.RendererJson.PointCloudUniqueValueRendererJson"
34
+ },
35
+ {
36
+ "$ref": "#/definitions/esri.rest-api.RendererJson.PredominanceRendererJson"
37
+ },
38
+ {
39
+ "$ref": "#/definitions/esri.rest-api.RendererJson.SimpleRendererJson"
40
+ },
41
+ {
42
+ "$ref": "#/definitions/esri.rest-api.RendererJson.TemporalRendererJson"
43
+ },
44
+ {
45
+ "$ref": "#/definitions/esri.rest-api.RendererJson.UniqueValueFromStyleRendererJson"
46
+ },
47
+ {
48
+ "$ref": "#/definitions/esri.rest-api.RendererJson.UniqueValueRendererJson"
49
+ },
50
+ {
51
+ "$ref": "#/definitions/esri.rest-api.RendererJson.VectorFieldRendererJson"
52
+ },
53
+ {
54
+ "$ref": "esri.HeatmapRenderer"
55
+ },
56
+ {
57
+ "$ref": "esri.SimpleRenderer"
58
+ },
59
+ {
60
+ "$ref": "esri.ClassBreaksRenderer"
61
+ },
62
+ {
63
+ "$ref": "esri.UniqueValueRenderer"
64
+ },
65
+ {
66
+ "$ref": "esri.DotDensityRenderer"
67
+ },
68
+ {
69
+ "$ref": "esri.DictionaryRenderer"
70
+ },
71
+ {
72
+ "$ref": "esri.PieChartRenderer"
73
+ },
74
+ {
75
+ "items": {
76
+ "$ref": "#/definitions/RendererLike"
77
+ },
78
+ "type": "array"
79
+ }
80
+ ],
81
+ "description": "The renderers to use for the command/operation."
82
+ },
83
+ "symbols": {
84
+ "anyOf": [
85
+ {
86
+ "$ref": "#/definitions/esri.PictureFillSymbol"
87
+ },
88
+ {
89
+ "$ref": "#/definitions/esri.PictureMarkerSymbol"
90
+ },
91
+ {
92
+ "$ref": "#/definitions/esri.SimpleFillSymbol"
93
+ },
94
+ {
95
+ "$ref": "#/definitions/esri.SimpleLineSymbol"
96
+ },
97
+ {
98
+ "$ref": "#/definitions/esri.SimpleMarkerSymbol"
99
+ },
100
+ {
101
+ "$ref": "#/definitions/esri.TextSymbol"
102
+ },
103
+ {
104
+ "$ref": "#/definitions/esri.CIMSymbol"
105
+ },
106
+ {
107
+ "$ref": "#/definitions/esri.LineSymbol3D"
108
+ },
109
+ {
110
+ "$ref": "#/definitions/esri.PointSymbol3D"
111
+ },
112
+ {
113
+ "$ref": "#/definitions/esri.PolygonSymbol3D"
114
+ },
115
+ {
116
+ "$ref": "#/definitions/esri.rest-api.SymbolJson.CIMSymbolReferenceJson"
117
+ },
118
+ {
119
+ "$ref": "#/definitions/esri.rest-api.SymbolJson.PictureFillSymbolJson"
120
+ },
121
+ {
122
+ "$ref": "#/definitions/esri.rest-api.SymbolJson.PictureMarkerSymbolJson"
123
+ },
124
+ {
125
+ "$ref": "#/definitions/esri.rest-api.SymbolJson.SimpleFillSymbolJson"
126
+ },
127
+ {
128
+ "$ref": "#/definitions/esri.rest-api.SymbolJson.SimpleLineSymbolJson"
129
+ },
130
+ {
131
+ "$ref": "#/definitions/esri.rest-api.SymbolJson.SimpleMarkerSymbolJson"
132
+ },
133
+ {
134
+ "$ref": "#/definitions/esri.rest-api.SymbolJson.TextSymbolJson"
135
+ },
136
+ {
137
+ "$ref": "#/definitions/esri.rest-api.SymbolJson.LineSymbol3DJson"
138
+ },
139
+ {
140
+ "$ref": "#/definitions/esri.rest-api.SymbolJson.PointSymbol3DJson"
141
+ },
142
+ {
143
+ "$ref": "#/definitions/esri.rest-api.SymbolJson.PolygonSymbol3DJson"
144
+ },
145
+ {
146
+ "items": {
147
+ "$ref": "SymbolLike"
148
+ },
149
+ "type": "array"
150
+ }
151
+ ],
152
+ "description": "The symbols to use for the command/operation."
153
+ }
154
+ }
155
+ ```
156
+
157
+ ---
158
+ # command: layers.hide-labels
159
+ Description: Turns off the layer's labels on the map. Web only.
160
+
161
+ Inputs: `SetLabelVisibilityArgs`
162
+
163
+ SetLabelVisibilityArgs properties:
164
+ ```json
165
+ {
166
+ "layers": {
167
+ "description": "Layer(s) to use for the command/operation."
168
+ },
169
+ "maps": {
170
+ "description": "Map(s) to use for the command/operation."
171
+ }
172
+ }
173
+ ```
174
+
175
+ ---
176
+ # command: layers.reset-definition-expression
177
+ Description: Resets the definition expression of a layer to its initial state. If the `layer` argument is undefined or an empty array, all layers will be reset. Web only.
178
+
179
+ Inputs: `LayerSettingsArgs`
180
+
181
+ LayerSettingsArgs properties:
182
+ ```json
183
+ {
184
+ "definitionExpression": {
185
+ "description": "The definitionExpression of the layer.",
186
+ "type": "string"
187
+ },
188
+ "labelingInfo": {
189
+ "anyOf": [
190
+ {
191
+ "items": {
192
+ "$ref": "#/definitions/esri.rest-api.DrawingInfoJson.LabelingInfoJson"
193
+ },
194
+ "type": "array"
195
+ },
196
+ {
197
+ "items": {
198
+ "items": {
199
+ "$ref": "#/definitions/esri.rest-api.DrawingInfoJson.LabelingInfoJson"
200
+ },
201
+ "type": "array"
202
+ },
203
+ "type": "array"
204
+ }
205
+ ],
206
+ "description": "The labeling class of the layer."
207
+ },
208
+ "layers": {
209
+ "description": "Layer(s) to use for the command/operation."
210
+ },
211
+ "maps": {
212
+ "description": "Map(s) to use for the command/operation."
213
+ },
214
+ "popupTemplate": {
215
+ "anyOf": [
216
+ {
217
+ "$ref": "#/definitions/esri.rest-api.PopupInfoJson.PopupInfoJson"
218
+ },
219
+ {
220
+ "items": {
221
+ "$ref": "#/definitions/esri.rest-api.PopupInfoJson.PopupInfoJson"
222
+ },
223
+ "type": "array"
224
+ }
225
+ ],
226
+ "description": "Configuration for a popup template to be used by features in the layer."
227
+ },
228
+ "symbols": {
229
+ "anyOf": [
230
+ {
231
+ "$ref": "#/definitions/esri.PictureFillSymbol"
232
+ },
233
+ {
234
+ "$ref": "#/definitions/esri.PictureMarkerSymbol"
235
+ },
236
+ {
237
+ "$ref": "#/definitions/esri.SimpleFillSymbol"
238
+ },
239
+ {
240
+ "$ref": "#/definitions/esri.SimpleLineSymbol"
241
+ },
242
+ {
243
+ "$ref": "#/definitions/esri.SimpleMarkerSymbol"
244
+ },
245
+ {
246
+ "$ref": "#/definitions/esri.TextSymbol"
247
+ },
248
+ {
249
+ "$ref": "#/definitions/esri.CIMSymbol"
250
+ },
251
+ {
252
+ "$ref": "#/definitions/esri.LineSymbol3D"
253
+ },
254
+ {
255
+ "$ref": "#/definitions/esri.PointSymbol3D"
256
+ },
257
+ {
258
+ "$ref": "#/definitions/esri.PolygonSymbol3D"
259
+ },
260
+ {
261
+ "$ref": "#/definitions/esri.rest-api.SymbolJson.CIMSymbolReferenceJson"
262
+ },
263
+ {
264
+ "$ref": "#/definitions/esri.rest-api.SymbolJson.PictureFillSymbolJson"
265
+ },
266
+ {
267
+ "$ref": "#/definitions/esri.rest-api.SymbolJson.PictureMarkerSymbolJson"
268
+ },
269
+ {
270
+ "$ref": "#/definitions/esri.rest-api.SymbolJson.SimpleFillSymbolJson"
271
+ },
272
+ {
273
+ "$ref": "#/definitions/esri.rest-api.SymbolJson.SimpleLineSymbolJson"
274
+ },
275
+ {
276
+ "$ref": "#/definitions/esri.rest-api.SymbolJson.SimpleMarkerSymbolJson"
277
+ },
278
+ {
279
+ "$ref": "#/definitions/esri.rest-api.SymbolJson.TextSymbolJson"
280
+ },
281
+ {
282
+ "$ref": "#/definitions/esri.rest-api.SymbolJson.LineSymbol3DJson"
283
+ },
284
+ {
285
+ "$ref": "#/definitions/esri.rest-api.SymbolJson.PointSymbol3DJson"
286
+ },
287
+ {
288
+ "$ref": "#/definitions/esri.rest-api.SymbolJson.PolygonSymbol3DJson"
289
+ },
290
+ {
291
+ "items": {
292
+ "$ref": "SymbolLike"
293
+ },
294
+ "type": "array"
295
+ }
296
+ ],
297
+ "description": "The symbols to use for the command/operation."
298
+ },
299
+ "taskSettings": {
300
+ "anyOf": [
301
+ {
302
+ "$ref": "#/definitions/@vertigis.arcgis-extensions.data.TaskSettings.TaskSettingsProperties"
303
+ },
304
+ {
305
+ "items": {
306
+ "$ref": "#/definitions/@vertigis.arcgis-extensions.data.TaskSettings.TaskSettingsProperties"
307
+ },
308
+ "type": "array"
309
+ }
310
+ ],
311
+ "description": "Settings relevant to layer tasks."
312
+ },
313
+ "title": {
314
+ "anyOf": [
315
+ {
316
+ "items": {
317
+ "type": "string"
318
+ },
319
+ "type": "array"
320
+ },
321
+ {
322
+ "type": "string"
323
+ }
324
+ ],
325
+ "description": "The title of the layer."
326
+ }
327
+ }
328
+ ```
329
+
330
+ ---
331
+ # command: layers.reset-symbol
332
+ Description: Resets the symbol of a layer to its initial state. If the `layer` argument is undefined or an empty array, all layers will be reset. Web only.
333
+
334
+ Inputs: `LayerSettingsArgs`
335
+
336
+ LayerSettingsArgs properties:
337
+ ```json
338
+ {
339
+ "definitionExpression": {
340
+ "description": "The definitionExpression of the layer.",
341
+ "type": "string"
342
+ },
343
+ "labelingInfo": {
344
+ "anyOf": [
345
+ {
346
+ "items": {
347
+ "$ref": "#/definitions/esri.rest-api.DrawingInfoJson.LabelingInfoJson"
348
+ },
349
+ "type": "array"
350
+ },
351
+ {
352
+ "items": {
353
+ "items": {
354
+ "$ref": "#/definitions/esri.rest-api.DrawingInfoJson.LabelingInfoJson"
355
+ },
356
+ "type": "array"
357
+ },
358
+ "type": "array"
359
+ }
360
+ ],
361
+ "description": "The labeling class of the layer."
362
+ },
363
+ "layers": {
364
+ "description": "Layer(s) to use for the command/operation."
365
+ },
366
+ "maps": {
367
+ "description": "Map(s) to use for the command/operation."
368
+ },
369
+ "popupTemplate": {
370
+ "anyOf": [
371
+ {
372
+ "$ref": "#/definitions/esri.rest-api.PopupInfoJson.PopupInfoJson"
373
+ },
374
+ {
375
+ "items": {
376
+ "$ref": "#/definitions/esri.rest-api.PopupInfoJson.PopupInfoJson"
377
+ },
378
+ "type": "array"
379
+ }
380
+ ],
381
+ "description": "Configuration for a popup template to be used by features in the layer."
382
+ },
383
+ "symbols": {
384
+ "anyOf": [
385
+ {
386
+ "$ref": "#/definitions/esri.PictureFillSymbol"
387
+ },
388
+ {
389
+ "$ref": "#/definitions/esri.PictureMarkerSymbol"
390
+ },
391
+ {
392
+ "$ref": "#/definitions/esri.SimpleFillSymbol"
393
+ },
394
+ {
395
+ "$ref": "#/definitions/esri.SimpleLineSymbol"
396
+ },
397
+ {
398
+ "$ref": "#/definitions/esri.SimpleMarkerSymbol"
399
+ },
400
+ {
401
+ "$ref": "#/definitions/esri.TextSymbol"
402
+ },
403
+ {
404
+ "$ref": "#/definitions/esri.CIMSymbol"
405
+ },
406
+ {
407
+ "$ref": "#/definitions/esri.LineSymbol3D"
408
+ },
409
+ {
410
+ "$ref": "#/definitions/esri.PointSymbol3D"
411
+ },
412
+ {
413
+ "$ref": "#/definitions/esri.PolygonSymbol3D"
414
+ },
415
+ {
416
+ "$ref": "#/definitions/esri.rest-api.SymbolJson.CIMSymbolReferenceJson"
417
+ },
418
+ {
419
+ "$ref": "#/definitions/esri.rest-api.SymbolJson.PictureFillSymbolJson"
420
+ },
421
+ {
422
+ "$ref": "#/definitions/esri.rest-api.SymbolJson.PictureMarkerSymbolJson"
423
+ },
424
+ {
425
+ "$ref": "#/definitions/esri.rest-api.SymbolJson.SimpleFillSymbolJson"
426
+ },
427
+ {
428
+ "$ref": "#/definitions/esri.rest-api.SymbolJson.SimpleLineSymbolJson"
429
+ },
430
+ {
431
+ "$ref": "#/definitions/esri.rest-api.SymbolJson.SimpleMarkerSymbolJson"
432
+ },
433
+ {
434
+ "$ref": "#/definitions/esri.rest-api.SymbolJson.TextSymbolJson"
435
+ },
436
+ {
437
+ "$ref": "#/definitions/esri.rest-api.SymbolJson.LineSymbol3DJson"
438
+ },
439
+ {
440
+ "$ref": "#/definitions/esri.rest-api.SymbolJson.PointSymbol3DJson"
441
+ },
442
+ {
443
+ "$ref": "#/definitions/esri.rest-api.SymbolJson.PolygonSymbol3DJson"
444
+ },
445
+ {
446
+ "items": {
447
+ "$ref": "SymbolLike"
448
+ },
449
+ "type": "array"
450
+ }
451
+ ],
452
+ "description": "The symbols to use for the command/operation."
453
+ },
454
+ "taskSettings": {
455
+ "anyOf": [
456
+ {
457
+ "$ref": "#/definitions/@vertigis.arcgis-extensions.data.TaskSettings.TaskSettingsProperties"
458
+ },
459
+ {
460
+ "items": {
461
+ "$ref": "#/definitions/@vertigis.arcgis-extensions.data.TaskSettings.TaskSettingsProperties"
462
+ },
463
+ "type": "array"
464
+ }
465
+ ],
466
+ "description": "Settings relevant to layer tasks."
467
+ },
468
+ "title": {
469
+ "anyOf": [
470
+ {
471
+ "items": {
472
+ "type": "string"
473
+ },
474
+ "type": "array"
475
+ },
476
+ {
477
+ "type": "string"
478
+ }
479
+ ],
480
+ "description": "The title of the layer."
481
+ }
482
+ }
483
+ ```
484
+
485
+ ---
486
+ # command: layers.set-definition-expression
487
+ Description: Sets a definition expression on a layer to filter its features. Web only.
488
+
489
+ Inputs: `LayerSettingsArgs`
490
+
491
+ LayerSettingsArgs properties:
492
+ ```json
493
+ {
494
+ "definitionExpression": {
495
+ "description": "The definitionExpression of the layer.",
496
+ "type": "string"
497
+ },
498
+ "labelingInfo": {
499
+ "anyOf": [
500
+ {
501
+ "items": {
502
+ "$ref": "#/definitions/esri.rest-api.DrawingInfoJson.LabelingInfoJson"
503
+ },
504
+ "type": "array"
505
+ },
506
+ {
507
+ "items": {
508
+ "items": {
509
+ "$ref": "#/definitions/esri.rest-api.DrawingInfoJson.LabelingInfoJson"
510
+ },
511
+ "type": "array"
512
+ },
513
+ "type": "array"
514
+ }
515
+ ],
516
+ "description": "The labeling class of the layer."
517
+ },
518
+ "layers": {
519
+ "description": "Layer(s) to use for the command/operation."
520
+ },
521
+ "maps": {
522
+ "description": "Map(s) to use for the command/operation."
523
+ },
524
+ "popupTemplate": {
525
+ "anyOf": [
526
+ {
527
+ "$ref": "#/definitions/esri.rest-api.PopupInfoJson.PopupInfoJson"
528
+ },
529
+ {
530
+ "items": {
531
+ "$ref": "#/definitions/esri.rest-api.PopupInfoJson.PopupInfoJson"
532
+ },
533
+ "type": "array"
534
+ }
535
+ ],
536
+ "description": "Configuration for a popup template to be used by features in the layer."
537
+ },
538
+ "symbols": {
539
+ "anyOf": [
540
+ {
541
+ "$ref": "#/definitions/esri.PictureFillSymbol"
542
+ },
543
+ {
544
+ "$ref": "#/definitions/esri.PictureMarkerSymbol"
545
+ },
546
+ {
547
+ "$ref": "#/definitions/esri.SimpleFillSymbol"
548
+ },
549
+ {
550
+ "$ref": "#/definitions/esri.SimpleLineSymbol"
551
+ },
552
+ {
553
+ "$ref": "#/definitions/esri.SimpleMarkerSymbol"
554
+ },
555
+ {
556
+ "$ref": "#/definitions/esri.TextSymbol"
557
+ },
558
+ {
559
+ "$ref": "#/definitions/esri.CIMSymbol"
560
+ },
561
+ {
562
+ "$ref": "#/definitions/esri.LineSymbol3D"
563
+ },
564
+ {
565
+ "$ref": "#/definitions/esri.PointSymbol3D"
566
+ },
567
+ {
568
+ "$ref": "#/definitions/esri.PolygonSymbol3D"
569
+ },
570
+ {
571
+ "$ref": "#/definitions/esri.rest-api.SymbolJson.CIMSymbolReferenceJson"
572
+ },
573
+ {
574
+ "$ref": "#/definitions/esri.rest-api.SymbolJson.PictureFillSymbolJson"
575
+ },
576
+ {
577
+ "$ref": "#/definitions/esri.rest-api.SymbolJson.PictureMarkerSymbolJson"
578
+ },
579
+ {
580
+ "$ref": "#/definitions/esri.rest-api.SymbolJson.SimpleFillSymbolJson"
581
+ },
582
+ {
583
+ "$ref": "#/definitions/esri.rest-api.SymbolJson.SimpleLineSymbolJson"
584
+ },
585
+ {
586
+ "$ref": "#/definitions/esri.rest-api.SymbolJson.SimpleMarkerSymbolJson"
587
+ },
588
+ {
589
+ "$ref": "#/definitions/esri.rest-api.SymbolJson.TextSymbolJson"
590
+ },
591
+ {
592
+ "$ref": "#/definitions/esri.rest-api.SymbolJson.LineSymbol3DJson"
593
+ },
594
+ {
595
+ "$ref": "#/definitions/esri.rest-api.SymbolJson.PointSymbol3DJson"
596
+ },
597
+ {
598
+ "$ref": "#/definitions/esri.rest-api.SymbolJson.PolygonSymbol3DJson"
599
+ },
600
+ {
601
+ "items": {
602
+ "$ref": "SymbolLike"
603
+ },
604
+ "type": "array"
605
+ }
606
+ ],
607
+ "description": "The symbols to use for the command/operation."
608
+ },
609
+ "taskSettings": {
610
+ "anyOf": [
611
+ {
612
+ "$ref": "#/definitions/@vertigis.arcgis-extensions.data.TaskSettings.TaskSettingsProperties"
613
+ },
614
+ {
615
+ "items": {
616
+ "$ref": "#/definitions/@vertigis.arcgis-extensions.data.TaskSettings.TaskSettingsProperties"
617
+ },
618
+ "type": "array"
619
+ }
620
+ ],
621
+ "description": "Settings relevant to layer tasks."
622
+ },
623
+ "title": {
624
+ "anyOf": [
625
+ {
626
+ "items": {
627
+ "type": "string"
628
+ },
629
+ "type": "array"
630
+ },
631
+ {
632
+ "type": "string"
633
+ }
634
+ ],
635
+ "description": "The title of the layer."
636
+ }
637
+ }
638
+ ```
639
+
640
+ ---
641
+ # command: layers.set-label-classes
642
+ Description: Updates the label classes of the provided layer(s). Web only.
643
+
644
+ Inputs: `LayerSettingsArgs`
645
+
646
+ LayerSettingsArgs properties:
647
+ ```json
648
+ {
649
+ "definitionExpression": {
650
+ "description": "The definitionExpression of the layer.",
651
+ "type": "string"
652
+ },
653
+ "labelingInfo": {
654
+ "anyOf": [
655
+ {
656
+ "items": {
657
+ "$ref": "#/definitions/esri.rest-api.DrawingInfoJson.LabelingInfoJson"
658
+ },
659
+ "type": "array"
660
+ },
661
+ {
662
+ "items": {
663
+ "items": {
664
+ "$ref": "#/definitions/esri.rest-api.DrawingInfoJson.LabelingInfoJson"
665
+ },
666
+ "type": "array"
667
+ },
668
+ "type": "array"
669
+ }
670
+ ],
671
+ "description": "The labeling class of the layer."
672
+ },
673
+ "layers": {
674
+ "description": "Layer(s) to use for the command/operation."
675
+ },
676
+ "maps": {
677
+ "description": "Map(s) to use for the command/operation."
678
+ },
679
+ "popupTemplate": {
680
+ "anyOf": [
681
+ {
682
+ "$ref": "#/definitions/esri.rest-api.PopupInfoJson.PopupInfoJson"
683
+ },
684
+ {
685
+ "items": {
686
+ "$ref": "#/definitions/esri.rest-api.PopupInfoJson.PopupInfoJson"
687
+ },
688
+ "type": "array"
689
+ }
690
+ ],
691
+ "description": "Configuration for a popup template to be used by features in the layer."
692
+ },
693
+ "symbols": {
694
+ "anyOf": [
695
+ {
696
+ "$ref": "#/definitions/esri.PictureFillSymbol"
697
+ },
698
+ {
699
+ "$ref": "#/definitions/esri.PictureMarkerSymbol"
700
+ },
701
+ {
702
+ "$ref": "#/definitions/esri.SimpleFillSymbol"
703
+ },
704
+ {
705
+ "$ref": "#/definitions/esri.SimpleLineSymbol"
706
+ },
707
+ {
708
+ "$ref": "#/definitions/esri.SimpleMarkerSymbol"
709
+ },
710
+ {
711
+ "$ref": "#/definitions/esri.TextSymbol"
712
+ },
713
+ {
714
+ "$ref": "#/definitions/esri.CIMSymbol"
715
+ },
716
+ {
717
+ "$ref": "#/definitions/esri.LineSymbol3D"
718
+ },
719
+ {
720
+ "$ref": "#/definitions/esri.PointSymbol3D"
721
+ },
722
+ {
723
+ "$ref": "#/definitions/esri.PolygonSymbol3D"
724
+ },
725
+ {
726
+ "$ref": "#/definitions/esri.rest-api.SymbolJson.CIMSymbolReferenceJson"
727
+ },
728
+ {
729
+ "$ref": "#/definitions/esri.rest-api.SymbolJson.PictureFillSymbolJson"
730
+ },
731
+ {
732
+ "$ref": "#/definitions/esri.rest-api.SymbolJson.PictureMarkerSymbolJson"
733
+ },
734
+ {
735
+ "$ref": "#/definitions/esri.rest-api.SymbolJson.SimpleFillSymbolJson"
736
+ },
737
+ {
738
+ "$ref": "#/definitions/esri.rest-api.SymbolJson.SimpleLineSymbolJson"
739
+ },
740
+ {
741
+ "$ref": "#/definitions/esri.rest-api.SymbolJson.SimpleMarkerSymbolJson"
742
+ },
743
+ {
744
+ "$ref": "#/definitions/esri.rest-api.SymbolJson.TextSymbolJson"
745
+ },
746
+ {
747
+ "$ref": "#/definitions/esri.rest-api.SymbolJson.LineSymbol3DJson"
748
+ },
749
+ {
750
+ "$ref": "#/definitions/esri.rest-api.SymbolJson.PointSymbol3DJson"
751
+ },
752
+ {
753
+ "$ref": "#/definitions/esri.rest-api.SymbolJson.PolygonSymbol3DJson"
754
+ },
755
+ {
756
+ "items": {
757
+ "$ref": "SymbolLike"
758
+ },
759
+ "type": "array"
760
+ }
761
+ ],
762
+ "description": "The symbols to use for the command/operation."
763
+ },
764
+ "taskSettings": {
765
+ "anyOf": [
766
+ {
767
+ "$ref": "#/definitions/@vertigis.arcgis-extensions.data.TaskSettings.TaskSettingsProperties"
768
+ },
769
+ {
770
+ "items": {
771
+ "$ref": "#/definitions/@vertigis.arcgis-extensions.data.TaskSettings.TaskSettingsProperties"
772
+ },
773
+ "type": "array"
774
+ }
775
+ ],
776
+ "description": "Settings relevant to layer tasks."
777
+ },
778
+ "title": {
779
+ "anyOf": [
780
+ {
781
+ "items": {
782
+ "type": "string"
783
+ },
784
+ "type": "array"
785
+ },
786
+ {
787
+ "type": "string"
788
+ }
789
+ ],
790
+ "description": "The title of the layer."
791
+ }
792
+ }
793
+ ```
794
+
795
+ ---
796
+ # command: layers.set-popup-template
797
+ Description: Updates the provided layer(s) with new popup template configuration. Web only.
798
+
799
+ Inputs: `LayerSettingsArgs`
800
+
801
+ LayerSettingsArgs properties:
802
+ ```json
803
+ {
804
+ "definitionExpression": {
805
+ "description": "The definitionExpression of the layer.",
806
+ "type": "string"
807
+ },
808
+ "labelingInfo": {
809
+ "anyOf": [
810
+ {
811
+ "items": {
812
+ "$ref": "#/definitions/esri.rest-api.DrawingInfoJson.LabelingInfoJson"
813
+ },
814
+ "type": "array"
815
+ },
816
+ {
817
+ "items": {
818
+ "items": {
819
+ "$ref": "#/definitions/esri.rest-api.DrawingInfoJson.LabelingInfoJson"
820
+ },
821
+ "type": "array"
822
+ },
823
+ "type": "array"
824
+ }
825
+ ],
826
+ "description": "The labeling class of the layer."
827
+ },
828
+ "layers": {
829
+ "description": "Layer(s) to use for the command/operation."
830
+ },
831
+ "maps": {
832
+ "description": "Map(s) to use for the command/operation."
833
+ },
834
+ "popupTemplate": {
835
+ "anyOf": [
836
+ {
837
+ "$ref": "#/definitions/esri.rest-api.PopupInfoJson.PopupInfoJson"
838
+ },
839
+ {
840
+ "items": {
841
+ "$ref": "#/definitions/esri.rest-api.PopupInfoJson.PopupInfoJson"
842
+ },
843
+ "type": "array"
844
+ }
845
+ ],
846
+ "description": "Configuration for a popup template to be used by features in the layer."
847
+ },
848
+ "symbols": {
849
+ "anyOf": [
850
+ {
851
+ "$ref": "#/definitions/esri.PictureFillSymbol"
852
+ },
853
+ {
854
+ "$ref": "#/definitions/esri.PictureMarkerSymbol"
855
+ },
856
+ {
857
+ "$ref": "#/definitions/esri.SimpleFillSymbol"
858
+ },
859
+ {
860
+ "$ref": "#/definitions/esri.SimpleLineSymbol"
861
+ },
862
+ {
863
+ "$ref": "#/definitions/esri.SimpleMarkerSymbol"
864
+ },
865
+ {
866
+ "$ref": "#/definitions/esri.TextSymbol"
867
+ },
868
+ {
869
+ "$ref": "#/definitions/esri.CIMSymbol"
870
+ },
871
+ {
872
+ "$ref": "#/definitions/esri.LineSymbol3D"
873
+ },
874
+ {
875
+ "$ref": "#/definitions/esri.PointSymbol3D"
876
+ },
877
+ {
878
+ "$ref": "#/definitions/esri.PolygonSymbol3D"
879
+ },
880
+ {
881
+ "$ref": "#/definitions/esri.rest-api.SymbolJson.CIMSymbolReferenceJson"
882
+ },
883
+ {
884
+ "$ref": "#/definitions/esri.rest-api.SymbolJson.PictureFillSymbolJson"
885
+ },
886
+ {
887
+ "$ref": "#/definitions/esri.rest-api.SymbolJson.PictureMarkerSymbolJson"
888
+ },
889
+ {
890
+ "$ref": "#/definitions/esri.rest-api.SymbolJson.SimpleFillSymbolJson"
891
+ },
892
+ {
893
+ "$ref": "#/definitions/esri.rest-api.SymbolJson.SimpleLineSymbolJson"
894
+ },
895
+ {
896
+ "$ref": "#/definitions/esri.rest-api.SymbolJson.SimpleMarkerSymbolJson"
897
+ },
898
+ {
899
+ "$ref": "#/definitions/esri.rest-api.SymbolJson.TextSymbolJson"
900
+ },
901
+ {
902
+ "$ref": "#/definitions/esri.rest-api.SymbolJson.LineSymbol3DJson"
903
+ },
904
+ {
905
+ "$ref": "#/definitions/esri.rest-api.SymbolJson.PointSymbol3DJson"
906
+ },
907
+ {
908
+ "$ref": "#/definitions/esri.rest-api.SymbolJson.PolygonSymbol3DJson"
909
+ },
910
+ {
911
+ "items": {
912
+ "$ref": "SymbolLike"
913
+ },
914
+ "type": "array"
915
+ }
916
+ ],
917
+ "description": "The symbols to use for the command/operation."
918
+ },
919
+ "taskSettings": {
920
+ "anyOf": [
921
+ {
922
+ "$ref": "#/definitions/@vertigis.arcgis-extensions.data.TaskSettings.TaskSettingsProperties"
923
+ },
924
+ {
925
+ "items": {
926
+ "$ref": "#/definitions/@vertigis.arcgis-extensions.data.TaskSettings.TaskSettingsProperties"
927
+ },
928
+ "type": "array"
929
+ }
930
+ ],
931
+ "description": "Settings relevant to layer tasks."
932
+ },
933
+ "title": {
934
+ "anyOf": [
935
+ {
936
+ "items": {
937
+ "type": "string"
938
+ },
939
+ "type": "array"
940
+ },
941
+ {
942
+ "type": "string"
943
+ }
944
+ ],
945
+ "description": "The title of the layer."
946
+ }
947
+ }
948
+ ```
949
+
950
+ ---
951
+ # command: layers.set-symbol
952
+ Description: Updates the symbol for the provided layer(s). Web only.
953
+
954
+ Inputs: `SetSymbolArgs`
955
+
956
+ SetSymbolArgs properties:
957
+ ```json
958
+ {
959
+ "layers": {
960
+ "description": "Layer(s) to use for the command/operation."
961
+ },
962
+ "maps": {
963
+ "description": "Map(s) to use for the command/operation."
964
+ },
965
+ "renderers": {
966
+ "anyOf": [
967
+ {
968
+ "$ref": "#/definitions/esri.rest-api.RendererJson.ClassBreaksRendererJson"
969
+ },
970
+ {
971
+ "$ref": "#/definitions/esri.rest-api.RendererJson.HeatmapRendererJson"
972
+ },
973
+ {
974
+ "$ref": "#/definitions/esri.rest-api.RendererJson.PointCloudClassBreaksRendererJson"
975
+ },
976
+ {
977
+ "$ref": "#/definitions/esri.rest-api.RendererJson.PointCloudRGBRendererJson"
978
+ },
979
+ {
980
+ "$ref": "#/definitions/esri.rest-api.RendererJson.PointCloudStretchRendererJson"
981
+ },
982
+ {
983
+ "$ref": "#/definitions/esri.rest-api.RendererJson.PointCloudUniqueValueRendererJson"
984
+ },
985
+ {
986
+ "$ref": "#/definitions/esri.rest-api.RendererJson.PredominanceRendererJson"
987
+ },
988
+ {
989
+ "$ref": "#/definitions/esri.rest-api.RendererJson.SimpleRendererJson"
990
+ },
991
+ {
992
+ "$ref": "#/definitions/esri.rest-api.RendererJson.TemporalRendererJson"
993
+ },
994
+ {
995
+ "$ref": "#/definitions/esri.rest-api.RendererJson.UniqueValueFromStyleRendererJson"
996
+ },
997
+ {
998
+ "$ref": "#/definitions/esri.rest-api.RendererJson.UniqueValueRendererJson"
999
+ },
1000
+ {
1001
+ "$ref": "#/definitions/esri.rest-api.RendererJson.VectorFieldRendererJson"
1002
+ },
1003
+ {
1004
+ "$ref": "esri.HeatmapRenderer"
1005
+ },
1006
+ {
1007
+ "$ref": "esri.SimpleRenderer"
1008
+ },
1009
+ {
1010
+ "$ref": "esri.ClassBreaksRenderer"
1011
+ },
1012
+ {
1013
+ "$ref": "esri.UniqueValueRenderer"
1014
+ },
1015
+ {
1016
+ "$ref": "esri.DotDensityRenderer"
1017
+ },
1018
+ {
1019
+ "$ref": "esri.DictionaryRenderer"
1020
+ },
1021
+ {
1022
+ "$ref": "esri.PieChartRenderer"
1023
+ },
1024
+ {
1025
+ "items": {
1026
+ "$ref": "#/definitions/RendererLike"
1027
+ },
1028
+ "type": "array"
1029
+ }
1030
+ ],
1031
+ "description": "The renderers to use for the command/operation."
1032
+ },
1033
+ "symbols": {
1034
+ "anyOf": [
1035
+ {
1036
+ "$ref": "#/definitions/esri.PictureFillSymbol"
1037
+ },
1038
+ {
1039
+ "$ref": "#/definitions/esri.PictureMarkerSymbol"
1040
+ },
1041
+ {
1042
+ "$ref": "#/definitions/esri.SimpleFillSymbol"
1043
+ },
1044
+ {
1045
+ "$ref": "#/definitions/esri.SimpleLineSymbol"
1046
+ },
1047
+ {
1048
+ "$ref": "#/definitions/esri.SimpleMarkerSymbol"
1049
+ },
1050
+ {
1051
+ "$ref": "#/definitions/esri.TextSymbol"
1052
+ },
1053
+ {
1054
+ "$ref": "#/definitions/esri.CIMSymbol"
1055
+ },
1056
+ {
1057
+ "$ref": "#/definitions/esri.LineSymbol3D"
1058
+ },
1059
+ {
1060
+ "$ref": "#/definitions/esri.PointSymbol3D"
1061
+ },
1062
+ {
1063
+ "$ref": "#/definitions/esri.PolygonSymbol3D"
1064
+ },
1065
+ {
1066
+ "$ref": "#/definitions/esri.rest-api.SymbolJson.CIMSymbolReferenceJson"
1067
+ },
1068
+ {
1069
+ "$ref": "#/definitions/esri.rest-api.SymbolJson.PictureFillSymbolJson"
1070
+ },
1071
+ {
1072
+ "$ref": "#/definitions/esri.rest-api.SymbolJson.PictureMarkerSymbolJson"
1073
+ },
1074
+ {
1075
+ "$ref": "#/definitions/esri.rest-api.SymbolJson.SimpleFillSymbolJson"
1076
+ },
1077
+ {
1078
+ "$ref": "#/definitions/esri.rest-api.SymbolJson.SimpleLineSymbolJson"
1079
+ },
1080
+ {
1081
+ "$ref": "#/definitions/esri.rest-api.SymbolJson.SimpleMarkerSymbolJson"
1082
+ },
1083
+ {
1084
+ "$ref": "#/definitions/esri.rest-api.SymbolJson.TextSymbolJson"
1085
+ },
1086
+ {
1087
+ "$ref": "#/definitions/esri.rest-api.SymbolJson.LineSymbol3DJson"
1088
+ },
1089
+ {
1090
+ "$ref": "#/definitions/esri.rest-api.SymbolJson.PointSymbol3DJson"
1091
+ },
1092
+ {
1093
+ "$ref": "#/definitions/esri.rest-api.SymbolJson.PolygonSymbol3DJson"
1094
+ },
1095
+ {
1096
+ "items": {
1097
+ "$ref": "SymbolLike"
1098
+ },
1099
+ "type": "array"
1100
+ }
1101
+ ],
1102
+ "description": "The symbols to use for the command/operation."
1103
+ }
1104
+ }
1105
+ ```
1106
+
1107
+ ---
1108
+ # command: layers.set-task-settings
1109
+ Description: Updates the provided layer(s) with new task settings. Web only.
1110
+
1111
+ Inputs: `LayerSettingsArgs`
1112
+
1113
+ LayerSettingsArgs properties:
1114
+ ```json
1115
+ {
1116
+ "definitionExpression": {
1117
+ "description": "The definitionExpression of the layer.",
1118
+ "type": "string"
1119
+ },
1120
+ "labelingInfo": {
1121
+ "anyOf": [
1122
+ {
1123
+ "items": {
1124
+ "$ref": "#/definitions/esri.rest-api.DrawingInfoJson.LabelingInfoJson"
1125
+ },
1126
+ "type": "array"
1127
+ },
1128
+ {
1129
+ "items": {
1130
+ "items": {
1131
+ "$ref": "#/definitions/esri.rest-api.DrawingInfoJson.LabelingInfoJson"
1132
+ },
1133
+ "type": "array"
1134
+ },
1135
+ "type": "array"
1136
+ }
1137
+ ],
1138
+ "description": "The labeling class of the layer."
1139
+ },
1140
+ "layers": {
1141
+ "description": "Layer(s) to use for the command/operation."
1142
+ },
1143
+ "maps": {
1144
+ "description": "Map(s) to use for the command/operation."
1145
+ },
1146
+ "popupTemplate": {
1147
+ "anyOf": [
1148
+ {
1149
+ "$ref": "#/definitions/esri.rest-api.PopupInfoJson.PopupInfoJson"
1150
+ },
1151
+ {
1152
+ "items": {
1153
+ "$ref": "#/definitions/esri.rest-api.PopupInfoJson.PopupInfoJson"
1154
+ },
1155
+ "type": "array"
1156
+ }
1157
+ ],
1158
+ "description": "Configuration for a popup template to be used by features in the layer."
1159
+ },
1160
+ "symbols": {
1161
+ "anyOf": [
1162
+ {
1163
+ "$ref": "#/definitions/esri.PictureFillSymbol"
1164
+ },
1165
+ {
1166
+ "$ref": "#/definitions/esri.PictureMarkerSymbol"
1167
+ },
1168
+ {
1169
+ "$ref": "#/definitions/esri.SimpleFillSymbol"
1170
+ },
1171
+ {
1172
+ "$ref": "#/definitions/esri.SimpleLineSymbol"
1173
+ },
1174
+ {
1175
+ "$ref": "#/definitions/esri.SimpleMarkerSymbol"
1176
+ },
1177
+ {
1178
+ "$ref": "#/definitions/esri.TextSymbol"
1179
+ },
1180
+ {
1181
+ "$ref": "#/definitions/esri.CIMSymbol"
1182
+ },
1183
+ {
1184
+ "$ref": "#/definitions/esri.LineSymbol3D"
1185
+ },
1186
+ {
1187
+ "$ref": "#/definitions/esri.PointSymbol3D"
1188
+ },
1189
+ {
1190
+ "$ref": "#/definitions/esri.PolygonSymbol3D"
1191
+ },
1192
+ {
1193
+ "$ref": "#/definitions/esri.rest-api.SymbolJson.CIMSymbolReferenceJson"
1194
+ },
1195
+ {
1196
+ "$ref": "#/definitions/esri.rest-api.SymbolJson.PictureFillSymbolJson"
1197
+ },
1198
+ {
1199
+ "$ref": "#/definitions/esri.rest-api.SymbolJson.PictureMarkerSymbolJson"
1200
+ },
1201
+ {
1202
+ "$ref": "#/definitions/esri.rest-api.SymbolJson.SimpleFillSymbolJson"
1203
+ },
1204
+ {
1205
+ "$ref": "#/definitions/esri.rest-api.SymbolJson.SimpleLineSymbolJson"
1206
+ },
1207
+ {
1208
+ "$ref": "#/definitions/esri.rest-api.SymbolJson.SimpleMarkerSymbolJson"
1209
+ },
1210
+ {
1211
+ "$ref": "#/definitions/esri.rest-api.SymbolJson.TextSymbolJson"
1212
+ },
1213
+ {
1214
+ "$ref": "#/definitions/esri.rest-api.SymbolJson.LineSymbol3DJson"
1215
+ },
1216
+ {
1217
+ "$ref": "#/definitions/esri.rest-api.SymbolJson.PointSymbol3DJson"
1218
+ },
1219
+ {
1220
+ "$ref": "#/definitions/esri.rest-api.SymbolJson.PolygonSymbol3DJson"
1221
+ },
1222
+ {
1223
+ "items": {
1224
+ "$ref": "SymbolLike"
1225
+ },
1226
+ "type": "array"
1227
+ }
1228
+ ],
1229
+ "description": "The symbols to use for the command/operation."
1230
+ },
1231
+ "taskSettings": {
1232
+ "anyOf": [
1233
+ {
1234
+ "$ref": "#/definitions/@vertigis.arcgis-extensions.data.TaskSettings.TaskSettingsProperties"
1235
+ },
1236
+ {
1237
+ "items": {
1238
+ "$ref": "#/definitions/@vertigis.arcgis-extensions.data.TaskSettings.TaskSettingsProperties"
1239
+ },
1240
+ "type": "array"
1241
+ }
1242
+ ],
1243
+ "description": "Settings relevant to layer tasks."
1244
+ },
1245
+ "title": {
1246
+ "anyOf": [
1247
+ {
1248
+ "items": {
1249
+ "type": "string"
1250
+ },
1251
+ "type": "array"
1252
+ },
1253
+ {
1254
+ "type": "string"
1255
+ }
1256
+ ],
1257
+ "description": "The title of the layer."
1258
+ }
1259
+ }
1260
+ ```
1261
+
1262
+ ---
1263
+ # command: layers.set-title
1264
+ Description: Changes the title of the provided layer(s). Web only.
1265
+
1266
+ Inputs: `LayerSettingsArgs`
1267
+
1268
+ LayerSettingsArgs properties:
1269
+ ```json
1270
+ {
1271
+ "definitionExpression": {
1272
+ "description": "The definitionExpression of the layer.",
1273
+ "type": "string"
1274
+ },
1275
+ "labelingInfo": {
1276
+ "anyOf": [
1277
+ {
1278
+ "items": {
1279
+ "$ref": "#/definitions/esri.rest-api.DrawingInfoJson.LabelingInfoJson"
1280
+ },
1281
+ "type": "array"
1282
+ },
1283
+ {
1284
+ "items": {
1285
+ "items": {
1286
+ "$ref": "#/definitions/esri.rest-api.DrawingInfoJson.LabelingInfoJson"
1287
+ },
1288
+ "type": "array"
1289
+ },
1290
+ "type": "array"
1291
+ }
1292
+ ],
1293
+ "description": "The labeling class of the layer."
1294
+ },
1295
+ "layers": {
1296
+ "description": "Layer(s) to use for the command/operation."
1297
+ },
1298
+ "maps": {
1299
+ "description": "Map(s) to use for the command/operation."
1300
+ },
1301
+ "popupTemplate": {
1302
+ "anyOf": [
1303
+ {
1304
+ "$ref": "#/definitions/esri.rest-api.PopupInfoJson.PopupInfoJson"
1305
+ },
1306
+ {
1307
+ "items": {
1308
+ "$ref": "#/definitions/esri.rest-api.PopupInfoJson.PopupInfoJson"
1309
+ },
1310
+ "type": "array"
1311
+ }
1312
+ ],
1313
+ "description": "Configuration for a popup template to be used by features in the layer."
1314
+ },
1315
+ "symbols": {
1316
+ "anyOf": [
1317
+ {
1318
+ "$ref": "#/definitions/esri.PictureFillSymbol"
1319
+ },
1320
+ {
1321
+ "$ref": "#/definitions/esri.PictureMarkerSymbol"
1322
+ },
1323
+ {
1324
+ "$ref": "#/definitions/esri.SimpleFillSymbol"
1325
+ },
1326
+ {
1327
+ "$ref": "#/definitions/esri.SimpleLineSymbol"
1328
+ },
1329
+ {
1330
+ "$ref": "#/definitions/esri.SimpleMarkerSymbol"
1331
+ },
1332
+ {
1333
+ "$ref": "#/definitions/esri.TextSymbol"
1334
+ },
1335
+ {
1336
+ "$ref": "#/definitions/esri.CIMSymbol"
1337
+ },
1338
+ {
1339
+ "$ref": "#/definitions/esri.LineSymbol3D"
1340
+ },
1341
+ {
1342
+ "$ref": "#/definitions/esri.PointSymbol3D"
1343
+ },
1344
+ {
1345
+ "$ref": "#/definitions/esri.PolygonSymbol3D"
1346
+ },
1347
+ {
1348
+ "$ref": "#/definitions/esri.rest-api.SymbolJson.CIMSymbolReferenceJson"
1349
+ },
1350
+ {
1351
+ "$ref": "#/definitions/esri.rest-api.SymbolJson.PictureFillSymbolJson"
1352
+ },
1353
+ {
1354
+ "$ref": "#/definitions/esri.rest-api.SymbolJson.PictureMarkerSymbolJson"
1355
+ },
1356
+ {
1357
+ "$ref": "#/definitions/esri.rest-api.SymbolJson.SimpleFillSymbolJson"
1358
+ },
1359
+ {
1360
+ "$ref": "#/definitions/esri.rest-api.SymbolJson.SimpleLineSymbolJson"
1361
+ },
1362
+ {
1363
+ "$ref": "#/definitions/esri.rest-api.SymbolJson.SimpleMarkerSymbolJson"
1364
+ },
1365
+ {
1366
+ "$ref": "#/definitions/esri.rest-api.SymbolJson.TextSymbolJson"
1367
+ },
1368
+ {
1369
+ "$ref": "#/definitions/esri.rest-api.SymbolJson.LineSymbol3DJson"
1370
+ },
1371
+ {
1372
+ "$ref": "#/definitions/esri.rest-api.SymbolJson.PointSymbol3DJson"
1373
+ },
1374
+ {
1375
+ "$ref": "#/definitions/esri.rest-api.SymbolJson.PolygonSymbol3DJson"
1376
+ },
1377
+ {
1378
+ "items": {
1379
+ "$ref": "SymbolLike"
1380
+ },
1381
+ "type": "array"
1382
+ }
1383
+ ],
1384
+ "description": "The symbols to use for the command/operation."
1385
+ },
1386
+ "taskSettings": {
1387
+ "anyOf": [
1388
+ {
1389
+ "$ref": "#/definitions/@vertigis.arcgis-extensions.data.TaskSettings.TaskSettingsProperties"
1390
+ },
1391
+ {
1392
+ "items": {
1393
+ "$ref": "#/definitions/@vertigis.arcgis-extensions.data.TaskSettings.TaskSettingsProperties"
1394
+ },
1395
+ "type": "array"
1396
+ }
1397
+ ],
1398
+ "description": "Settings relevant to layer tasks."
1399
+ },
1400
+ "title": {
1401
+ "anyOf": [
1402
+ {
1403
+ "items": {
1404
+ "type": "string"
1405
+ },
1406
+ "type": "array"
1407
+ },
1408
+ {
1409
+ "type": "string"
1410
+ }
1411
+ ],
1412
+ "description": "The title of the layer."
1413
+ }
1414
+ }
1415
+ ```
1416
+
1417
+ ---
1418
+ # command: layers.set-visibility
1419
+ Description: Updates the visibility of the provided layer(s). Web only.
1420
+
1421
+ **Example:** Toggle a layer's visibility off by id.
1422
+
1423
+ ```
1424
+ {
1425
+ "layers": "Victoria_Fire_Hydrants_8780",
1426
+ "visible": false
1427
+ }
1428
+ ```
1429
+
1430
+ Inputs: `SetVisibilityArgs`
1431
+
1432
+ SetVisibilityArgs properties:
1433
+ ```json
1434
+ {
1435
+ "layers": {
1436
+ "description": "Layer(s) to use for the command/operation."
1437
+ },
1438
+ "maps": {
1439
+ "description": "Map(s) to use for the command/operation."
1440
+ },
1441
+ "visible": {
1442
+ "description": "The visibility of the provided layers. If arg is not provided, visibility will be toggled.",
1443
+ "type": "boolean"
1444
+ }
1445
+ }
1446
+ ```
1447
+
1448
+ ---
1449
+ # command: layers.show-labels
1450
+ Description: Turns on the layer's labels on the map. Web only.
1451
+
1452
+ Inputs: `SetLabelVisibilityArgs`
1453
+
1454
+ SetLabelVisibilityArgs properties:
1455
+ ```json
1456
+ {
1457
+ "layers": {
1458
+ "description": "Layer(s) to use for the command/operation."
1459
+ },
1460
+ "maps": {
1461
+ "description": "Map(s) to use for the command/operation."
1462
+ }
1463
+ }
1464
+ ```
1465
+
1466
+ ---