@vertigis/viewer-spec 60.7.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.
- package/messaging/schema/web-app-operation-definitions.md +30 -0
- package/messaging/schema/web-arcade-operation-definitions.md +93 -0
- package/messaging/schema/web-auth-command-definitions.md +12 -0
- package/messaging/schema/web-auth-operation-definitions.md +16 -0
- package/messaging/schema/web-basemap-command-definitions.md +20 -0
- package/messaging/schema/web-basemap-operation-definitions.md +31 -0
- package/messaging/schema/web-bulk-editing-command-definitions.md +54 -0
- package/messaging/schema/web-charts-command-definitions.md +135 -0
- package/messaging/schema/web-charts-operation-definitions.md +48 -0
- package/messaging/schema/web-drawing-command-definitions.md +551 -0
- package/messaging/schema/web-drawing-operation-definitions.md +720 -0
- package/messaging/schema/web-edit-command-definitions.md +540 -0
- package/messaging/schema/web-edit-operation-definitions.md +50 -0
- package/messaging/schema/web-filter-builder-command-definitions.md +50 -0
- package/messaging/schema/web-filter-builder-operation-definitions.md +18 -0
- package/messaging/schema/web-geocode-operation-definitions.md +132 -0
- package/messaging/schema/web-geolocation-command-definitions.md +27 -0
- package/messaging/schema/web-geolocation-operation-definitions.md +24 -0
- package/messaging/schema/web-geometry-command-definitions.md +34 -0
- package/messaging/schema/web-geometry-operation-definitions.md +438 -0
- package/messaging/schema/web-highlights-command-definitions.md +120 -0
- package/messaging/schema/web-kpi-command-definitions.md +139 -0
- package/messaging/schema/web-kpi-operation-definitions.md +48 -0
- package/messaging/schema/web-layer-comparison-command-definitions.md +214 -0
- package/messaging/schema/web-layer-list-command-definitions.md +30 -0
- package/messaging/schema/web-layers-command-definitions.md +1466 -0
- package/messaging/schema/web-layers-operation-definitions.md +612 -0
- package/messaging/schema/web-licensing-command-definitions.md +24 -0
- package/messaging/schema/web-licensing-operation-definitions.md +26 -0
- package/messaging/schema/web-location-marker-command-definitions.md +209 -0
- package/messaging/schema/web-map-command-definitions.md +2157 -0
- package/messaging/schema/web-map-operation-definitions.md +147 -0
- package/messaging/schema/web-measurement-command-definitions.md +556 -0
- package/messaging/schema/web-measurement-operation-definitions.md +314 -0
- package/messaging/schema/web-messaging-operation-definitions.md +16 -0
- package/messaging/schema/web-panel-command-definitions.md +44 -0
- package/messaging/schema/web-portal-operation-definitions.md +87 -0
- package/messaging/schema/web-printing-command-definitions.md +105 -0
- package/messaging/schema/web-printing-operation-definitions.md +21 -0
- package/messaging/schema/web-project-command-definitions.md +418 -0
- package/messaging/schema/web-project-operation-definitions.md +120 -0
- package/messaging/schema/web-query-builder-command-definitions.md +83 -0
- package/messaging/schema/web-query-builder-operation-definitions.md +18 -0
- package/messaging/schema/web-region-command-definitions.md +6 -0
- package/messaging/schema/web-reports-command-definitions.md +44 -0
- package/messaging/schema/web-results-command-definitions.md +348 -0
- package/messaging/schema/web-results-operation-definitions.md +1242 -0
- package/messaging/schema/web-search-command-definitions.md +6 -0
- package/messaging/schema/web-sketching-command-definitions.md +328 -0
- package/messaging/schema/web-sketching-operation-definitions.md +442 -0
- package/messaging/schema/web-studio-analytics-command-definitions.md +21 -0
- package/messaging/schema/web-system-command-definitions.md +159 -0
- package/messaging/schema/web-system-operation-definitions.md +104 -0
- package/messaging/schema/web-tasks-operation-definitions.md +360 -0
- package/messaging/schema/web-ui-command-definitions.md +340 -0
- package/messaging/schema/web-ui-operation-definitions.md +146 -0
- package/messaging/schema/web-viewer-command-definitions.md +40 -0
- package/messaging/schema/web-viewer-operation-definitions.md +48 -0
- package/messaging/schema/web-workflow-command-definitions.md +47 -0
- package/messaging/schema/web-workflow-operation-definitions.md +45 -0
- package/package.json +8 -7
- package/version.d.ts +1 -1
- package/version.js +1 -1
|
@@ -0,0 +1,328 @@
|
|
|
1
|
+
# command: sketching.activate-snapping
|
|
2
|
+
Description: Set the snapping default to 'on' for all in progress and subsequent operations. Web only.
|
|
3
|
+
|
|
4
|
+
Inputs: `None`
|
|
5
|
+
|
|
6
|
+
---
|
|
7
|
+
# command: sketching.activate-topology
|
|
8
|
+
Description: Set the topology default to 'on' for all subsequent operations. Web only.
|
|
9
|
+
|
|
10
|
+
Inputs: `None`
|
|
11
|
+
|
|
12
|
+
---
|
|
13
|
+
# command: sketching.add-point
|
|
14
|
+
Description: Adds a point to polygon, polyline, or multipoint using the selected index as the point to insert after.
|
|
15
|
+
|
|
16
|
+
Inputs: `AddPointArgs`
|
|
17
|
+
|
|
18
|
+
AddPointArgs properties:
|
|
19
|
+
```json
|
|
20
|
+
{
|
|
21
|
+
"geometry": {
|
|
22
|
+
"description": "The geometry to add the point to, if multiple are present in an active editing session. Not supported by VertiGIS Studio Mobile."
|
|
23
|
+
},
|
|
24
|
+
"maps": {
|
|
25
|
+
"description": "Map(s) to use for the command/operation."
|
|
26
|
+
},
|
|
27
|
+
"newPoint": {
|
|
28
|
+
"description": "The new point to be added.",
|
|
29
|
+
"isRequired": "true"
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
---
|
|
35
|
+
# command: sketching.cancel
|
|
36
|
+
Description: Cancels the current geometry edit or capture operation. Web only.
|
|
37
|
+
|
|
38
|
+
Inputs: `None`
|
|
39
|
+
|
|
40
|
+
---
|
|
41
|
+
# command: sketching.deactivate-snapping
|
|
42
|
+
Description: Set the snapping default to 'off' for all subsequent operations. Web only.
|
|
43
|
+
|
|
44
|
+
Inputs: `None`
|
|
45
|
+
|
|
46
|
+
---
|
|
47
|
+
# command: sketching.deactivate-topology
|
|
48
|
+
Description: Set the topology default to 'off' for all subsequent operations. Web only.
|
|
49
|
+
|
|
50
|
+
Inputs: `None`
|
|
51
|
+
|
|
52
|
+
---
|
|
53
|
+
# command: sketching.delete
|
|
54
|
+
Description: If a point is supplied while a sketching or editing operation is active, the vertex at that point will be deleted from the current geometry. If no point is supplied, any active points in the session will be deleted. If there are no active points in the session, the entire geometry will be deleted.
|
|
55
|
+
|
|
56
|
+
Inputs: `( DeleteGeometryArgs )`
|
|
57
|
+
|
|
58
|
+
DeleteGeometryArgs properties:
|
|
59
|
+
```json
|
|
60
|
+
{
|
|
61
|
+
"geometry": {
|
|
62
|
+
"description": "The geometry to remove a point from. If this property is not specified, any active vertices will be deleted."
|
|
63
|
+
},
|
|
64
|
+
"maps": {
|
|
65
|
+
"description": "Map(s) to use for the command/operation."
|
|
66
|
+
},
|
|
67
|
+
"partIndex": {
|
|
68
|
+
"description": "The index of the part of the geometry that the point should be removed from. Required for polyline and polygon geometry types when the geometry and pointIndex properties are defined.",
|
|
69
|
+
"type": "number"
|
|
70
|
+
},
|
|
71
|
+
"point": {
|
|
72
|
+
"description": "The point to remove from the geometry. If this property is defined, the 'pointIndex' and 'partIndex' properties are ignored. If no point nor pointIndex/partIndex are specified, any active points will be deleted. If there are no active points, the entire geometry will be deleted."
|
|
73
|
+
},
|
|
74
|
+
"pointIndex": {
|
|
75
|
+
"description": "The index of the point that should be removed from the geometry. If this property is defined, the geometry property must also be defined.",
|
|
76
|
+
"type": "number"
|
|
77
|
+
}
|
|
78
|
+
}
|
|
79
|
+
```
|
|
80
|
+
|
|
81
|
+
---
|
|
82
|
+
# command: sketching.disable-free-scale-mode
|
|
83
|
+
Description: Disables free scaling while editing geometries. Web only.
|
|
84
|
+
|
|
85
|
+
Inputs: `None`
|
|
86
|
+
|
|
87
|
+
---
|
|
88
|
+
# command: sketching.disable-precision-mode
|
|
89
|
+
Description: Disables more precise inputs while editing geometries. Web only.
|
|
90
|
+
|
|
91
|
+
Inputs: `None`
|
|
92
|
+
|
|
93
|
+
---
|
|
94
|
+
# command: sketching.enable-free-scale-mode
|
|
95
|
+
Description: Enables free scaling while editing geometries. Web only.
|
|
96
|
+
|
|
97
|
+
Inputs: `None`
|
|
98
|
+
|
|
99
|
+
---
|
|
100
|
+
# command: sketching.enable-precision-mode
|
|
101
|
+
Description: Enables more precise inputs while editing geometries. Web only.
|
|
102
|
+
|
|
103
|
+
Inputs: `None`
|
|
104
|
+
|
|
105
|
+
---
|
|
106
|
+
# command: sketching.insert-point
|
|
107
|
+
Description: Inserts a point into a polygon, polyline, or multipoint at the specified index. If the partIndex is null, then the last part is used. If the pointIndex is null, then the new point is inserted at the end.
|
|
108
|
+
|
|
109
|
+
Inputs: `InsertPointArgs`
|
|
110
|
+
|
|
111
|
+
InsertPointArgs properties:
|
|
112
|
+
```json
|
|
113
|
+
{
|
|
114
|
+
"geometry": {
|
|
115
|
+
"description": "The geometry to add the point to, if multiple are present in an active editing session. Not supported by VertiGIS Studio Mobile."
|
|
116
|
+
},
|
|
117
|
+
"maps": {
|
|
118
|
+
"description": "Map(s) to use for the command/operation."
|
|
119
|
+
},
|
|
120
|
+
"newPoint": {
|
|
121
|
+
"description": "The new point to be added.",
|
|
122
|
+
"isRequired": "true"
|
|
123
|
+
},
|
|
124
|
+
"partIndex": {
|
|
125
|
+
"description": "The index of the part to which the point will be added. If null, the last part will be used.",
|
|
126
|
+
"type": "number"
|
|
127
|
+
},
|
|
128
|
+
"pointIndex": {
|
|
129
|
+
"description": "The index at which the point will be added. If null, the point will be added as the last point.",
|
|
130
|
+
"type": "number"
|
|
131
|
+
}
|
|
132
|
+
}
|
|
133
|
+
```
|
|
134
|
+
|
|
135
|
+
---
|
|
136
|
+
# command: sketching.move-point
|
|
137
|
+
Description: Moves a point within an active sketch to a new location. Web only.
|
|
138
|
+
|
|
139
|
+
Inputs: `MovePointArgs`
|
|
140
|
+
|
|
141
|
+
MovePointArgs properties:
|
|
142
|
+
```json
|
|
143
|
+
{
|
|
144
|
+
"distance": {
|
|
145
|
+
"description": "An amount to move the point(s) on the X and Y axes. If the newPoint property is defined, this property will be ignored."
|
|
146
|
+
},
|
|
147
|
+
"geometry": {
|
|
148
|
+
"description": "The geometry where the point exists, if multiple are present in an active editing session. This property is required if pointIndex and/or partIndex are defined."
|
|
149
|
+
},
|
|
150
|
+
"maps": {
|
|
151
|
+
"description": "Map(s) to use for the command/operation."
|
|
152
|
+
},
|
|
153
|
+
"newPoint": {
|
|
154
|
+
"description": "The new point that will replace the target point within an active sketch or edit geometry. If this property is defined, the distance property will be ignored."
|
|
155
|
+
},
|
|
156
|
+
"partIndex": {
|
|
157
|
+
"description": "The part of the geometry where the point exists. Required for polyline and polygon geometry types when the geometry and pointIndex properties are defined.",
|
|
158
|
+
"type": "number"
|
|
159
|
+
},
|
|
160
|
+
"point": {
|
|
161
|
+
"description": "The point to move, which must already exist within the active sketch. If this property is undefined and no geometry and pointIndex are specified, the active point(s) will be moved."
|
|
162
|
+
},
|
|
163
|
+
"pointIndex": {
|
|
164
|
+
"description": "The index of the point. If this property is defined, the 'geometry' property must also be defined.",
|
|
165
|
+
"type": "number"
|
|
166
|
+
},
|
|
167
|
+
"units": {
|
|
168
|
+
"description": "The units of the above distance. Optional, will default to the units used by the measurement service associated with the map."
|
|
169
|
+
}
|
|
170
|
+
}
|
|
171
|
+
```
|
|
172
|
+
|
|
173
|
+
---
|
|
174
|
+
# command: sketching.redo
|
|
175
|
+
Description: Redoes the last undone edit while editing a geometry.
|
|
176
|
+
|
|
177
|
+
Inputs: `HasMaps`
|
|
178
|
+
|
|
179
|
+
HasMaps properties:
|
|
180
|
+
```json
|
|
181
|
+
{
|
|
182
|
+
"maps": {
|
|
183
|
+
"description": "Map(s) to use for the command/operation."
|
|
184
|
+
}
|
|
185
|
+
}
|
|
186
|
+
```
|
|
187
|
+
|
|
188
|
+
---
|
|
189
|
+
# command: sketching.set-active-points
|
|
190
|
+
Description: Switches the active point of an active sketch. Web only.
|
|
191
|
+
|
|
192
|
+
Inputs: `SetActivePointsArgs`
|
|
193
|
+
|
|
194
|
+
SetActivePointsArgs properties:
|
|
195
|
+
```json
|
|
196
|
+
{
|
|
197
|
+
"geometry": {
|
|
198
|
+
"description": "The geometry where the new active point exists, if multiple are present in an active editing session. This property is required if pointIndex and/or partIndex are defined."
|
|
199
|
+
},
|
|
200
|
+
"maps": {
|
|
201
|
+
"description": "Map(s) to use for the command/operation."
|
|
202
|
+
},
|
|
203
|
+
"partIndex": {
|
|
204
|
+
"description": "The part of the geometry where the new active point exists. Required for polyline and polygon geometry types when the geometry and pointIndex properties are defined.",
|
|
205
|
+
"type": "number"
|
|
206
|
+
},
|
|
207
|
+
"pointIndex": {
|
|
208
|
+
"description": "The index of the new active point. If this property is defined, the geometry property must be defined.",
|
|
209
|
+
"type": "number"
|
|
210
|
+
},
|
|
211
|
+
"points": {
|
|
212
|
+
"anyOf": [
|
|
213
|
+
{
|
|
214
|
+
"$ref": "#/definitions/esri.Point"
|
|
215
|
+
},
|
|
216
|
+
{
|
|
217
|
+
"items": {
|
|
218
|
+
"$ref": "#/definitions/esri.Point"
|
|
219
|
+
},
|
|
220
|
+
"type": "array"
|
|
221
|
+
}
|
|
222
|
+
],
|
|
223
|
+
"description": "The new point(s) that will become active in the sketch or editing session. Sketching only supports one active point; if multiple are specified, then only the first will be set as active."
|
|
224
|
+
}
|
|
225
|
+
}
|
|
226
|
+
```
|
|
227
|
+
|
|
228
|
+
---
|
|
229
|
+
# command: sketching.set-geometry-mode
|
|
230
|
+
Description: Sets the geometry mode of the geometry editor.
|
|
231
|
+
|
|
232
|
+
Inputs: `SetGeometryModeArgs`
|
|
233
|
+
|
|
234
|
+
SetGeometryModeArgs properties:
|
|
235
|
+
```json
|
|
236
|
+
{
|
|
237
|
+
"editorGeometryMode": {
|
|
238
|
+
"description": "The geometry mode to switch to. VertiGIS Studio Mobile only supports \"line\" and \"area\".",
|
|
239
|
+
"enum": [
|
|
240
|
+
"area",
|
|
241
|
+
"circle",
|
|
242
|
+
"extent",
|
|
243
|
+
"line",
|
|
244
|
+
"multipoint",
|
|
245
|
+
"point",
|
|
246
|
+
"polygon",
|
|
247
|
+
"polyline",
|
|
248
|
+
"square"
|
|
249
|
+
],
|
|
250
|
+
"type": "string",
|
|
251
|
+
"isRequired": "true"
|
|
252
|
+
},
|
|
253
|
+
"maps": {
|
|
254
|
+
"description": "Map(s) to use for the command/operation."
|
|
255
|
+
}
|
|
256
|
+
}
|
|
257
|
+
```
|
|
258
|
+
|
|
259
|
+
---
|
|
260
|
+
# command: sketching.set-snapping-configuration
|
|
261
|
+
Description: Sets the global snapping configuration.
|
|
262
|
+
|
|
263
|
+
Inputs: `SetSnappingConfigurationArgs`
|
|
264
|
+
|
|
265
|
+
SetSnappingConfigurationArgs properties:
|
|
266
|
+
```json
|
|
267
|
+
{
|
|
268
|
+
"config": {
|
|
269
|
+
"description": "The snapping properties to set.",
|
|
270
|
+
"isRequired": "true"
|
|
271
|
+
},
|
|
272
|
+
"maps": {
|
|
273
|
+
"description": "Map(s) to use for the command/operation."
|
|
274
|
+
},
|
|
275
|
+
"mode": {
|
|
276
|
+
"description": "Whether the config should be replace, or merged. Defaults to \"merge\".",
|
|
277
|
+
"enum": [
|
|
278
|
+
"merge",
|
|
279
|
+
"replace"
|
|
280
|
+
],
|
|
281
|
+
"type": "string"
|
|
282
|
+
}
|
|
283
|
+
}
|
|
284
|
+
```
|
|
285
|
+
|
|
286
|
+
---
|
|
287
|
+
# command: sketching.set-topology-configuration
|
|
288
|
+
Description: Sets the topology configuration. Web only.
|
|
289
|
+
|
|
290
|
+
Inputs: `SetTopologyConfigurationArgs`
|
|
291
|
+
|
|
292
|
+
SetTopologyConfigurationArgs properties:
|
|
293
|
+
```json
|
|
294
|
+
{
|
|
295
|
+
"config": {
|
|
296
|
+
"description": "The topology properties to set.",
|
|
297
|
+
"isRequired": "true"
|
|
298
|
+
},
|
|
299
|
+
"maps": {
|
|
300
|
+
"description": "Map(s) to use for the command/operation."
|
|
301
|
+
},
|
|
302
|
+
"mode": {
|
|
303
|
+
"description": "Whether the config should be replace, or merged. Defaults to \"merge\".",
|
|
304
|
+
"enum": [
|
|
305
|
+
"merge",
|
|
306
|
+
"replace"
|
|
307
|
+
],
|
|
308
|
+
"type": "string"
|
|
309
|
+
}
|
|
310
|
+
}
|
|
311
|
+
```
|
|
312
|
+
|
|
313
|
+
---
|
|
314
|
+
# command: sketching.undo
|
|
315
|
+
Description: Undoes the last edit while editing a geometry.
|
|
316
|
+
|
|
317
|
+
Inputs: `HasMaps`
|
|
318
|
+
|
|
319
|
+
HasMaps properties:
|
|
320
|
+
```json
|
|
321
|
+
{
|
|
322
|
+
"maps": {
|
|
323
|
+
"description": "Map(s) to use for the command/operation."
|
|
324
|
+
}
|
|
325
|
+
}
|
|
326
|
+
```
|
|
327
|
+
|
|
328
|
+
---
|