@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
|
@@ -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")}}
|
|
@@ -42,7 +42,6 @@
|
|
|
42
42
|
"additionalProperties": false,
|
|
43
43
|
"properties": {
|
|
44
44
|
"item": {
|
|
45
|
-
"$ref": "T",
|
|
46
45
|
"description": "The item to add or remove from the collection."
|
|
47
46
|
}
|
|
48
47
|
},
|
|
@@ -722,7 +721,6 @@
|
|
|
722
721
|
"type": "boolean"
|
|
723
722
|
},
|
|
724
723
|
"intersectedGraphic": {
|
|
725
|
-
"$ref": "T_22",
|
|
726
724
|
"description": "The first [Graphic](https://developers.arcgis.com/javascript/latest/references/core/Graphic/) intersected by the line of sight. If no graphic is intersected then this property is `null`."
|
|
727
725
|
},
|
|
728
726
|
"intersectedLocation": {
|
|
@@ -730,7 +728,6 @@
|
|
|
730
728
|
"description": "A [Point](https://developers.arcgis.com/javascript/latest/references/core/geometry/Point/) representing the location where the line of sight first intersects the ground or 3D objects in the scene. If the target is visible this property is `null`."
|
|
731
729
|
},
|
|
732
730
|
"target": {
|
|
733
|
-
"$ref": "T_16",
|
|
734
731
|
"description": "Represents a target in a [LineOfSightAnalysis](https://developers.arcgis.com/javascript/latest/references/core/analysis/LineOfSightAnalysis/) which is used to calculate the visibility from the [LineOfSightAnalysis.observer](https://developers.arcgis.com/javascript/latest/references/core/analysis/LineOfSightAnalysis/#observer)."
|
|
735
732
|
},
|
|
736
733
|
"visible": {
|
|
@@ -1188,9 +1185,6 @@
|
|
|
1188
1185
|
{
|
|
1189
1186
|
"$ref": "#/definitions/@arcgis.core.geometry.Point.Point"
|
|
1190
1187
|
},
|
|
1191
|
-
{
|
|
1192
|
-
"$ref": "T_6"
|
|
1193
|
-
},
|
|
1194
1188
|
{
|
|
1195
1189
|
"$ref": "#/definitions/@arcgis.core.geometry.Polyline.Polyline"
|
|
1196
1190
|
},
|
|
@@ -1248,9 +1242,6 @@
|
|
|
1248
1242
|
"anyOf": [
|
|
1249
1243
|
{
|
|
1250
1244
|
"$ref": "#/definitions/@vertigis.arcgis-extensions.Hyperlink.HyperlinkProperties"
|
|
1251
|
-
},
|
|
1252
|
-
{
|
|
1253
|
-
"$ref": "T_40"
|
|
1254
1245
|
}
|
|
1255
1246
|
]
|
|
1256
1247
|
},
|
|
@@ -1277,9 +1268,6 @@
|
|
|
1277
1268
|
"anyOf": [
|
|
1278
1269
|
{
|
|
1279
1270
|
"$ref": "#/definitions/@vertigis.arcgis-extensions.data.PopupContentExtension.PopupContentExtensionProperties"
|
|
1280
|
-
},
|
|
1281
|
-
{
|
|
1282
|
-
"$ref": "T_39"
|
|
1283
1271
|
}
|
|
1284
1272
|
]
|
|
1285
1273
|
},
|
|
@@ -1325,9 +1313,6 @@
|
|
|
1325
1313
|
},
|
|
1326
1314
|
"field": {
|
|
1327
1315
|
"anyOf": [
|
|
1328
|
-
{
|
|
1329
|
-
"$ref": "T_42"
|
|
1330
|
-
},
|
|
1331
1316
|
{
|
|
1332
1317
|
"$ref": "#/definitions/@vertigis.arcgis-extensions.data.FieldExtension.FieldProperties"
|
|
1333
1318
|
},
|
|
@@ -1529,9 +1514,6 @@
|
|
|
1529
1514
|
"anyOf": [
|
|
1530
1515
|
{
|
|
1531
1516
|
"$ref": "#/definitions/@vertigis.arcgis-extensions.data.FieldExtension.FieldExtensionProperties"
|
|
1532
|
-
},
|
|
1533
|
-
{
|
|
1534
|
-
"$ref": "T_41"
|
|
1535
1517
|
}
|
|
1536
1518
|
]
|
|
1537
1519
|
},
|
|
@@ -1541,9 +1523,6 @@
|
|
|
1541
1523
|
"description": "See {@link data /Schema!Schema.fields}.",
|
|
1542
1524
|
"items": {
|
|
1543
1525
|
"anyOf": [
|
|
1544
|
-
{
|
|
1545
|
-
"$ref": "T_42"
|
|
1546
|
-
},
|
|
1547
1526
|
{
|
|
1548
1527
|
"$ref": "#/definitions/esri.rest-api.FieldJson.FieldJson"
|
|
1549
1528
|
}
|
|
@@ -1882,9 +1861,6 @@
|
|
|
1882
1861
|
"@vertigis.arcgis-extensions.tasks.geocoding.Geocoder.AddressLike": {
|
|
1883
1862
|
"anyOf": [
|
|
1884
1863
|
{},
|
|
1885
|
-
{
|
|
1886
|
-
"$ref": "T_60"
|
|
1887
|
-
},
|
|
1888
1864
|
{
|
|
1889
1865
|
"type": "string"
|
|
1890
1866
|
}
|
|
@@ -1930,7 +1906,6 @@
|
|
|
1930
1906
|
"description": "Raised after an item is added or removed from an {@link ObservableMap}.",
|
|
1931
1907
|
"properties": {
|
|
1932
1908
|
"item": {
|
|
1933
|
-
"$ref": "T_45",
|
|
1934
1909
|
"description": "The item to add or remove from the collection."
|
|
1935
1910
|
},
|
|
1936
1911
|
"target": {
|
|
@@ -2604,9 +2579,6 @@
|
|
|
2604
2579
|
{
|
|
2605
2580
|
"$ref": "#/definitions/@arcgis.core.Graphic.Graphic"
|
|
2606
2581
|
},
|
|
2607
|
-
{
|
|
2608
|
-
"$ref": "T_60"
|
|
2609
|
-
},
|
|
2610
2582
|
{
|
|
2611
2583
|
"$ref": "@vertigis.arcgis-extensions.data.FeatureSet.FeatureSet"
|
|
2612
2584
|
},
|
|
@@ -2621,9 +2593,6 @@
|
|
|
2621
2593
|
"anyOf": [
|
|
2622
2594
|
{
|
|
2623
2595
|
"$ref": "@vertigis.arcgis-extensions.data.Feature.FeatureProperties"
|
|
2624
|
-
},
|
|
2625
|
-
{
|
|
2626
|
-
"$ref": "T_60"
|
|
2627
2596
|
}
|
|
2628
2597
|
]
|
|
2629
2598
|
},
|
|
@@ -2638,9 +2607,6 @@
|
|
|
2638
2607
|
{
|
|
2639
2608
|
"$ref": "#/definitions/@arcgis.core.geometry.Point.Point"
|
|
2640
2609
|
},
|
|
2641
|
-
{
|
|
2642
|
-
"$ref": "T_6"
|
|
2643
|
-
},
|
|
2644
2610
|
{
|
|
2645
2611
|
"$ref": "#/definitions/@arcgis.core.geometry.Polyline.Polyline"
|
|
2646
2612
|
},
|
|
@@ -2693,9 +2659,6 @@
|
|
|
2693
2659
|
{
|
|
2694
2660
|
"$ref": "#/definitions/@arcgis.core.geometry.Point.Point"
|
|
2695
2661
|
},
|
|
2696
|
-
{
|
|
2697
|
-
"$ref": "T_6"
|
|
2698
|
-
},
|
|
2699
2662
|
{
|
|
2700
2663
|
"$ref": "#/definitions/@arcgis.core.geometry.Polyline.Polyline"
|
|
2701
2664
|
},
|
|
@@ -3415,9 +3378,7 @@
|
|
|
3415
3378
|
"properties": {
|
|
3416
3379
|
"coincidentFeatures": {
|
|
3417
3380
|
"description": "Any coincident Features that were included in the geometry editing session, if topological editing was enabled. Web only.",
|
|
3418
|
-
"items": {
|
|
3419
|
-
"$ref": "T_60"
|
|
3420
|
-
},
|
|
3381
|
+
"items": {},
|
|
3421
3382
|
"type": "array"
|
|
3422
3383
|
},
|
|
3423
3384
|
"coincidentGraphics": {
|
|
@@ -3674,9 +3635,6 @@
|
|
|
3674
3635
|
},
|
|
3675
3636
|
"Features": {
|
|
3676
3637
|
"anyOf": [
|
|
3677
|
-
{
|
|
3678
|
-
"$ref": "T_60"
|
|
3679
|
-
},
|
|
3680
3638
|
{
|
|
3681
3639
|
"$ref": "@vertigis.arcgis-extensions.data.FeatureSet.FeatureSet"
|
|
3682
3640
|
},
|
|
@@ -3691,9 +3649,6 @@
|
|
|
3691
3649
|
"anyOf": [
|
|
3692
3650
|
{
|
|
3693
3651
|
"$ref": "@vertigis.arcgis-extensions.data.Feature.FeatureProperties"
|
|
3694
|
-
},
|
|
3695
|
-
{
|
|
3696
|
-
"$ref": "T_60"
|
|
3697
3652
|
}
|
|
3698
3653
|
]
|
|
3699
3654
|
},
|
|
@@ -3724,9 +3679,6 @@
|
|
|
3724
3679
|
"anyOf": [
|
|
3725
3680
|
{
|
|
3726
3681
|
"$ref": "@vertigis.arcgis-extensions.data.Feature.FeatureProperties"
|
|
3727
|
-
},
|
|
3728
|
-
{
|
|
3729
|
-
"$ref": "T_60"
|
|
3730
3682
|
}
|
|
3731
3683
|
]
|
|
3732
3684
|
},
|
|
@@ -3821,9 +3773,6 @@
|
|
|
3821
3773
|
},
|
|
3822
3774
|
"sublayer": {
|
|
3823
3775
|
"anyOf": [
|
|
3824
|
-
{
|
|
3825
|
-
"$ref": "T_9"
|
|
3826
|
-
},
|
|
3827
3776
|
{
|
|
3828
3777
|
"type": "number"
|
|
3829
3778
|
}
|
|
@@ -3955,9 +3904,6 @@
|
|
|
3955
3904
|
{
|
|
3956
3905
|
"$ref": "#/definitions/@arcgis.core.Graphic.Graphic"
|
|
3957
3906
|
},
|
|
3958
|
-
{
|
|
3959
|
-
"$ref": "T_60"
|
|
3960
|
-
},
|
|
3961
3907
|
{
|
|
3962
3908
|
"$ref": "@vertigis.arcgis-extensions.data.FeatureSet.FeatureSet"
|
|
3963
3909
|
},
|
|
@@ -3972,9 +3918,6 @@
|
|
|
3972
3918
|
"anyOf": [
|
|
3973
3919
|
{
|
|
3974
3920
|
"$ref": "@vertigis.arcgis-extensions.data.Feature.FeatureProperties"
|
|
3975
|
-
},
|
|
3976
|
-
{
|
|
3977
|
-
"$ref": "T_60"
|
|
3978
3921
|
}
|
|
3979
3922
|
]
|
|
3980
3923
|
},
|
|
@@ -3989,9 +3932,6 @@
|
|
|
3989
3932
|
{
|
|
3990
3933
|
"$ref": "#/definitions/@arcgis.core.geometry.Point.Point"
|
|
3991
3934
|
},
|
|
3992
|
-
{
|
|
3993
|
-
"$ref": "T_6"
|
|
3994
|
-
},
|
|
3995
3935
|
{
|
|
3996
3936
|
"$ref": "#/definitions/@arcgis.core.geometry.Polyline.Polyline"
|
|
3997
3937
|
},
|
|
@@ -4044,9 +3984,6 @@
|
|
|
4044
3984
|
{
|
|
4045
3985
|
"$ref": "#/definitions/@arcgis.core.geometry.Point.Point"
|
|
4046
3986
|
},
|
|
4047
|
-
{
|
|
4048
|
-
"$ref": "T_6"
|
|
4049
|
-
},
|
|
4050
3987
|
{
|
|
4051
3988
|
"$ref": "#/definitions/@arcgis.core.geometry.Polyline.Polyline"
|
|
4052
3989
|
},
|
|
@@ -4086,9 +4023,6 @@
|
|
|
4086
4023
|
{
|
|
4087
4024
|
"$ref": "#/definitions/@arcgis.core.geometry.Point.Point"
|
|
4088
4025
|
},
|
|
4089
|
-
{
|
|
4090
|
-
"$ref": "T_6"
|
|
4091
|
-
},
|
|
4092
4026
|
{
|
|
4093
4027
|
"$ref": "#/definitions/@arcgis.core.geometry.Polyline.Polyline"
|
|
4094
4028
|
},
|
|
@@ -4109,9 +4043,6 @@
|
|
|
4109
4043
|
{
|
|
4110
4044
|
"$ref": "#/definitions/@arcgis.core.geometry.Point.Point"
|
|
4111
4045
|
},
|
|
4112
|
-
{
|
|
4113
|
-
"$ref": "T_6"
|
|
4114
|
-
},
|
|
4115
4046
|
{
|
|
4116
4047
|
"$ref": "#/definitions/@arcgis.core.geometry.Polyline.Polyline"
|
|
4117
4048
|
}
|
|
@@ -5180,9 +5111,6 @@
|
|
|
5180
5111
|
},
|
|
5181
5112
|
"ShowResultsArgs": {
|
|
5182
5113
|
"anyOf": [
|
|
5183
|
-
{
|
|
5184
|
-
"$ref": "T_60"
|
|
5185
|
-
},
|
|
5186
5114
|
{
|
|
5187
5115
|
"$ref": "@vertigis.arcgis-extensions.data.FeatureSet.FeatureSet"
|
|
5188
5116
|
},
|
|
@@ -5197,9 +5125,6 @@
|
|
|
5197
5125
|
"anyOf": [
|
|
5198
5126
|
{
|
|
5199
5127
|
"$ref": "@vertigis.arcgis-extensions.data.Feature.FeatureProperties"
|
|
5200
|
-
},
|
|
5201
|
-
{
|
|
5202
|
-
"$ref": "T_60"
|
|
5203
5128
|
}
|
|
5204
5129
|
]
|
|
5205
5130
|
},
|
|
@@ -5979,9 +5904,6 @@
|
|
|
5979
5904
|
{
|
|
5980
5905
|
"$ref": "#/definitions/esri.rest-api.ViewpointJson.ViewpointJson"
|
|
5981
5906
|
},
|
|
5982
|
-
{
|
|
5983
|
-
"$ref": "T_52"
|
|
5984
|
-
},
|
|
5985
5907
|
{
|
|
5986
5908
|
"type": "string"
|
|
5987
5909
|
}
|
|
@@ -6087,9 +6009,6 @@
|
|
|
6087
6009
|
{
|
|
6088
6010
|
"$ref": "#/definitions/@arcgis.core.Graphic.Graphic"
|
|
6089
6011
|
},
|
|
6090
|
-
{
|
|
6091
|
-
"$ref": "T_60"
|
|
6092
|
-
},
|
|
6093
6012
|
{
|
|
6094
6013
|
"$ref": "@vertigis.arcgis-extensions.data.FeatureSet.FeatureSet"
|
|
6095
6014
|
},
|
|
@@ -6104,9 +6023,6 @@
|
|
|
6104
6023
|
"anyOf": [
|
|
6105
6024
|
{
|
|
6106
6025
|
"$ref": "@vertigis.arcgis-extensions.data.Feature.FeatureProperties"
|
|
6107
|
-
},
|
|
6108
|
-
{
|
|
6109
|
-
"$ref": "T_60"
|
|
6110
6026
|
}
|
|
6111
6027
|
]
|
|
6112
6028
|
},
|
|
@@ -6121,9 +6037,6 @@
|
|
|
6121
6037
|
{
|
|
6122
6038
|
"$ref": "#/definitions/@arcgis.core.geometry.Point.Point"
|
|
6123
6039
|
},
|
|
6124
|
-
{
|
|
6125
|
-
"$ref": "T_6"
|
|
6126
|
-
},
|
|
6127
6040
|
{
|
|
6128
6041
|
"$ref": "#/definitions/@arcgis.core.geometry.Polyline.Polyline"
|
|
6129
6042
|
},
|
|
@@ -6176,9 +6089,6 @@
|
|
|
6176
6089
|
{
|
|
6177
6090
|
"$ref": "#/definitions/@arcgis.core.geometry.Point.Point"
|
|
6178
6091
|
},
|
|
6179
|
-
{
|
|
6180
|
-
"$ref": "T_6"
|
|
6181
|
-
},
|
|
6182
6092
|
{
|
|
6183
6093
|
"$ref": "#/definitions/@arcgis.core.geometry.Polyline.Polyline"
|
|
6184
6094
|
},
|
|
@@ -6251,9 +6161,6 @@
|
|
|
6251
6161
|
},
|
|
6252
6162
|
"edit.add-feature:input": {
|
|
6253
6163
|
"anyOf": [
|
|
6254
|
-
{
|
|
6255
|
-
"$ref": "T_60"
|
|
6256
|
-
},
|
|
6257
6164
|
{
|
|
6258
6165
|
"$ref": "@vertigis.arcgis-extensions.data.FeatureSet.FeatureSet"
|
|
6259
6166
|
},
|
|
@@ -6268,9 +6175,6 @@
|
|
|
6268
6175
|
"anyOf": [
|
|
6269
6176
|
{
|
|
6270
6177
|
"$ref": "@vertigis.arcgis-extensions.data.Feature.FeatureProperties"
|
|
6271
|
-
},
|
|
6272
|
-
{
|
|
6273
|
-
"$ref": "T_60"
|
|
6274
6178
|
}
|
|
6275
6179
|
]
|
|
6276
6180
|
},
|
|
@@ -6301,9 +6205,6 @@
|
|
|
6301
6205
|
},
|
|
6302
6206
|
"edit.delete-features:input": {
|
|
6303
6207
|
"anyOf": [
|
|
6304
|
-
{
|
|
6305
|
-
"$ref": "T_60"
|
|
6306
|
-
},
|
|
6307
6208
|
{
|
|
6308
6209
|
"$ref": "@vertigis.arcgis-extensions.data.FeatureSet.FeatureSet"
|
|
6309
6210
|
},
|
|
@@ -6318,9 +6219,6 @@
|
|
|
6318
6219
|
"anyOf": [
|
|
6319
6220
|
{
|
|
6320
6221
|
"$ref": "@vertigis.arcgis-extensions.data.Feature.FeatureProperties"
|
|
6321
|
-
},
|
|
6322
|
-
{
|
|
6323
|
-
"$ref": "T_60"
|
|
6324
6222
|
}
|
|
6325
6223
|
]
|
|
6326
6224
|
},
|
|
@@ -6367,9 +6265,6 @@
|
|
|
6367
6265
|
},
|
|
6368
6266
|
"edit.display-update-feature:input": {
|
|
6369
6267
|
"anyOf": [
|
|
6370
|
-
{
|
|
6371
|
-
"$ref": "T_60"
|
|
6372
|
-
},
|
|
6373
6268
|
{
|
|
6374
6269
|
"$ref": "#/definitions/DisplayUpdateFeatureArgs"
|
|
6375
6270
|
}
|
|
@@ -6383,9 +6278,6 @@
|
|
|
6383
6278
|
},
|
|
6384
6279
|
"edit.update-feature:input": {
|
|
6385
6280
|
"anyOf": [
|
|
6386
|
-
{
|
|
6387
|
-
"$ref": "T_60"
|
|
6388
|
-
},
|
|
6389
6281
|
{
|
|
6390
6282
|
"$ref": "@vertigis.arcgis-extensions.data.FeatureSet.FeatureSet"
|
|
6391
6283
|
},
|
|
@@ -6400,9 +6292,6 @@
|
|
|
6400
6292
|
"anyOf": [
|
|
6401
6293
|
{
|
|
6402
6294
|
"$ref": "@vertigis.arcgis-extensions.data.Feature.FeatureProperties"
|
|
6403
|
-
},
|
|
6404
|
-
{
|
|
6405
|
-
"$ref": "T_60"
|
|
6406
6295
|
}
|
|
6407
6296
|
]
|
|
6408
6297
|
},
|
|
@@ -17529,9 +17418,7 @@
|
|
|
17529
17418
|
"geocode.reverse-geocode:input": {
|
|
17530
17419
|
"$ref": "#/definitions/ReverseGeocodeArgs"
|
|
17531
17420
|
},
|
|
17532
|
-
"geocode.reverse-geocode:output": {
|
|
17533
|
-
"$ref": "T_60"
|
|
17534
|
-
},
|
|
17421
|
+
"geocode.reverse-geocode:output": {},
|
|
17535
17422
|
"geocode.suggest": {
|
|
17536
17423
|
"description": "Suggests matching addresses to search for based on some input text. The geocoder must have the supportsSuggest capability.",
|
|
17537
17424
|
"enum": [
|
|
@@ -17878,9 +17765,6 @@
|
|
|
17878
17765
|
{
|
|
17879
17766
|
"$ref": "#/definitions/esri.rest-api.ViewpointJson.ViewpointJson"
|
|
17880
17767
|
},
|
|
17881
|
-
{
|
|
17882
|
-
"$ref": "T_52"
|
|
17883
|
-
},
|
|
17884
17768
|
{
|
|
17885
17769
|
"$ref": "#/definitions/ZoomToViewpointArgs"
|
|
17886
17770
|
}
|
|
@@ -17947,9 +17831,6 @@
|
|
|
17947
17831
|
},
|
|
17948
17832
|
"results.display-details:input": {
|
|
17949
17833
|
"anyOf": [
|
|
17950
|
-
{
|
|
17951
|
-
"$ref": "T_60"
|
|
17952
|
-
},
|
|
17953
17834
|
{
|
|
17954
17835
|
"$ref": "@vertigis.arcgis-extensions.data.FeatureSet.FeatureSet"
|
|
17955
17836
|
},
|
|
@@ -17964,9 +17845,6 @@
|
|
|
17964
17845
|
"anyOf": [
|
|
17965
17846
|
{
|
|
17966
17847
|
"$ref": "@vertigis.arcgis-extensions.data.Feature.FeatureProperties"
|
|
17967
|
-
},
|
|
17968
|
-
{
|
|
17969
|
-
"$ref": "T_60"
|
|
17970
17848
|
}
|
|
17971
17849
|
]
|
|
17972
17850
|
},
|
|
@@ -17988,9 +17866,6 @@
|
|
|
17988
17866
|
},
|
|
17989
17867
|
"results.display-new-details:input": {
|
|
17990
17868
|
"anyOf": [
|
|
17991
|
-
{
|
|
17992
|
-
"$ref": "T_60"
|
|
17993
|
-
},
|
|
17994
17869
|
{
|
|
17995
17870
|
"$ref": "@vertigis.arcgis-extensions.data.FeatureSet.FeatureSet"
|
|
17996
17871
|
},
|
|
@@ -18005,9 +17880,6 @@
|
|
|
18005
17880
|
"anyOf": [
|
|
18006
17881
|
{
|
|
18007
17882
|
"$ref": "@vertigis.arcgis-extensions.data.Feature.FeatureProperties"
|
|
18008
|
-
},
|
|
18009
|
-
{
|
|
18010
|
-
"$ref": "T_60"
|
|
18011
17883
|
}
|
|
18012
17884
|
]
|
|
18013
17885
|
},
|
|
@@ -18023,9 +17895,6 @@
|
|
|
18023
17895
|
},
|
|
18024
17896
|
"results.display:input": {
|
|
18025
17897
|
"anyOf": [
|
|
18026
|
-
{
|
|
18027
|
-
"$ref": "T_60"
|
|
18028
|
-
},
|
|
18029
17898
|
{
|
|
18030
17899
|
"$ref": "@vertigis.arcgis-extensions.data.FeatureSet.FeatureSet"
|
|
18031
17900
|
},
|
|
@@ -18040,9 +17909,6 @@
|
|
|
18040
17909
|
"anyOf": [
|
|
18041
17910
|
{
|
|
18042
17911
|
"$ref": "@vertigis.arcgis-extensions.data.Feature.FeatureProperties"
|
|
18043
|
-
},
|
|
18044
|
-
{
|
|
18045
|
-
"$ref": "T_60"
|
|
18046
17912
|
}
|
|
18047
17913
|
]
|
|
18048
17914
|
},
|
|
@@ -30,7 +30,6 @@
|
|
|
30
30
|
"additionalProperties": false,
|
|
31
31
|
"properties": {
|
|
32
32
|
"item": {
|
|
33
|
-
"$ref": "T",
|
|
34
33
|
"description": "The item to add or remove from the collection."
|
|
35
34
|
}
|
|
36
35
|
},
|
|
@@ -689,7 +688,6 @@
|
|
|
689
688
|
"type": "boolean"
|
|
690
689
|
},
|
|
691
690
|
"intersectedGraphic": {
|
|
692
|
-
"$ref": "T_22",
|
|
693
691
|
"description": "The first [Graphic](https://developers.arcgis.com/javascript/latest/references/core/Graphic/) intersected by the line of sight. If no graphic is intersected then this property is `null`."
|
|
694
692
|
},
|
|
695
693
|
"intersectedLocation": {
|
|
@@ -697,7 +695,6 @@
|
|
|
697
695
|
"description": "A [Point](https://developers.arcgis.com/javascript/latest/references/core/geometry/Point/) representing the location where the line of sight first intersects the ground or 3D objects in the scene. If the target is visible this property is `null`."
|
|
698
696
|
},
|
|
699
697
|
"target": {
|
|
700
|
-
"$ref": "T_16",
|
|
701
698
|
"description": "Represents a target in a [LineOfSightAnalysis](https://developers.arcgis.com/javascript/latest/references/core/analysis/LineOfSightAnalysis/) which is used to calculate the visibility from the [LineOfSightAnalysis.observer](https://developers.arcgis.com/javascript/latest/references/core/analysis/LineOfSightAnalysis/#observer)."
|
|
702
699
|
},
|
|
703
700
|
"visible": {
|
|
@@ -1274,7 +1271,6 @@
|
|
|
1274
1271
|
"description": "Raised after an item is added or removed from an {@link ObservableMap}.",
|
|
1275
1272
|
"properties": {
|
|
1276
1273
|
"item": {
|
|
1277
|
-
"$ref": "T_37",
|
|
1278
1274
|
"description": "The item to add or remove from the collection."
|
|
1279
1275
|
},
|
|
1280
1276
|
"target": {
|
|
@@ -1816,9 +1812,6 @@
|
|
|
1816
1812
|
{
|
|
1817
1813
|
"$ref": "#/definitions/@arcgis.core.geometry.Point.Point"
|
|
1818
1814
|
},
|
|
1819
|
-
{
|
|
1820
|
-
"$ref": "T_6"
|
|
1821
|
-
},
|
|
1822
1815
|
{
|
|
1823
1816
|
"$ref": "#/definitions/@arcgis.core.geometry.Polyline.Polyline"
|
|
1824
1817
|
},
|