@vertigis/viewer-spec 61.6.0 → 61.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/registry/layers.d.ts +11 -0
- package/messaging/registry/layers.js +1 -1
- package/messaging/registry/results.d.ts +17 -0
- package/messaging/registry/results.js +1 -1
- package/messaging/schema/web-action.schema.json +135 -0
- package/messaging/schema/web-layers-operation-definitions.md +22 -0
- package/messaging/schema/web-results-operation-definitions.md +99 -0
- package/package.json +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
|
@@ -94,6 +94,11 @@ export interface LayerSettingsArgs extends HasLayerSettings, HasLayers, HasSymbo
|
|
|
94
94
|
*/
|
|
95
95
|
export interface FromKmlArgs extends HasFiles {
|
|
96
96
|
}
|
|
97
|
+
/**
|
|
98
|
+
* Arguments for the layers.from-lpkx operation.
|
|
99
|
+
*/
|
|
100
|
+
export interface FromLpkxArgs extends HasFiles {
|
|
101
|
+
}
|
|
97
102
|
/**
|
|
98
103
|
* Arguments for the layers.from-fgdb operation.
|
|
99
104
|
*/
|
|
@@ -287,6 +292,12 @@ export declare class LayersOperations extends OperationRegistry {
|
|
|
287
292
|
* @webOnly
|
|
288
293
|
*/
|
|
289
294
|
get fromFgdb(): Operation<FromFgdbArgs | Blob | Blob[], HasLayers>;
|
|
295
|
+
/**
|
|
296
|
+
* Convert the specified LPKX blob to layers. Web only.
|
|
297
|
+
*
|
|
298
|
+
* @webOnly
|
|
299
|
+
*/
|
|
300
|
+
get fromLpkx(): Operation<FromLpkxArgs | Blob | Blob[], HasLayers>;
|
|
290
301
|
/**
|
|
291
302
|
* Convert the specified DXF blob to layers. If spatial references are not
|
|
292
303
|
* specified, Web defaults both the input and output to the active map's
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{CommandRegistry as e}from"../CommandRegistry.js";import{EventRegistry as t}from"../EventRegistry.js";import{OperationRegistry as s}from"../OperationRegistry.js";export class LayersCommands extends e{_prefix="layers";get ensureCanSetSymbol(){return this._get("ensure-can-set-symbol")}get resetDefinitionExpression(){return this._get("reset-definition-expression")}get resetSymbol(){return this._get("reset-symbol")}get setDefinitionExpression(){return this._get("set-definition-expression")}get setLabelClasses(){return this._get("set-label-classes")}get setPopupTemplate(){return this._get("set-popup-template")}get setSymbol(){return this._get("set-symbol")}get setTaskSettings(){return this._get("set-task-settings")}get setTitle(){return this._get("set-title")}get setVisibility(){return this._get("set-visibility")}get showLabels(){return this._get("show-labels")}get hideLabels(){return this._get("hide-labels")}}export class LayersOperations extends s{_prefix="layers";get getPopupTemplate(){return this._get("get-popup-template")}get getLabelClasses(){return this._get("get-label-classes")}get getTaskSettings(){return this._get("get-task-settings")}get getTitle(){return this._get("get-title")}get editSettings(){return this._get("edit-settings")}get editLabelSettings(){return this._get("edit-symbol-settings")}get editSymbols(){return this._get("edit-symbols")}get fromKml(){return this._get("from-kml")}get fromFgdb(){return this._get("from-fgdb")}get fromDxf(){return this._get("from-dxf")}get fromUrl(){return this._get("from-url")}}export class LayersEvents extends t{_prefix="layers";get definitionExpressionChanged(){return this._get("definition-expression-changed")}get visibilityChanged(){return this._get("visibility-changed")}}
|
|
1
|
+
import{CommandRegistry as e}from"../CommandRegistry.js";import{EventRegistry as t}from"../EventRegistry.js";import{OperationRegistry as s}from"../OperationRegistry.js";export class LayersCommands extends e{_prefix="layers";get ensureCanSetSymbol(){return this._get("ensure-can-set-symbol")}get resetDefinitionExpression(){return this._get("reset-definition-expression")}get resetSymbol(){return this._get("reset-symbol")}get setDefinitionExpression(){return this._get("set-definition-expression")}get setLabelClasses(){return this._get("set-label-classes")}get setPopupTemplate(){return this._get("set-popup-template")}get setSymbol(){return this._get("set-symbol")}get setTaskSettings(){return this._get("set-task-settings")}get setTitle(){return this._get("set-title")}get setVisibility(){return this._get("set-visibility")}get showLabels(){return this._get("show-labels")}get hideLabels(){return this._get("hide-labels")}}export class LayersOperations extends s{_prefix="layers";get getPopupTemplate(){return this._get("get-popup-template")}get getLabelClasses(){return this._get("get-label-classes")}get getTaskSettings(){return this._get("get-task-settings")}get getTitle(){return this._get("get-title")}get editSettings(){return this._get("edit-settings")}get editLabelSettings(){return this._get("edit-symbol-settings")}get editSymbols(){return this._get("edit-symbols")}get fromKml(){return this._get("from-kml")}get fromFgdb(){return this._get("from-fgdb")}get fromLpkx(){return this._get("from-lpkx")}get fromDxf(){return this._get("from-dxf")}get fromUrl(){return this._get("from-url")}}export class LayersEvents extends t{_prefix="layers";get definitionExpressionChanged(){return this._get("definition-expression-changed")}get visibilityChanged(){return this._get("visibility-changed")}}
|
|
@@ -64,6 +64,15 @@ export interface ToCsvConversionArgs extends ToCsvOptions {
|
|
|
64
64
|
*/
|
|
65
65
|
features: Features;
|
|
66
66
|
}
|
|
67
|
+
/**
|
|
68
|
+
* Arguments for the "results.convert-to-gpx" operation.
|
|
69
|
+
*/
|
|
70
|
+
export interface ToGpxConversionArgs {
|
|
71
|
+
/**
|
|
72
|
+
* The feature(s) to convert.
|
|
73
|
+
*/
|
|
74
|
+
features: Features;
|
|
75
|
+
}
|
|
67
76
|
/**
|
|
68
77
|
* Arguments for the "results.upload-data-args-to-feature" operation.
|
|
69
78
|
*/
|
|
@@ -578,6 +587,14 @@ export declare class ResultsOperations extends OperationRegistry {
|
|
|
578
587
|
* @webOnly
|
|
579
588
|
*/
|
|
580
589
|
get convertToCsv(): Operation<ToCsvConversionArgs | Features, ConversionResult>;
|
|
590
|
+
/**
|
|
591
|
+
* Converts the provided Feature(s) to a CSV file grouped by feature source.
|
|
592
|
+
* If there are multiple sources the CSV(s) will be bundled in a zip file.
|
|
593
|
+
* Web only.
|
|
594
|
+
*
|
|
595
|
+
* @webOnly
|
|
596
|
+
*/
|
|
597
|
+
get convertToGpx(): Operation<ToGpxConversionArgs | Features, ConversionResult>;
|
|
581
598
|
/**
|
|
582
599
|
* Converts the provided Feature(s) to a XLSX file grouped by feature
|
|
583
600
|
* source. If there are multiple sources the XLSX(s) will be bundled in a
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{CommandRegistry as t}from"../CommandRegistry.js";import{EventRegistry as e}from"../EventRegistry.js";import{OperationRegistry as r}from"../OperationRegistry.js";export var KnownResultSetIds;!function(t){t.STARRED="vgs-starred"}(KnownResultSetIds||(KnownResultSetIds={}));export class ResultsCommands extends t{_prefix="results";get activateDisplayComponents(){return this._get("activate-display-components")}get activateGroup(){return this._get("activate-group")}get display(){return this._get("display")}get setActiveFeature(){return this._get("set-active-feature")}get setDisplayComponents(){return this._get("set-display-components")}get displayDetails(){return this._get("display-details")}get displaySummary(){return this._get("display-summary")}get displayNewDetails(){return this._get("display-new-details")}get add(){return this._get("add")}get intersect(){return this._get("intersect")}get remove(){return this._get("remove")}get replace(){return this._get("replace")}get clear(){return this._get("clear")}get clearDetails(){return this._get("clear-details")}get hideDetails(){return this._get("hide-details")}get openAttachment(){return this._get("open-attachment")}get refresh(){return this._get("refresh")}get setListViewMode(){return this._get("set-list-view-mode")}get setListCardSize(){return this._get("set-list-card-size")}}export class ResultsEvents extends e{_prefix="results";get changed(){return this._get("changed")}get displayed(){return this._get("displayed")}get attachmentOpened(){return this._get("attachment-opened")}get detailsShown(){return this._get("details-shown")}get relatedDetailsShown(){return this._get("related-details-shown")}}export class ResultsOperations extends r{_prefix="results";get configureUploadData(){return this._get("configure-upload-data")}get contains(){return this._get("contains")}get convertToCsv(){return this._get("convert-to-csv")}get convertToXlsx(){return this._get("convert-to-xlsx")}get convertToShapefile(){return this._get("convert-to-shapefile")}get convertToLayers(){return this._get("convert-to-layers")}get fromCsv(){return this._get("from-csv")}get fromFiles(){return this._get("from-files")}get getActiveFeatures(){return this._get("get-active-features")}get uploadDataFromFiles(){return this._get("upload-data-from-files")}get uploadDataToFeatures(){return this._get("upload-data-to-features")}get fromShapefile(){return this._get("from-shapefile")}get fromXlsx(){return this._get("from-xlsx")}get fromGraphics(){return this._get("from-graphics")}get toGraphics(){return this._get("to-graphics")}get getFeatures(){return this._get("get-features")}get filter(){return this._get("filter")}}
|
|
1
|
+
import{CommandRegistry as t}from"../CommandRegistry.js";import{EventRegistry as e}from"../EventRegistry.js";import{OperationRegistry as r}from"../OperationRegistry.js";export var KnownResultSetIds;!function(t){t.STARRED="vgs-starred"}(KnownResultSetIds||(KnownResultSetIds={}));export class ResultsCommands extends t{_prefix="results";get activateDisplayComponents(){return this._get("activate-display-components")}get activateGroup(){return this._get("activate-group")}get display(){return this._get("display")}get setActiveFeature(){return this._get("set-active-feature")}get setDisplayComponents(){return this._get("set-display-components")}get displayDetails(){return this._get("display-details")}get displaySummary(){return this._get("display-summary")}get displayNewDetails(){return this._get("display-new-details")}get add(){return this._get("add")}get intersect(){return this._get("intersect")}get remove(){return this._get("remove")}get replace(){return this._get("replace")}get clear(){return this._get("clear")}get clearDetails(){return this._get("clear-details")}get hideDetails(){return this._get("hide-details")}get openAttachment(){return this._get("open-attachment")}get refresh(){return this._get("refresh")}get setListViewMode(){return this._get("set-list-view-mode")}get setListCardSize(){return this._get("set-list-card-size")}}export class ResultsEvents extends e{_prefix="results";get changed(){return this._get("changed")}get displayed(){return this._get("displayed")}get attachmentOpened(){return this._get("attachment-opened")}get detailsShown(){return this._get("details-shown")}get relatedDetailsShown(){return this._get("related-details-shown")}}export class ResultsOperations extends r{_prefix="results";get configureUploadData(){return this._get("configure-upload-data")}get contains(){return this._get("contains")}get convertToCsv(){return this._get("convert-to-csv")}get convertToGpx(){return this._get("convert-to-gpx")}get convertToXlsx(){return this._get("convert-to-xlsx")}get convertToShapefile(){return this._get("convert-to-shapefile")}get convertToLayers(){return this._get("convert-to-layers")}get fromCsv(){return this._get("from-csv")}get fromFiles(){return this._get("from-files")}get getActiveFeatures(){return this._get("get-active-features")}get uploadDataFromFiles(){return this._get("upload-data-from-files")}get uploadDataToFeatures(){return this._get("upload-data-to-features")}get fromShapefile(){return this._get("from-shapefile")}get fromXlsx(){return this._get("from-xlsx")}get fromGraphics(){return this._get("from-graphics")}get toGraphics(){return this._get("to-graphics")}get getFeatures(){return this._get("get-features")}get filter(){return this._get("filter")}}
|
|
@@ -5831,6 +5831,20 @@
|
|
|
5831
5831
|
},
|
|
5832
5832
|
"type": "object"
|
|
5833
5833
|
},
|
|
5834
|
+
"FromLpkxArgs": {
|
|
5835
|
+
"additionalProperties": false,
|
|
5836
|
+
"description": "Arguments for the layers.from-lpkx operation.",
|
|
5837
|
+
"properties": {
|
|
5838
|
+
"blobs": {
|
|
5839
|
+
"description": "The data files to use for the command/operation.",
|
|
5840
|
+
"items": {
|
|
5841
|
+
"$ref": "FileLike"
|
|
5842
|
+
},
|
|
5843
|
+
"type": "array"
|
|
5844
|
+
}
|
|
5845
|
+
},
|
|
5846
|
+
"type": "object"
|
|
5847
|
+
},
|
|
5834
5848
|
"FromShapefileConversionArgs": {
|
|
5835
5849
|
"additionalProperties": false,
|
|
5836
5850
|
"description": "Arguments for the \"results.from-shapefile\" operation.",
|
|
@@ -11088,6 +11102,20 @@
|
|
|
11088
11102
|
],
|
|
11089
11103
|
"type": "object"
|
|
11090
11104
|
},
|
|
11105
|
+
"ToGpxConversionArgs": {
|
|
11106
|
+
"additionalProperties": false,
|
|
11107
|
+
"description": "Arguments for the \"results.convert-to-gpx\" operation.",
|
|
11108
|
+
"properties": {
|
|
11109
|
+
"features": {
|
|
11110
|
+
"$ref": "#/definitions/Features",
|
|
11111
|
+
"description": "The feature(s) to convert."
|
|
11112
|
+
}
|
|
11113
|
+
},
|
|
11114
|
+
"required": [
|
|
11115
|
+
"features"
|
|
11116
|
+
],
|
|
11117
|
+
"type": "object"
|
|
11118
|
+
},
|
|
11091
11119
|
"ToShapefileConversionArgs": {
|
|
11092
11120
|
"additionalProperties": false,
|
|
11093
11121
|
"description": "Arguments for the \"results.convert-to-shapefile\" operation.",
|
|
@@ -25187,6 +25215,31 @@
|
|
|
25187
25215
|
"layers.from-kml:output": {
|
|
25188
25216
|
"$ref": "#/definitions/HasLayers"
|
|
25189
25217
|
},
|
|
25218
|
+
"layers.from-lpkx": {
|
|
25219
|
+
"description": "Convert the specified LPKX blob to layers. Web only.",
|
|
25220
|
+
"enum": [
|
|
25221
|
+
"layers.from-lpkx"
|
|
25222
|
+
]
|
|
25223
|
+
},
|
|
25224
|
+
"layers.from-lpkx:input": {
|
|
25225
|
+
"anyOf": [
|
|
25226
|
+
{
|
|
25227
|
+
"$ref": "#/definitions/FromLpkxArgs"
|
|
25228
|
+
},
|
|
25229
|
+
{
|
|
25230
|
+
"$ref": "global.Blob"
|
|
25231
|
+
},
|
|
25232
|
+
{
|
|
25233
|
+
"items": {
|
|
25234
|
+
"$ref": "global.Blob"
|
|
25235
|
+
},
|
|
25236
|
+
"type": "array"
|
|
25237
|
+
}
|
|
25238
|
+
]
|
|
25239
|
+
},
|
|
25240
|
+
"layers.from-lpkx:output": {
|
|
25241
|
+
"$ref": "#/definitions/HasLayers"
|
|
25242
|
+
},
|
|
25190
25243
|
"layers.from-url": {
|
|
25191
25244
|
"description": "Attempts to create layer(s) from a url. Web only.\n\nThe url could be to an ArcGIS Server Url, WMS, WFS, WMTS, GeoJson, GeoRss, Csv, Kml, kmz, OGC Feature Layer, or an Arcgis Portal Item.",
|
|
25192
25245
|
"enum": [
|
|
@@ -27159,6 +27212,50 @@
|
|
|
27159
27212
|
"results.convert-to-csv:output": {
|
|
27160
27213
|
"$ref": "#/definitions/ConversionResult"
|
|
27161
27214
|
},
|
|
27215
|
+
"results.convert-to-gpx": {
|
|
27216
|
+
"description": "Converts the provided Feature(s) to a CSV file grouped by feature source. If there are multiple sources the CSV(s) will be bundled in a zip file. Web only.",
|
|
27217
|
+
"enum": [
|
|
27218
|
+
"results.convert-to-gpx"
|
|
27219
|
+
]
|
|
27220
|
+
},
|
|
27221
|
+
"results.convert-to-gpx:input": {
|
|
27222
|
+
"anyOf": [
|
|
27223
|
+
{
|
|
27224
|
+
"$ref": "T_13"
|
|
27225
|
+
},
|
|
27226
|
+
{
|
|
27227
|
+
"$ref": "@vertigis.arcgis-extensions.data.FeatureSet.FeatureSet"
|
|
27228
|
+
},
|
|
27229
|
+
{
|
|
27230
|
+
"$ref": "@vertigis.arcgis-extensions.data.FeatureList.FeatureList"
|
|
27231
|
+
},
|
|
27232
|
+
{
|
|
27233
|
+
"$ref": "@vertigis.arcgis-extensions.data.FeatureStream.FeatureStream"
|
|
27234
|
+
},
|
|
27235
|
+
{
|
|
27236
|
+
"items": {
|
|
27237
|
+
"anyOf": [
|
|
27238
|
+
{
|
|
27239
|
+
"$ref": "@vertigis.arcgis-extensions.data.Feature.FeatureProperties"
|
|
27240
|
+
},
|
|
27241
|
+
{
|
|
27242
|
+
"$ref": "T_13"
|
|
27243
|
+
}
|
|
27244
|
+
]
|
|
27245
|
+
},
|
|
27246
|
+
"type": "array"
|
|
27247
|
+
},
|
|
27248
|
+
{
|
|
27249
|
+
"$ref": "#/definitions/Results"
|
|
27250
|
+
},
|
|
27251
|
+
{
|
|
27252
|
+
"$ref": "ToGpxConversionArgs"
|
|
27253
|
+
}
|
|
27254
|
+
]
|
|
27255
|
+
},
|
|
27256
|
+
"results.convert-to-gpx:output": {
|
|
27257
|
+
"$ref": "#/definitions/ConversionResult"
|
|
27258
|
+
},
|
|
27162
27259
|
"results.convert-to-layers": {
|
|
27163
27260
|
"description": "Creates layer(s) from the specified features. Web only.",
|
|
27164
27261
|
"enum": [
|
|
@@ -32347,6 +32444,22 @@
|
|
|
32347
32444
|
],
|
|
32348
32445
|
"type": "object"
|
|
32349
32446
|
},
|
|
32447
|
+
{
|
|
32448
|
+
"additionalProperties": false,
|
|
32449
|
+
"properties": {
|
|
32450
|
+
"arguments": {
|
|
32451
|
+
"$ref": "#/definitions/layers.from-lpkx:input"
|
|
32452
|
+
},
|
|
32453
|
+
"name": {
|
|
32454
|
+
"$ref": "#/definitions/layers.from-lpkx"
|
|
32455
|
+
}
|
|
32456
|
+
},
|
|
32457
|
+
"required": [
|
|
32458
|
+
"name",
|
|
32459
|
+
"arguments"
|
|
32460
|
+
],
|
|
32461
|
+
"type": "object"
|
|
32462
|
+
},
|
|
32350
32463
|
{
|
|
32351
32464
|
"additionalProperties": false,
|
|
32352
32465
|
"properties": {
|
|
@@ -32763,6 +32876,22 @@
|
|
|
32763
32876
|
],
|
|
32764
32877
|
"type": "object"
|
|
32765
32878
|
},
|
|
32879
|
+
{
|
|
32880
|
+
"additionalProperties": false,
|
|
32881
|
+
"properties": {
|
|
32882
|
+
"arguments": {
|
|
32883
|
+
"$ref": "#/definitions/results.convert-to-gpx:input"
|
|
32884
|
+
},
|
|
32885
|
+
"name": {
|
|
32886
|
+
"$ref": "#/definitions/results.convert-to-gpx"
|
|
32887
|
+
}
|
|
32888
|
+
},
|
|
32889
|
+
"required": [
|
|
32890
|
+
"name",
|
|
32891
|
+
"arguments"
|
|
32892
|
+
],
|
|
32893
|
+
"type": "object"
|
|
32894
|
+
},
|
|
32766
32895
|
{
|
|
32767
32896
|
"additionalProperties": false,
|
|
32768
32897
|
"properties": {
|
|
@@ -33549,6 +33678,9 @@
|
|
|
33549
33678
|
{
|
|
33550
33679
|
"$ref": "#/definitions/layers.from-kml"
|
|
33551
33680
|
},
|
|
33681
|
+
{
|
|
33682
|
+
"$ref": "#/definitions/layers.from-lpkx"
|
|
33683
|
+
},
|
|
33552
33684
|
{
|
|
33553
33685
|
"$ref": "#/definitions/layers.from-url"
|
|
33554
33686
|
},
|
|
@@ -33642,6 +33774,9 @@
|
|
|
33642
33774
|
{
|
|
33643
33775
|
"$ref": "#/definitions/results.convert-to-csv"
|
|
33644
33776
|
},
|
|
33777
|
+
{
|
|
33778
|
+
"$ref": "#/definitions/results.convert-to-gpx"
|
|
33779
|
+
},
|
|
33645
33780
|
{
|
|
33646
33781
|
"$ref": "#/definitions/results.convert-to-layers"
|
|
33647
33782
|
},
|
|
@@ -542,6 +542,28 @@ FromKmlArgs properties:
|
|
|
542
542
|
|
|
543
543
|
Outputs: `HasLayers`
|
|
544
544
|
|
|
545
|
+
---
|
|
546
|
+
# operation: layers.from-lpkx
|
|
547
|
+
Description: Convert the specified LPKX blob to layers. Web only.
|
|
548
|
+
|
|
549
|
+
Inputs: `( FromLpkxArgs | global.Blob | global.Blob[] )`
|
|
550
|
+
|
|
551
|
+
FromLpkxArgs properties:
|
|
552
|
+
```json
|
|
553
|
+
{
|
|
554
|
+
"blobs": {
|
|
555
|
+
"description": "The data files to use for the command/operation.",
|
|
556
|
+
"items": {
|
|
557
|
+
"$ref": "FileLike",
|
|
558
|
+
"FileLike": {}
|
|
559
|
+
},
|
|
560
|
+
"type": "array"
|
|
561
|
+
}
|
|
562
|
+
}
|
|
563
|
+
```
|
|
564
|
+
|
|
565
|
+
Outputs: `HasLayers`
|
|
566
|
+
|
|
545
567
|
---
|
|
546
568
|
# operation: layers.from-url
|
|
547
569
|
Description: Attempts to create layer(s) from a url. Web only.
|
|
@@ -180,6 +180,105 @@ ToCsvConversionArgs properties:
|
|
|
180
180
|
|
|
181
181
|
Outputs: `ConversionResult`
|
|
182
182
|
|
|
183
|
+
---
|
|
184
|
+
# operation: results.convert-to-gpx
|
|
185
|
+
Description: Converts the provided Feature(s) to a CSV file grouped by feature source. If there are multiple sources the CSV(s) will be bundled in a zip file. Web only.
|
|
186
|
+
|
|
187
|
+
Inputs: `( @vertigis.api-docs.Features FeatureSet|FeatureList|FeatureStream | T_13 | ( @vertigis.arcgis-extensions.data.Feature.FeatureProperties | T_13 )[] | Results | ToGpxConversionArgs )`
|
|
188
|
+
|
|
189
|
+
@vertigis.arcgis-extensions.data.Feature.FeatureProperties properties:
|
|
190
|
+
```json
|
|
191
|
+
{
|
|
192
|
+
"attributes": {
|
|
193
|
+
"anyOf": [
|
|
194
|
+
{},
|
|
195
|
+
{
|
|
196
|
+
"$ref": "Map"
|
|
197
|
+
}
|
|
198
|
+
],
|
|
199
|
+
"description": "The feature's attributes, keyed by field name."
|
|
200
|
+
},
|
|
201
|
+
"failureMode": {
|
|
202
|
+
"description": "See {@link support /InitializableBase!InitializableBase.failureMode}."
|
|
203
|
+
},
|
|
204
|
+
"geometry": {
|
|
205
|
+
"anyOf": [
|
|
206
|
+
{
|
|
207
|
+
"$ref": "#/definitions/@arcgis.core.geometry.Extent.Extent"
|
|
208
|
+
},
|
|
209
|
+
{
|
|
210
|
+
"$ref": "#/definitions/@arcgis.core.geometry.Multipoint.Multipoint"
|
|
211
|
+
},
|
|
212
|
+
{
|
|
213
|
+
"$ref": "#/definitions/@arcgis.core.geometry.Point.Point"
|
|
214
|
+
},
|
|
215
|
+
{
|
|
216
|
+
"$ref": "T_6"
|
|
217
|
+
},
|
|
218
|
+
{
|
|
219
|
+
"$ref": "#/definitions/@arcgis.core.geometry.Polyline.Polyline"
|
|
220
|
+
},
|
|
221
|
+
{
|
|
222
|
+
"$ref": "#/definitions/@arcgis.core.geometry.Mesh.Mesh"
|
|
223
|
+
},
|
|
224
|
+
{
|
|
225
|
+
"$ref": "#/definitions/esri.rest-api.GeometryJson.PointJson"
|
|
226
|
+
},
|
|
227
|
+
{
|
|
228
|
+
"$ref": "#/definitions/esri.rest-api.GeometryJson.MultipointJson"
|
|
229
|
+
},
|
|
230
|
+
{
|
|
231
|
+
"$ref": "#/definitions/esri.rest-api.GeometryJson.PolylineJson"
|
|
232
|
+
},
|
|
233
|
+
{
|
|
234
|
+
"$ref": "#/definitions/esri.rest-api.GeometryJson.PolygonJson"
|
|
235
|
+
},
|
|
236
|
+
{
|
|
237
|
+
"$ref": "#/definitions/esri.rest-api.GeometryJson.ExtentJson"
|
|
238
|
+
}
|
|
239
|
+
],
|
|
240
|
+
"description": "The feature's geometry."
|
|
241
|
+
},
|
|
242
|
+
"id": {
|
|
243
|
+
"description": "The unique ID to assign to the entity. If not specified, one will be generated.",
|
|
244
|
+
"type": "string"
|
|
245
|
+
},
|
|
246
|
+
"schema": {
|
|
247
|
+
"description": "Metadata about the feature, such as fields, domains, geometry type, etc."
|
|
248
|
+
},
|
|
249
|
+
"settings": {
|
|
250
|
+
"description": "Settings for this feature."
|
|
251
|
+
},
|
|
252
|
+
"source": {
|
|
253
|
+
"description": "The source of the feature."
|
|
254
|
+
}
|
|
255
|
+
}
|
|
256
|
+
```
|
|
257
|
+
|
|
258
|
+
Results properties:
|
|
259
|
+
```json
|
|
260
|
+
{
|
|
261
|
+
"features": {
|
|
262
|
+
"description": "Features to use for the command/operation."
|
|
263
|
+
},
|
|
264
|
+
"maps": {
|
|
265
|
+
"description": "Map(s) to use for the command/operation."
|
|
266
|
+
}
|
|
267
|
+
}
|
|
268
|
+
```
|
|
269
|
+
|
|
270
|
+
ToGpxConversionArgs properties:
|
|
271
|
+
```json
|
|
272
|
+
{
|
|
273
|
+
"features": {
|
|
274
|
+
"description": "The feature(s) to convert.",
|
|
275
|
+
"isRequired": "true"
|
|
276
|
+
}
|
|
277
|
+
}
|
|
278
|
+
```
|
|
279
|
+
|
|
280
|
+
Outputs: `ConversionResult`
|
|
281
|
+
|
|
183
282
|
---
|
|
184
283
|
# operation: results.convert-to-layers
|
|
185
284
|
Description: Creates layer(s) from the specified features. Web only.
|
package/package.json
CHANGED
package/version.d.ts
CHANGED
package/version.js
CHANGED