@vertigis/viewer-spec 61.7.0 → 61.9.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/messaging/registry/results.d.ts +17 -0
- package/messaging/registry/results.js +1 -1
- package/messaging/schema/common-action.schema.json +2 -136
- package/messaging/schema/common-event.schema.json +0 -7
- package/messaging/schema/mobile-action.schema.json +6 -163
- package/messaging/schema/mobile-event.schema.json +0 -31
- package/messaging/schema/web-action.schema.json +74 -283
- package/messaging/schema/web-charts-command-definitions.md +3 -210
- package/messaging/schema/web-drawing-operation-definitions.md +1 -82
- package/messaging/schema/web-edit-command-definitions.md +5 -214
- package/messaging/schema/web-event.schema.json +2 -43
- package/messaging/schema/web-geocode-operation-definitions.md +1 -1
- package/messaging/schema/web-geometry-operation-definitions.md +1 -73
- package/messaging/schema/web-kpi-command-definitions.md +3 -210
- package/messaging/schema/web-map-command-definitions.md +5 -218
- package/messaging/schema/web-results-command-definitions.md +4 -280
- package/messaging/schema/web-results-operation-definitions.md +29 -284
- package/package.json +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
|
@@ -1,76 +1,7 @@
|
|
|
1
1
|
# command: charts.add-features
|
|
2
2
|
Description: Adds one or more features to charts. If `chart` is specified, then only the given chart will be updated, otherwise all charts will. Web only.
|
|
3
3
|
|
|
4
|
-
Inputs: `( @vertigis.api-docs.Features FeatureSet|FeatureList|FeatureStream |
|
|
5
|
-
|
|
6
|
-
@vertigis.arcgis-extensions.data.Feature.FeatureProperties properties:
|
|
7
|
-
```json
|
|
8
|
-
{
|
|
9
|
-
"attributes": {
|
|
10
|
-
"anyOf": [
|
|
11
|
-
{},
|
|
12
|
-
{
|
|
13
|
-
"$ref": "Map"
|
|
14
|
-
}
|
|
15
|
-
],
|
|
16
|
-
"description": "The feature's attributes, keyed by field name."
|
|
17
|
-
},
|
|
18
|
-
"failureMode": {
|
|
19
|
-
"description": "See {@link support /InitializableBase!InitializableBase.failureMode}."
|
|
20
|
-
},
|
|
21
|
-
"geometry": {
|
|
22
|
-
"anyOf": [
|
|
23
|
-
{
|
|
24
|
-
"$ref": "#/definitions/@arcgis.core.geometry.Extent.Extent"
|
|
25
|
-
},
|
|
26
|
-
{
|
|
27
|
-
"$ref": "#/definitions/@arcgis.core.geometry.Multipoint.Multipoint"
|
|
28
|
-
},
|
|
29
|
-
{
|
|
30
|
-
"$ref": "#/definitions/@arcgis.core.geometry.Point.Point"
|
|
31
|
-
},
|
|
32
|
-
{
|
|
33
|
-
"$ref": "T_6"
|
|
34
|
-
},
|
|
35
|
-
{
|
|
36
|
-
"$ref": "#/definitions/@arcgis.core.geometry.Polyline.Polyline"
|
|
37
|
-
},
|
|
38
|
-
{
|
|
39
|
-
"$ref": "#/definitions/@arcgis.core.geometry.Mesh.Mesh"
|
|
40
|
-
},
|
|
41
|
-
{
|
|
42
|
-
"$ref": "#/definitions/esri.rest-api.GeometryJson.PointJson"
|
|
43
|
-
},
|
|
44
|
-
{
|
|
45
|
-
"$ref": "#/definitions/esri.rest-api.GeometryJson.MultipointJson"
|
|
46
|
-
},
|
|
47
|
-
{
|
|
48
|
-
"$ref": "#/definitions/esri.rest-api.GeometryJson.PolylineJson"
|
|
49
|
-
},
|
|
50
|
-
{
|
|
51
|
-
"$ref": "#/definitions/esri.rest-api.GeometryJson.PolygonJson"
|
|
52
|
-
},
|
|
53
|
-
{
|
|
54
|
-
"$ref": "#/definitions/esri.rest-api.GeometryJson.ExtentJson"
|
|
55
|
-
}
|
|
56
|
-
],
|
|
57
|
-
"description": "The feature's geometry."
|
|
58
|
-
},
|
|
59
|
-
"id": {
|
|
60
|
-
"description": "The unique ID to assign to the entity. If not specified, one will be generated.",
|
|
61
|
-
"type": "string"
|
|
62
|
-
},
|
|
63
|
-
"schema": {
|
|
64
|
-
"description": "Metadata about the feature, such as fields, domains, geometry type, etc."
|
|
65
|
-
},
|
|
66
|
-
"settings": {
|
|
67
|
-
"description": "Settings for this feature."
|
|
68
|
-
},
|
|
69
|
-
"source": {
|
|
70
|
-
"description": "The source of the feature."
|
|
71
|
-
}
|
|
72
|
-
}
|
|
73
|
-
```
|
|
4
|
+
Inputs: `( @vertigis.api-docs.Features FeatureSet|FeatureList|FeatureStream | ( @vertigis.arcgis-extensions.data.Feature.FeatureProperties )[] | Results | UpdateChartFeaturesArgs )`
|
|
74
5
|
|
|
75
6
|
Results properties:
|
|
76
7
|
```json
|
|
@@ -123,76 +54,7 @@ Model properties:
|
|
|
123
54
|
# command: charts.display
|
|
124
55
|
Description: Updates charts with provided features. Only activated charts that receive features from all required feature sources will get displayed. Web only.
|
|
125
56
|
|
|
126
|
-
Inputs: `( @vertigis.api-docs.Features FeatureSet|FeatureList|FeatureStream |
|
|
127
|
-
|
|
128
|
-
@vertigis.arcgis-extensions.data.Feature.FeatureProperties properties:
|
|
129
|
-
```json
|
|
130
|
-
{
|
|
131
|
-
"attributes": {
|
|
132
|
-
"anyOf": [
|
|
133
|
-
{},
|
|
134
|
-
{
|
|
135
|
-
"$ref": "Map"
|
|
136
|
-
}
|
|
137
|
-
],
|
|
138
|
-
"description": "The feature's attributes, keyed by field name."
|
|
139
|
-
},
|
|
140
|
-
"failureMode": {
|
|
141
|
-
"description": "See {@link support /InitializableBase!InitializableBase.failureMode}."
|
|
142
|
-
},
|
|
143
|
-
"geometry": {
|
|
144
|
-
"anyOf": [
|
|
145
|
-
{
|
|
146
|
-
"$ref": "#/definitions/@arcgis.core.geometry.Extent.Extent"
|
|
147
|
-
},
|
|
148
|
-
{
|
|
149
|
-
"$ref": "#/definitions/@arcgis.core.geometry.Multipoint.Multipoint"
|
|
150
|
-
},
|
|
151
|
-
{
|
|
152
|
-
"$ref": "#/definitions/@arcgis.core.geometry.Point.Point"
|
|
153
|
-
},
|
|
154
|
-
{
|
|
155
|
-
"$ref": "T_6"
|
|
156
|
-
},
|
|
157
|
-
{
|
|
158
|
-
"$ref": "#/definitions/@arcgis.core.geometry.Polyline.Polyline"
|
|
159
|
-
},
|
|
160
|
-
{
|
|
161
|
-
"$ref": "#/definitions/@arcgis.core.geometry.Mesh.Mesh"
|
|
162
|
-
},
|
|
163
|
-
{
|
|
164
|
-
"$ref": "#/definitions/esri.rest-api.GeometryJson.PointJson"
|
|
165
|
-
},
|
|
166
|
-
{
|
|
167
|
-
"$ref": "#/definitions/esri.rest-api.GeometryJson.MultipointJson"
|
|
168
|
-
},
|
|
169
|
-
{
|
|
170
|
-
"$ref": "#/definitions/esri.rest-api.GeometryJson.PolylineJson"
|
|
171
|
-
},
|
|
172
|
-
{
|
|
173
|
-
"$ref": "#/definitions/esri.rest-api.GeometryJson.PolygonJson"
|
|
174
|
-
},
|
|
175
|
-
{
|
|
176
|
-
"$ref": "#/definitions/esri.rest-api.GeometryJson.ExtentJson"
|
|
177
|
-
}
|
|
178
|
-
],
|
|
179
|
-
"description": "The feature's geometry."
|
|
180
|
-
},
|
|
181
|
-
"id": {
|
|
182
|
-
"description": "The unique ID to assign to the entity. If not specified, one will be generated.",
|
|
183
|
-
"type": "string"
|
|
184
|
-
},
|
|
185
|
-
"schema": {
|
|
186
|
-
"description": "Metadata about the feature, such as fields, domains, geometry type, etc."
|
|
187
|
-
},
|
|
188
|
-
"settings": {
|
|
189
|
-
"description": "Settings for this feature."
|
|
190
|
-
},
|
|
191
|
-
"source": {
|
|
192
|
-
"description": "The source of the feature."
|
|
193
|
-
}
|
|
194
|
-
}
|
|
195
|
-
```
|
|
57
|
+
Inputs: `( @vertigis.api-docs.Features FeatureSet|FeatureList|FeatureStream | ( @vertigis.arcgis-extensions.data.Feature.FeatureProperties )[] | Results | UpdateChartFeaturesArgs )`
|
|
196
58
|
|
|
197
59
|
Results properties:
|
|
198
60
|
```json
|
|
@@ -223,76 +85,7 @@ UpdateChartFeaturesArgs properties:
|
|
|
223
85
|
# command: charts.remove-features
|
|
224
86
|
Description: Remove one or more features from active charts. If `chart` is specified, then only the given chart will be updated, otherwise all charts will. Web only.
|
|
225
87
|
|
|
226
|
-
Inputs: `( @vertigis.api-docs.Features FeatureSet|FeatureList|FeatureStream |
|
|
227
|
-
|
|
228
|
-
@vertigis.arcgis-extensions.data.Feature.FeatureProperties properties:
|
|
229
|
-
```json
|
|
230
|
-
{
|
|
231
|
-
"attributes": {
|
|
232
|
-
"anyOf": [
|
|
233
|
-
{},
|
|
234
|
-
{
|
|
235
|
-
"$ref": "Map"
|
|
236
|
-
}
|
|
237
|
-
],
|
|
238
|
-
"description": "The feature's attributes, keyed by field name."
|
|
239
|
-
},
|
|
240
|
-
"failureMode": {
|
|
241
|
-
"description": "See {@link support /InitializableBase!InitializableBase.failureMode}."
|
|
242
|
-
},
|
|
243
|
-
"geometry": {
|
|
244
|
-
"anyOf": [
|
|
245
|
-
{
|
|
246
|
-
"$ref": "#/definitions/@arcgis.core.geometry.Extent.Extent"
|
|
247
|
-
},
|
|
248
|
-
{
|
|
249
|
-
"$ref": "#/definitions/@arcgis.core.geometry.Multipoint.Multipoint"
|
|
250
|
-
},
|
|
251
|
-
{
|
|
252
|
-
"$ref": "#/definitions/@arcgis.core.geometry.Point.Point"
|
|
253
|
-
},
|
|
254
|
-
{
|
|
255
|
-
"$ref": "T_6"
|
|
256
|
-
},
|
|
257
|
-
{
|
|
258
|
-
"$ref": "#/definitions/@arcgis.core.geometry.Polyline.Polyline"
|
|
259
|
-
},
|
|
260
|
-
{
|
|
261
|
-
"$ref": "#/definitions/@arcgis.core.geometry.Mesh.Mesh"
|
|
262
|
-
},
|
|
263
|
-
{
|
|
264
|
-
"$ref": "#/definitions/esri.rest-api.GeometryJson.PointJson"
|
|
265
|
-
},
|
|
266
|
-
{
|
|
267
|
-
"$ref": "#/definitions/esri.rest-api.GeometryJson.MultipointJson"
|
|
268
|
-
},
|
|
269
|
-
{
|
|
270
|
-
"$ref": "#/definitions/esri.rest-api.GeometryJson.PolylineJson"
|
|
271
|
-
},
|
|
272
|
-
{
|
|
273
|
-
"$ref": "#/definitions/esri.rest-api.GeometryJson.PolygonJson"
|
|
274
|
-
},
|
|
275
|
-
{
|
|
276
|
-
"$ref": "#/definitions/esri.rest-api.GeometryJson.ExtentJson"
|
|
277
|
-
}
|
|
278
|
-
],
|
|
279
|
-
"description": "The feature's geometry."
|
|
280
|
-
},
|
|
281
|
-
"id": {
|
|
282
|
-
"description": "The unique ID to assign to the entity. If not specified, one will be generated.",
|
|
283
|
-
"type": "string"
|
|
284
|
-
},
|
|
285
|
-
"schema": {
|
|
286
|
-
"description": "Metadata about the feature, such as fields, domains, geometry type, etc."
|
|
287
|
-
},
|
|
288
|
-
"settings": {
|
|
289
|
-
"description": "Settings for this feature."
|
|
290
|
-
},
|
|
291
|
-
"source": {
|
|
292
|
-
"description": "The source of the feature."
|
|
293
|
-
}
|
|
294
|
-
}
|
|
295
|
-
```
|
|
88
|
+
Inputs: `( @vertigis.api-docs.Features FeatureSet|FeatureList|FeatureStream | ( @vertigis.arcgis-extensions.data.Feature.FeatureProperties )[] | Results | UpdateChartFeaturesArgs )`
|
|
296
89
|
|
|
297
90
|
Results properties:
|
|
298
91
|
```json
|
|
@@ -5,7 +5,7 @@ In Web, creates graphics out of GeometryLike or CreateGraphicsArgs, with the cur
|
|
|
5
5
|
|
|
6
6
|
In Mobile, creates graphics from the given CreateGraphicsArgs or CreateGraphicsArgs[] (or some GeometryLike args). Any provided symbol parameter is used, otherwise a default symbol is used.
|
|
7
7
|
|
|
8
|
-
Inputs: `( @vertigis.api-docs.Features FeatureSet|FeatureList|FeatureStream | CreateGraphicsResult | @arcgis.core.Graphic.Graphic |
|
|
8
|
+
Inputs: `( @vertigis.api-docs.Features FeatureSet|FeatureList|FeatureStream | CreateGraphicsResult | @arcgis.core.Graphic.Graphic | ( @vertigis.arcgis-extensions.data.Feature.FeatureProperties )[] | @arcgis.core.geometry.Extent.Extent | @arcgis.core.geometry.Multipoint.Multipoint | @arcgis.core.geometry.Point.Point | @arcgis.core.geometry.Polyline.Polyline | @arcgis.core.geometry.Mesh.Mesh | esri.rest-api.FeatureJson.FeatureJson | @arcgis.core.rest.support.FeatureSet.FeatureSet | ( @arcgis.core.Graphic.Graphic | esri.rest-api.FeatureJson.FeatureJson )[] | esri.rest-api.GeometryJson.PointJson | esri.rest-api.GeometryJson.MultipointJson | esri.rest-api.GeometryJson.PolylineJson | esri.rest-api.GeometryJson.PolygonJson | esri.rest-api.GeometryJson.ExtentJson | ( @arcgis.core.geometry.Extent.Extent | @arcgis.core.geometry.Multipoint.Multipoint | @arcgis.core.geometry.Point.Point | @arcgis.core.geometry.Polyline.Polyline | @arcgis.core.geometry.Mesh.Mesh | esri.rest-api.GeometryJson.PointJson | esri.rest-api.GeometryJson.MultipointJson | esri.rest-api.GeometryJson.PolylineJson | esri.rest-api.GeometryJson.PolygonJson | esri.rest-api.GeometryJson.ExtentJson )[] | CreateGraphicsArgs | CreateGraphicsArgs[] )`
|
|
9
9
|
|
|
10
10
|
CreateGraphicsResult properties:
|
|
11
11
|
```json
|
|
@@ -25,75 +25,6 @@ CreateGraphicsResult properties:
|
|
|
25
25
|
}
|
|
26
26
|
```
|
|
27
27
|
|
|
28
|
-
@vertigis.arcgis-extensions.data.Feature.FeatureProperties properties:
|
|
29
|
-
```json
|
|
30
|
-
{
|
|
31
|
-
"attributes": {
|
|
32
|
-
"anyOf": [
|
|
33
|
-
{},
|
|
34
|
-
{
|
|
35
|
-
"$ref": "Map"
|
|
36
|
-
}
|
|
37
|
-
],
|
|
38
|
-
"description": "The feature's attributes, keyed by field name."
|
|
39
|
-
},
|
|
40
|
-
"failureMode": {
|
|
41
|
-
"description": "See {@link support /InitializableBase!InitializableBase.failureMode}."
|
|
42
|
-
},
|
|
43
|
-
"geometry": {
|
|
44
|
-
"anyOf": [
|
|
45
|
-
{
|
|
46
|
-
"$ref": "#/definitions/@arcgis.core.geometry.Extent.Extent"
|
|
47
|
-
},
|
|
48
|
-
{
|
|
49
|
-
"$ref": "#/definitions/@arcgis.core.geometry.Multipoint.Multipoint"
|
|
50
|
-
},
|
|
51
|
-
{
|
|
52
|
-
"$ref": "#/definitions/@arcgis.core.geometry.Point.Point"
|
|
53
|
-
},
|
|
54
|
-
{
|
|
55
|
-
"$ref": "T_6"
|
|
56
|
-
},
|
|
57
|
-
{
|
|
58
|
-
"$ref": "#/definitions/@arcgis.core.geometry.Polyline.Polyline"
|
|
59
|
-
},
|
|
60
|
-
{
|
|
61
|
-
"$ref": "#/definitions/@arcgis.core.geometry.Mesh.Mesh"
|
|
62
|
-
},
|
|
63
|
-
{
|
|
64
|
-
"$ref": "#/definitions/esri.rest-api.GeometryJson.PointJson"
|
|
65
|
-
},
|
|
66
|
-
{
|
|
67
|
-
"$ref": "#/definitions/esri.rest-api.GeometryJson.MultipointJson"
|
|
68
|
-
},
|
|
69
|
-
{
|
|
70
|
-
"$ref": "#/definitions/esri.rest-api.GeometryJson.PolylineJson"
|
|
71
|
-
},
|
|
72
|
-
{
|
|
73
|
-
"$ref": "#/definitions/esri.rest-api.GeometryJson.PolygonJson"
|
|
74
|
-
},
|
|
75
|
-
{
|
|
76
|
-
"$ref": "#/definitions/esri.rest-api.GeometryJson.ExtentJson"
|
|
77
|
-
}
|
|
78
|
-
],
|
|
79
|
-
"description": "The feature's geometry."
|
|
80
|
-
},
|
|
81
|
-
"id": {
|
|
82
|
-
"description": "The unique ID to assign to the entity. If not specified, one will be generated.",
|
|
83
|
-
"type": "string"
|
|
84
|
-
},
|
|
85
|
-
"schema": {
|
|
86
|
-
"description": "Metadata about the feature, such as fields, domains, geometry type, etc."
|
|
87
|
-
},
|
|
88
|
-
"settings": {
|
|
89
|
-
"description": "Settings for this feature."
|
|
90
|
-
},
|
|
91
|
-
"source": {
|
|
92
|
-
"description": "The source of the feature."
|
|
93
|
-
}
|
|
94
|
-
}
|
|
95
|
-
```
|
|
96
|
-
|
|
97
28
|
esri.rest-api.FeatureJson.FeatureJson properties:
|
|
98
29
|
```json
|
|
99
30
|
{
|
|
@@ -403,9 +334,6 @@ CreateGraphicsArgs properties:
|
|
|
403
334
|
{
|
|
404
335
|
"$ref": "#/definitions/@arcgis.core.Graphic.Graphic"
|
|
405
336
|
},
|
|
406
|
-
{
|
|
407
|
-
"$ref": "T_60"
|
|
408
|
-
},
|
|
409
337
|
{
|
|
410
338
|
"$ref": "@vertigis.arcgis-extensions.data.FeatureSet.FeatureSet"
|
|
411
339
|
},
|
|
@@ -420,9 +348,6 @@ CreateGraphicsArgs properties:
|
|
|
420
348
|
"anyOf": [
|
|
421
349
|
{
|
|
422
350
|
"$ref": "@vertigis.arcgis-extensions.data.Feature.FeatureProperties"
|
|
423
|
-
},
|
|
424
|
-
{
|
|
425
|
-
"$ref": "T_60"
|
|
426
351
|
}
|
|
427
352
|
]
|
|
428
353
|
},
|
|
@@ -437,9 +362,6 @@ CreateGraphicsArgs properties:
|
|
|
437
362
|
{
|
|
438
363
|
"$ref": "#/definitions/@arcgis.core.geometry.Point.Point"
|
|
439
364
|
},
|
|
440
|
-
{
|
|
441
|
-
"$ref": "T_6"
|
|
442
|
-
},
|
|
443
365
|
{
|
|
444
366
|
"$ref": "#/definitions/@arcgis.core.geometry.Polyline.Polyline"
|
|
445
367
|
},
|
|
@@ -492,9 +414,6 @@ CreateGraphicsArgs properties:
|
|
|
492
414
|
{
|
|
493
415
|
"$ref": "#/definitions/@arcgis.core.geometry.Point.Point"
|
|
494
416
|
},
|
|
495
|
-
{
|
|
496
|
-
"$ref": "T_6"
|
|
497
|
-
},
|
|
498
417
|
{
|
|
499
418
|
"$ref": "#/definitions/@arcgis.core.geometry.Polyline.Polyline"
|
|
500
419
|
},
|
|
@@ -63,76 +63,7 @@ WebAddAttachmentArgs properties:
|
|
|
63
63
|
# command: edit.add-feature
|
|
64
64
|
Description: Adds a feature to a particular layer. `Features` and `EditCommandArgs` are not supported on Mobile.
|
|
65
65
|
|
|
66
|
-
Inputs: `( @vertigis.api-docs.Features FeatureSet|FeatureList|FeatureStream |
|
|
67
|
-
|
|
68
|
-
@vertigis.arcgis-extensions.data.Feature.FeatureProperties properties:
|
|
69
|
-
```json
|
|
70
|
-
{
|
|
71
|
-
"attributes": {
|
|
72
|
-
"anyOf": [
|
|
73
|
-
{},
|
|
74
|
-
{
|
|
75
|
-
"$ref": "Map"
|
|
76
|
-
}
|
|
77
|
-
],
|
|
78
|
-
"description": "The feature's attributes, keyed by field name."
|
|
79
|
-
},
|
|
80
|
-
"failureMode": {
|
|
81
|
-
"description": "See {@link support /InitializableBase!InitializableBase.failureMode}."
|
|
82
|
-
},
|
|
83
|
-
"geometry": {
|
|
84
|
-
"anyOf": [
|
|
85
|
-
{
|
|
86
|
-
"$ref": "#/definitions/@arcgis.core.geometry.Extent.Extent"
|
|
87
|
-
},
|
|
88
|
-
{
|
|
89
|
-
"$ref": "#/definitions/@arcgis.core.geometry.Multipoint.Multipoint"
|
|
90
|
-
},
|
|
91
|
-
{
|
|
92
|
-
"$ref": "#/definitions/@arcgis.core.geometry.Point.Point"
|
|
93
|
-
},
|
|
94
|
-
{
|
|
95
|
-
"$ref": "T_6"
|
|
96
|
-
},
|
|
97
|
-
{
|
|
98
|
-
"$ref": "#/definitions/@arcgis.core.geometry.Polyline.Polyline"
|
|
99
|
-
},
|
|
100
|
-
{
|
|
101
|
-
"$ref": "#/definitions/@arcgis.core.geometry.Mesh.Mesh"
|
|
102
|
-
},
|
|
103
|
-
{
|
|
104
|
-
"$ref": "#/definitions/esri.rest-api.GeometryJson.PointJson"
|
|
105
|
-
},
|
|
106
|
-
{
|
|
107
|
-
"$ref": "#/definitions/esri.rest-api.GeometryJson.MultipointJson"
|
|
108
|
-
},
|
|
109
|
-
{
|
|
110
|
-
"$ref": "#/definitions/esri.rest-api.GeometryJson.PolylineJson"
|
|
111
|
-
},
|
|
112
|
-
{
|
|
113
|
-
"$ref": "#/definitions/esri.rest-api.GeometryJson.PolygonJson"
|
|
114
|
-
},
|
|
115
|
-
{
|
|
116
|
-
"$ref": "#/definitions/esri.rest-api.GeometryJson.ExtentJson"
|
|
117
|
-
}
|
|
118
|
-
],
|
|
119
|
-
"description": "The feature's geometry."
|
|
120
|
-
},
|
|
121
|
-
"id": {
|
|
122
|
-
"description": "The unique ID to assign to the entity. If not specified, one will be generated.",
|
|
123
|
-
"type": "string"
|
|
124
|
-
},
|
|
125
|
-
"schema": {
|
|
126
|
-
"description": "Metadata about the feature, such as fields, domains, geometry type, etc."
|
|
127
|
-
},
|
|
128
|
-
"settings": {
|
|
129
|
-
"description": "Settings for this feature."
|
|
130
|
-
},
|
|
131
|
-
"source": {
|
|
132
|
-
"description": "The source of the feature."
|
|
133
|
-
}
|
|
134
|
-
}
|
|
135
|
-
```
|
|
66
|
+
Inputs: `( @vertigis.api-docs.Features FeatureSet|FeatureList|FeatureStream | ( @vertigis.arcgis-extensions.data.Feature.FeatureProperties )[] | Results | EditCommandArgs )`
|
|
136
67
|
|
|
137
68
|
Results properties:
|
|
138
69
|
```json
|
|
@@ -247,76 +178,7 @@ DeleteAttachmentArgs properties:
|
|
|
247
178
|
# command: edit.delete-features
|
|
248
179
|
Description: Deletes the given feature or features from their feature sources. `EditCommandArgs` is not supported on Mobile.
|
|
249
180
|
|
|
250
|
-
Inputs: `( @vertigis.api-docs.Features FeatureSet|FeatureList|FeatureStream |
|
|
251
|
-
|
|
252
|
-
@vertigis.arcgis-extensions.data.Feature.FeatureProperties properties:
|
|
253
|
-
```json
|
|
254
|
-
{
|
|
255
|
-
"attributes": {
|
|
256
|
-
"anyOf": [
|
|
257
|
-
{},
|
|
258
|
-
{
|
|
259
|
-
"$ref": "Map"
|
|
260
|
-
}
|
|
261
|
-
],
|
|
262
|
-
"description": "The feature's attributes, keyed by field name."
|
|
263
|
-
},
|
|
264
|
-
"failureMode": {
|
|
265
|
-
"description": "See {@link support /InitializableBase!InitializableBase.failureMode}."
|
|
266
|
-
},
|
|
267
|
-
"geometry": {
|
|
268
|
-
"anyOf": [
|
|
269
|
-
{
|
|
270
|
-
"$ref": "#/definitions/@arcgis.core.geometry.Extent.Extent"
|
|
271
|
-
},
|
|
272
|
-
{
|
|
273
|
-
"$ref": "#/definitions/@arcgis.core.geometry.Multipoint.Multipoint"
|
|
274
|
-
},
|
|
275
|
-
{
|
|
276
|
-
"$ref": "#/definitions/@arcgis.core.geometry.Point.Point"
|
|
277
|
-
},
|
|
278
|
-
{
|
|
279
|
-
"$ref": "T_6"
|
|
280
|
-
},
|
|
281
|
-
{
|
|
282
|
-
"$ref": "#/definitions/@arcgis.core.geometry.Polyline.Polyline"
|
|
283
|
-
},
|
|
284
|
-
{
|
|
285
|
-
"$ref": "#/definitions/@arcgis.core.geometry.Mesh.Mesh"
|
|
286
|
-
},
|
|
287
|
-
{
|
|
288
|
-
"$ref": "#/definitions/esri.rest-api.GeometryJson.PointJson"
|
|
289
|
-
},
|
|
290
|
-
{
|
|
291
|
-
"$ref": "#/definitions/esri.rest-api.GeometryJson.MultipointJson"
|
|
292
|
-
},
|
|
293
|
-
{
|
|
294
|
-
"$ref": "#/definitions/esri.rest-api.GeometryJson.PolylineJson"
|
|
295
|
-
},
|
|
296
|
-
{
|
|
297
|
-
"$ref": "#/definitions/esri.rest-api.GeometryJson.PolygonJson"
|
|
298
|
-
},
|
|
299
|
-
{
|
|
300
|
-
"$ref": "#/definitions/esri.rest-api.GeometryJson.ExtentJson"
|
|
301
|
-
}
|
|
302
|
-
],
|
|
303
|
-
"description": "The feature's geometry."
|
|
304
|
-
},
|
|
305
|
-
"id": {
|
|
306
|
-
"description": "The unique ID to assign to the entity. If not specified, one will be generated.",
|
|
307
|
-
"type": "string"
|
|
308
|
-
},
|
|
309
|
-
"schema": {
|
|
310
|
-
"description": "Metadata about the feature, such as fields, domains, geometry type, etc."
|
|
311
|
-
},
|
|
312
|
-
"settings": {
|
|
313
|
-
"description": "Settings for this feature."
|
|
314
|
-
},
|
|
315
|
-
"source": {
|
|
316
|
-
"description": "The source of the feature."
|
|
317
|
-
}
|
|
318
|
-
}
|
|
319
|
-
```
|
|
181
|
+
Inputs: `( @vertigis.api-docs.Features FeatureSet|FeatureList|FeatureStream | ( @vertigis.arcgis-extensions.data.Feature.FeatureProperties )[] | Results | EditCommandArgs )`
|
|
320
182
|
|
|
321
183
|
Results properties:
|
|
322
184
|
```json
|
|
@@ -551,7 +413,7 @@ DisplayAddRelatedFeatureArgs properties:
|
|
|
551
413
|
# command: edit.display-update-feature
|
|
552
414
|
Description: Begin an interactive feature editing session with an existing feature. `DisplayUpdateFeatureArgs` is not supported on Mobile.
|
|
553
415
|
|
|
554
|
-
Inputs: `(
|
|
416
|
+
Inputs: `( DisplayUpdateFeatureArgs )`
|
|
555
417
|
|
|
556
418
|
DisplayUpdateFeatureArgs properties:
|
|
557
419
|
```json
|
|
@@ -626,76 +488,7 @@ DisplayUpdateFeatureArgs properties:
|
|
|
626
488
|
# command: edit.update-feature
|
|
627
489
|
Description: Updates a layer feature or features. Edits to the geometry and attributes of the supplied features will be committed to their respective feature sources. `Features` and `EditCommandArgs` are not supported on Mobile.
|
|
628
490
|
|
|
629
|
-
Inputs: `( @vertigis.api-docs.Features FeatureSet|FeatureList|FeatureStream |
|
|
630
|
-
|
|
631
|
-
@vertigis.arcgis-extensions.data.Feature.FeatureProperties properties:
|
|
632
|
-
```json
|
|
633
|
-
{
|
|
634
|
-
"attributes": {
|
|
635
|
-
"anyOf": [
|
|
636
|
-
{},
|
|
637
|
-
{
|
|
638
|
-
"$ref": "Map"
|
|
639
|
-
}
|
|
640
|
-
],
|
|
641
|
-
"description": "The feature's attributes, keyed by field name."
|
|
642
|
-
},
|
|
643
|
-
"failureMode": {
|
|
644
|
-
"description": "See {@link support /InitializableBase!InitializableBase.failureMode}."
|
|
645
|
-
},
|
|
646
|
-
"geometry": {
|
|
647
|
-
"anyOf": [
|
|
648
|
-
{
|
|
649
|
-
"$ref": "#/definitions/@arcgis.core.geometry.Extent.Extent"
|
|
650
|
-
},
|
|
651
|
-
{
|
|
652
|
-
"$ref": "#/definitions/@arcgis.core.geometry.Multipoint.Multipoint"
|
|
653
|
-
},
|
|
654
|
-
{
|
|
655
|
-
"$ref": "#/definitions/@arcgis.core.geometry.Point.Point"
|
|
656
|
-
},
|
|
657
|
-
{
|
|
658
|
-
"$ref": "T_6"
|
|
659
|
-
},
|
|
660
|
-
{
|
|
661
|
-
"$ref": "#/definitions/@arcgis.core.geometry.Polyline.Polyline"
|
|
662
|
-
},
|
|
663
|
-
{
|
|
664
|
-
"$ref": "#/definitions/@arcgis.core.geometry.Mesh.Mesh"
|
|
665
|
-
},
|
|
666
|
-
{
|
|
667
|
-
"$ref": "#/definitions/esri.rest-api.GeometryJson.PointJson"
|
|
668
|
-
},
|
|
669
|
-
{
|
|
670
|
-
"$ref": "#/definitions/esri.rest-api.GeometryJson.MultipointJson"
|
|
671
|
-
},
|
|
672
|
-
{
|
|
673
|
-
"$ref": "#/definitions/esri.rest-api.GeometryJson.PolylineJson"
|
|
674
|
-
},
|
|
675
|
-
{
|
|
676
|
-
"$ref": "#/definitions/esri.rest-api.GeometryJson.PolygonJson"
|
|
677
|
-
},
|
|
678
|
-
{
|
|
679
|
-
"$ref": "#/definitions/esri.rest-api.GeometryJson.ExtentJson"
|
|
680
|
-
}
|
|
681
|
-
],
|
|
682
|
-
"description": "The feature's geometry."
|
|
683
|
-
},
|
|
684
|
-
"id": {
|
|
685
|
-
"description": "The unique ID to assign to the entity. If not specified, one will be generated.",
|
|
686
|
-
"type": "string"
|
|
687
|
-
},
|
|
688
|
-
"schema": {
|
|
689
|
-
"description": "Metadata about the feature, such as fields, domains, geometry type, etc."
|
|
690
|
-
},
|
|
691
|
-
"settings": {
|
|
692
|
-
"description": "Settings for this feature."
|
|
693
|
-
},
|
|
694
|
-
"source": {
|
|
695
|
-
"description": "The source of the feature."
|
|
696
|
-
}
|
|
697
|
-
}
|
|
698
|
-
```
|
|
491
|
+
Inputs: `( @vertigis.api-docs.Features FeatureSet|FeatureList|FeatureStream | ( @vertigis.arcgis-extensions.data.Feature.FeatureProperties )[] | Results | EditCommandArgs )`
|
|
699
492
|
|
|
700
493
|
Results properties:
|
|
701
494
|
```json
|
|
@@ -733,9 +526,7 @@ UpdateSessionArgs properties:
|
|
|
733
526
|
{
|
|
734
527
|
"attachments": {
|
|
735
528
|
"description": "An array of attachments that apply or are to be applied to the currently edited feature.",
|
|
736
|
-
"items": {
|
|
737
|
-
"$ref": "T_10"
|
|
738
|
-
},
|
|
529
|
+
"items": {},
|
|
739
530
|
"type": "array"
|
|
740
531
|
},
|
|
741
532
|
"attributes": {
|