@vertigis/viewer-spec 47.3.0 → 47.5.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/app-config/schema/common-app-config.schema.json +1 -1
- package/app-config/schema/mobile-app-config.schema.json +1 -1
- package/app-config/schema/web-app-config.schema.json +1 -1
- package/app-config/web/FeatureInfoModelProperties.d.ts +15 -0
- package/messaging/common.d.ts +1 -1
- package/messaging/registry/edit.d.ts +87 -23
- package/messaging/registry/edit.js +1 -1
- package/messaging/registry/results.d.ts +10 -6
- package/messaging/registry/ui.d.ts +0 -2
- package/messaging/schema/common-action.schema.json +169 -30
- package/messaging/schema/common-event.schema.json +50 -6
- package/messaging/schema/mobile-action.schema.json +160 -30
- package/messaging/schema/mobile-event.schema.json +50 -6
- package/messaging/schema/web-action.schema.json +264 -34
- package/messaging/schema/web-event.schema.json +598 -14
- package/package.json +4 -4
- package/version.d.ts +1 -1
- package/version.js +1 -1
|
@@ -734,6 +734,9 @@
|
|
|
734
734
|
},
|
|
735
735
|
"symbol": {
|
|
736
736
|
"anyOf": [
|
|
737
|
+
{
|
|
738
|
+
"$ref": "#/definitions/esri.rest-api.CIMSymbol.CIMSymbol"
|
|
739
|
+
},
|
|
737
740
|
{
|
|
738
741
|
"$ref": "#/definitions/esri.rest-api.SimpleLineSymbol.SimpleLineSymbol"
|
|
739
742
|
},
|
|
@@ -955,13 +958,6 @@
|
|
|
955
958
|
"additionalProperties": false,
|
|
956
959
|
"description": "Arguments for the \"edit.display-add-features\" command. Web only.",
|
|
957
960
|
"properties": {
|
|
958
|
-
"attributes": {
|
|
959
|
-
"description": "Optional layout XML attributes to be used for the transient UI container."
|
|
960
|
-
},
|
|
961
|
-
"editAttachments": {
|
|
962
|
-
"description": "Whether to allow editing of feature attachments.",
|
|
963
|
-
"type": "boolean"
|
|
964
|
-
},
|
|
965
961
|
"editAttributes": {
|
|
966
962
|
"description": "Whether to allow editing of feature attributes.",
|
|
967
963
|
"type": "boolean"
|
|
@@ -977,14 +973,14 @@
|
|
|
977
973
|
"featureAttributes": {
|
|
978
974
|
"description": "A collection of attributes to apply to the new feature."
|
|
979
975
|
},
|
|
976
|
+
"formUITarget": {
|
|
977
|
+
"$ref": "#/definitions/HasUITarget",
|
|
978
|
+
"description": "Arguments for the display of the attribute editing form."
|
|
979
|
+
},
|
|
980
980
|
"geometry": {
|
|
981
981
|
"$ref": "#/definitions/GeometryLike",
|
|
982
982
|
"description": "The geometry to use for the command/operation."
|
|
983
983
|
},
|
|
984
|
-
"icon": {
|
|
985
|
-
"description": "Optional icon that may be used by the transient UI container.",
|
|
986
|
-
"type": "string"
|
|
987
|
-
},
|
|
988
984
|
"layers": {
|
|
989
985
|
"$ref": "#/definitions/LayersLike",
|
|
990
986
|
"description": "Layer(s) to use for the command/operation."
|
|
@@ -1001,10 +997,6 @@
|
|
|
1001
997
|
],
|
|
1002
998
|
"type": "string"
|
|
1003
999
|
},
|
|
1004
|
-
"parent": {
|
|
1005
|
-
"description": "The layout ID or ItemRef to target for the command/operation. This component will be the parent of the temporary UI that will be removed after the command/operation completes.",
|
|
1006
|
-
"type": "string"
|
|
1007
|
-
},
|
|
1008
1000
|
"showNotifications": {
|
|
1009
1001
|
"description": "Whether to show UI notifications.",
|
|
1010
1002
|
"type": "boolean"
|
|
@@ -1016,6 +1008,14 @@
|
|
|
1016
1008
|
"templateName": {
|
|
1017
1009
|
"description": "The template to use as a starting point for this feature. Requires a layer. The default or first template will be used if not set.",
|
|
1018
1010
|
"type": "string"
|
|
1011
|
+
},
|
|
1012
|
+
"templateUITarget": {
|
|
1013
|
+
"$ref": "#/definitions/HasUITarget",
|
|
1014
|
+
"description": "Arguments for the display of the template picker."
|
|
1015
|
+
},
|
|
1016
|
+
"typeId": {
|
|
1017
|
+
"description": "A type id to use as a starting point for this feature. This may return one or more templates and requires a layer with types defined.",
|
|
1018
|
+
"type": "string"
|
|
1019
1019
|
}
|
|
1020
1020
|
},
|
|
1021
1021
|
"type": "object"
|
|
@@ -1132,8 +1132,11 @@
|
|
|
1132
1132
|
"additionalProperties": false,
|
|
1133
1133
|
"description": "Arguments for the \"edit.display-update-features\" operation. Web only.",
|
|
1134
1134
|
"properties": {
|
|
1135
|
+
"attributes": {
|
|
1136
|
+
"description": "Optional layout XML attributes to be used for the transient UI container."
|
|
1137
|
+
},
|
|
1135
1138
|
"editAttachments": {
|
|
1136
|
-
"description": "Whether to allow editing of feature attachments.",
|
|
1139
|
+
"description": "Whether to allow editing of feature attachments. Web only.",
|
|
1137
1140
|
"type": "boolean"
|
|
1138
1141
|
},
|
|
1139
1142
|
"editAttributes": {
|
|
@@ -1159,10 +1162,18 @@
|
|
|
1159
1162
|
"$ref": "#/definitions/GeometryLike",
|
|
1160
1163
|
"description": "The geometry to use for the command/operation."
|
|
1161
1164
|
},
|
|
1165
|
+
"icon": {
|
|
1166
|
+
"description": "Optional icon that may be used by the transient UI container.",
|
|
1167
|
+
"type": "string"
|
|
1168
|
+
},
|
|
1162
1169
|
"maps": {
|
|
1163
1170
|
"$ref": "MapsLike",
|
|
1164
1171
|
"description": "Map(s) to use for the command/operation."
|
|
1165
1172
|
},
|
|
1173
|
+
"parent": {
|
|
1174
|
+
"description": "The layout ID or ItemRef to target for the command/operation. This component will be the parent of the temporary UI that will be removed after the command/operation completes.",
|
|
1175
|
+
"type": "string"
|
|
1176
|
+
},
|
|
1166
1177
|
"showNotifications": {
|
|
1167
1178
|
"description": "Whether to show UI notifications.",
|
|
1168
1179
|
"type": "boolean"
|
|
@@ -1833,6 +1844,24 @@
|
|
|
1833
1844
|
},
|
|
1834
1845
|
"type": "object"
|
|
1835
1846
|
},
|
|
1847
|
+
"HasUITarget": {
|
|
1848
|
+
"additionalProperties": false,
|
|
1849
|
+
"description": "An object with arguments for a command or operation that can display temporary UI.",
|
|
1850
|
+
"properties": {
|
|
1851
|
+
"attributes": {
|
|
1852
|
+
"description": "Optional layout XML attributes to be used for the transient UI container."
|
|
1853
|
+
},
|
|
1854
|
+
"icon": {
|
|
1855
|
+
"description": "Optional icon that may be used by the transient UI container.",
|
|
1856
|
+
"type": "string"
|
|
1857
|
+
},
|
|
1858
|
+
"parent": {
|
|
1859
|
+
"description": "The layout ID or ItemRef to target for the command/operation. This component will be the parent of the temporary UI that will be removed after the command/operation completes.",
|
|
1860
|
+
"type": "string"
|
|
1861
|
+
}
|
|
1862
|
+
},
|
|
1863
|
+
"type": "object"
|
|
1864
|
+
},
|
|
1836
1865
|
"HideMapArgs": {
|
|
1837
1866
|
"additionalProperties": false,
|
|
1838
1867
|
"description": "Arguments for the \"map.hide\" operation.",
|
|
@@ -3342,24 +3371,43 @@
|
|
|
3342
3371
|
]
|
|
3343
3372
|
},
|
|
3344
3373
|
"edit.add-feature": {
|
|
3345
|
-
"description": "Adds a feature to a particular layer. `
|
|
3374
|
+
"description": "Adds a feature to a particular layer. `Features` and `EditCommandArgs` are not supported on Mobile.",
|
|
3346
3375
|
"enum": [
|
|
3347
3376
|
"edit.add-feature"
|
|
3348
3377
|
]
|
|
3349
3378
|
},
|
|
3350
3379
|
"edit.add-feature:input": {
|
|
3351
3380
|
"anyOf": [
|
|
3381
|
+
{
|
|
3382
|
+
"$ref": "@vertigis.arcgis-extensions.data.FeatureSet.FeatureSet"
|
|
3383
|
+
},
|
|
3352
3384
|
{
|
|
3353
3385
|
"$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
|
|
3354
3386
|
},
|
|
3355
3387
|
{
|
|
3356
|
-
"$ref": "
|
|
3388
|
+
"$ref": "@vertigis.arcgis-extensions.data.FeatureStream.FeatureStream"
|
|
3389
|
+
},
|
|
3390
|
+
{
|
|
3391
|
+
"$ref": "@vertigis.arcgis-extensions.data.FeatureList.FeatureList"
|
|
3357
3392
|
},
|
|
3358
3393
|
{
|
|
3359
3394
|
"items": {
|
|
3360
|
-
"
|
|
3395
|
+
"anyOf": [
|
|
3396
|
+
{
|
|
3397
|
+
"$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
|
|
3398
|
+
},
|
|
3399
|
+
{
|
|
3400
|
+
"$ref": "@vertigis.arcgis-extensions.data.Feature.FeatureProperties"
|
|
3401
|
+
}
|
|
3402
|
+
]
|
|
3361
3403
|
},
|
|
3362
3404
|
"type": "array"
|
|
3405
|
+
},
|
|
3406
|
+
{
|
|
3407
|
+
"$ref": "#/definitions/Results"
|
|
3408
|
+
},
|
|
3409
|
+
{
|
|
3410
|
+
"$ref": "#/definitions/EditCommandArgs"
|
|
3363
3411
|
}
|
|
3364
3412
|
]
|
|
3365
3413
|
},
|
|
@@ -3380,22 +3428,41 @@
|
|
|
3380
3428
|
},
|
|
3381
3429
|
"edit.delete-features:input": {
|
|
3382
3430
|
"anyOf": [
|
|
3431
|
+
{
|
|
3432
|
+
"$ref": "@vertigis.arcgis-extensions.data.FeatureSet.FeatureSet"
|
|
3433
|
+
},
|
|
3383
3434
|
{
|
|
3384
3435
|
"$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
|
|
3385
3436
|
},
|
|
3386
3437
|
{
|
|
3387
|
-
"$ref": "
|
|
3438
|
+
"$ref": "@vertigis.arcgis-extensions.data.FeatureStream.FeatureStream"
|
|
3439
|
+
},
|
|
3440
|
+
{
|
|
3441
|
+
"$ref": "@vertigis.arcgis-extensions.data.FeatureList.FeatureList"
|
|
3388
3442
|
},
|
|
3389
3443
|
{
|
|
3390
3444
|
"items": {
|
|
3391
|
-
"
|
|
3445
|
+
"anyOf": [
|
|
3446
|
+
{
|
|
3447
|
+
"$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
|
|
3448
|
+
},
|
|
3449
|
+
{
|
|
3450
|
+
"$ref": "@vertigis.arcgis-extensions.data.Feature.FeatureProperties"
|
|
3451
|
+
}
|
|
3452
|
+
]
|
|
3392
3453
|
},
|
|
3393
3454
|
"type": "array"
|
|
3455
|
+
},
|
|
3456
|
+
{
|
|
3457
|
+
"$ref": "#/definitions/Results"
|
|
3458
|
+
},
|
|
3459
|
+
{
|
|
3460
|
+
"$ref": "#/definitions/EditCommandArgs"
|
|
3394
3461
|
}
|
|
3395
3462
|
]
|
|
3396
3463
|
},
|
|
3397
3464
|
"edit.display-add-feature": {
|
|
3398
|
-
"description": "
|
|
3465
|
+
"description": "Begin an interactive feature editing session with a new feature. `DisplayAddFeatureArgs` is not supported on Mobile.",
|
|
3399
3466
|
"enum": [
|
|
3400
3467
|
"edit.display-add-feature"
|
|
3401
3468
|
]
|
|
@@ -3411,7 +3478,7 @@
|
|
|
3411
3478
|
]
|
|
3412
3479
|
},
|
|
3413
3480
|
"edit.display-update-feature": {
|
|
3414
|
-
"description": "
|
|
3481
|
+
"description": "Begin an interactive feature editing session with an existing feature. `DisplayUpdateFeatureArgs` is not supported on Mobile.",
|
|
3415
3482
|
"enum": [
|
|
3416
3483
|
"edit.display-update-feature"
|
|
3417
3484
|
]
|
|
@@ -3427,24 +3494,43 @@
|
|
|
3427
3494
|
]
|
|
3428
3495
|
},
|
|
3429
3496
|
"edit.update-feature": {
|
|
3430
|
-
"description": "Updates a feature. `
|
|
3497
|
+
"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.",
|
|
3431
3498
|
"enum": [
|
|
3432
3499
|
"edit.update-feature"
|
|
3433
3500
|
]
|
|
3434
3501
|
},
|
|
3435
3502
|
"edit.update-feature:input": {
|
|
3436
3503
|
"anyOf": [
|
|
3504
|
+
{
|
|
3505
|
+
"$ref": "@vertigis.arcgis-extensions.data.FeatureSet.FeatureSet"
|
|
3506
|
+
},
|
|
3437
3507
|
{
|
|
3438
3508
|
"$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
|
|
3439
3509
|
},
|
|
3440
3510
|
{
|
|
3441
|
-
"$ref": "
|
|
3511
|
+
"$ref": "@vertigis.arcgis-extensions.data.FeatureStream.FeatureStream"
|
|
3512
|
+
},
|
|
3513
|
+
{
|
|
3514
|
+
"$ref": "@vertigis.arcgis-extensions.data.FeatureList.FeatureList"
|
|
3442
3515
|
},
|
|
3443
3516
|
{
|
|
3444
3517
|
"items": {
|
|
3445
|
-
"
|
|
3518
|
+
"anyOf": [
|
|
3519
|
+
{
|
|
3520
|
+
"$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
|
|
3521
|
+
},
|
|
3522
|
+
{
|
|
3523
|
+
"$ref": "@vertigis.arcgis-extensions.data.Feature.FeatureProperties"
|
|
3524
|
+
}
|
|
3525
|
+
]
|
|
3446
3526
|
},
|
|
3447
3527
|
"type": "array"
|
|
3528
|
+
},
|
|
3529
|
+
{
|
|
3530
|
+
"$ref": "#/definitions/Results"
|
|
3531
|
+
},
|
|
3532
|
+
{
|
|
3533
|
+
"$ref": "#/definitions/EditCommandArgs"
|
|
3448
3534
|
}
|
|
3449
3535
|
]
|
|
3450
3536
|
},
|
|
@@ -3452,7 +3538,7 @@
|
|
|
3452
3538
|
"$ref": "esri/geometry/Extent"
|
|
3453
3539
|
},
|
|
3454
3540
|
"esri.FeatureSet": {
|
|
3455
|
-
"$ref": "esri/
|
|
3541
|
+
"$ref": "esri/rest/support/FeatureSet"
|
|
3456
3542
|
},
|
|
3457
3543
|
"esri.FeatureType": {
|
|
3458
3544
|
"$ref": "esri/layers/support/FeatureType"
|
|
@@ -3826,6 +3912,23 @@
|
|
|
3826
3912
|
},
|
|
3827
3913
|
"type": "object"
|
|
3828
3914
|
},
|
|
3915
|
+
"esri.rest-api.CIMSymbol.CIMSymbol": {
|
|
3916
|
+
"additionalProperties": false,
|
|
3917
|
+
"description": "Represents a symbol reference that contains a CIM symbol. In addition to type listed below, a symbol reference will contain additional properties. More details on CIM symbol reference and CIM symbols are available on github: https://github.com/Esri/cim-spec/blob/master/docs/v2/Overview-Symbols.md.{@linkhttps://developers.arcgis.com/web-scene-specification/objects/polygonSymbol3D/}.",
|
|
3918
|
+
"properties": {
|
|
3919
|
+
"type": {
|
|
3920
|
+
"description": "Specifies the type of symbol used.",
|
|
3921
|
+
"enum": [
|
|
3922
|
+
"CIMSymbolReference"
|
|
3923
|
+
],
|
|
3924
|
+
"type": "string"
|
|
3925
|
+
}
|
|
3926
|
+
},
|
|
3927
|
+
"required": [
|
|
3928
|
+
"type"
|
|
3929
|
+
],
|
|
3930
|
+
"type": "object"
|
|
3931
|
+
},
|
|
3829
3932
|
"esri.rest-api.CSVLayer.CSVLayer": {
|
|
3830
3933
|
"additionalProperties": false,
|
|
3831
3934
|
"description": "The CSV layer type references a CSV or TXT file from a publicly-accessible web server. It then dynamically loads into the map at run time. The CSV layer will maintain a reference to the CSV resource.{@linkhttps://developers.arcgis.com/web-map-specification/objects/csvLayer/}{@linkhttps://developers.arcgis.com/web-scene-specification/objects/csvLayer/}.",
|
|
@@ -4026,6 +4129,9 @@
|
|
|
4026
4129
|
},
|
|
4027
4130
|
"symbol": {
|
|
4028
4131
|
"anyOf": [
|
|
4132
|
+
{
|
|
4133
|
+
"$ref": "#/definitions/esri.rest-api.CIMSymbol.CIMSymbol"
|
|
4134
|
+
},
|
|
4029
4135
|
{
|
|
4030
4136
|
"$ref": "#/definitions/esri.rest-api.SimpleLineSymbol.SimpleLineSymbol"
|
|
4031
4137
|
},
|
|
@@ -4108,6 +4214,9 @@
|
|
|
4108
4214
|
},
|
|
4109
4215
|
"defaultSymbol": {
|
|
4110
4216
|
"anyOf": [
|
|
4217
|
+
{
|
|
4218
|
+
"$ref": "#/definitions/esri.rest-api.CIMSymbol.CIMSymbol"
|
|
4219
|
+
},
|
|
4111
4220
|
{
|
|
4112
4221
|
"$ref": "#/definitions/esri.rest-api.SimpleLineSymbol.SimpleLineSymbol"
|
|
4113
4222
|
},
|
|
@@ -4811,8 +4920,15 @@
|
|
|
4811
4920
|
"$ref": "#/definitions/esri.rest-api.Geometry.Geometry",
|
|
4812
4921
|
"description": "The feature geometry."
|
|
4813
4922
|
},
|
|
4923
|
+
"popupInfo": {
|
|
4924
|
+
"$ref": "#/definitions/esri.rest-api.PopupInfo.PopupInfo",
|
|
4925
|
+
"description": "A popupInfo object defining the content of popup window when you click a feature on the map. Applicable to features in a map notes feature layer only."
|
|
4926
|
+
},
|
|
4814
4927
|
"symbol": {
|
|
4815
4928
|
"anyOf": [
|
|
4929
|
+
{
|
|
4930
|
+
"$ref": "#/definitions/esri.rest-api.CIMSymbol.CIMSymbol"
|
|
4931
|
+
},
|
|
4816
4932
|
{
|
|
4817
4933
|
"$ref": "#/definitions/esri.rest-api.SimpleLineSymbol.SimpleLineSymbol"
|
|
4818
4934
|
},
|
|
@@ -6115,7 +6231,9 @@
|
|
|
6115
6231
|
"properties": {
|
|
6116
6232
|
"bandIds": {
|
|
6117
6233
|
"description": "An array of bandIds that are visible, can specify bands to export or rearrange band order(from image service).",
|
|
6118
|
-
"items": {
|
|
6234
|
+
"items": {
|
|
6235
|
+
"type": "number"
|
|
6236
|
+
},
|
|
6119
6237
|
"type": "array"
|
|
6120
6238
|
},
|
|
6121
6239
|
"blendMode": {
|
|
@@ -7200,7 +7318,7 @@
|
|
|
7200
7318
|
"type": "string"
|
|
7201
7319
|
},
|
|
7202
7320
|
"orderBy": {
|
|
7203
|
-
"description": "Determines the display order of features on the map
|
|
7321
|
+
"description": "Determines the display order of features on the map.",
|
|
7204
7322
|
"items": {
|
|
7205
7323
|
"$ref": "#/definitions/esri.rest-api.LayerDefinition.OrderByClause"
|
|
7206
7324
|
},
|
|
@@ -7366,7 +7484,7 @@
|
|
|
7366
7484
|
"type": "string"
|
|
7367
7485
|
},
|
|
7368
7486
|
"valueExpression": {
|
|
7369
|
-
"description": "The [Arcade expression](https://developers.arcgis.com/javascript/latest/arcade/) whose return value will be used to sort features. [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-mixins-OrderedLayer.html#orderBy).",
|
|
7487
|
+
"description": "The [Arcade expression](https://developers.arcgis.com/javascript/latest/arcade/) whose return value will be used to sort features. (Currently undocumented by ESRI's Webmap Spec). [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-mixins-OrderedLayer.html#orderBy).",
|
|
7370
7488
|
"type": "string"
|
|
7371
7489
|
}
|
|
7372
7490
|
},
|
|
@@ -9526,6 +9644,9 @@
|
|
|
9526
9644
|
},
|
|
9527
9645
|
"symbol": {
|
|
9528
9646
|
"anyOf": [
|
|
9647
|
+
{
|
|
9648
|
+
"$ref": "#/definitions/esri.rest-api.CIMSymbol.CIMSymbol"
|
|
9649
|
+
},
|
|
9529
9650
|
{
|
|
9530
9651
|
"$ref": "#/definitions/esri.rest-api.SimpleLineSymbol.SimpleLineSymbol"
|
|
9531
9652
|
},
|
|
@@ -9840,6 +9961,9 @@
|
|
|
9840
9961
|
},
|
|
9841
9962
|
"esri.rest-api.Symbol.Symbol": {
|
|
9842
9963
|
"anyOf": [
|
|
9964
|
+
{
|
|
9965
|
+
"$ref": "#/definitions/esri.rest-api.CIMSymbol.CIMSymbol"
|
|
9966
|
+
},
|
|
9843
9967
|
{
|
|
9844
9968
|
"$ref": "#/definitions/esri.rest-api.SimpleLineSymbol.SimpleLineSymbol"
|
|
9845
9969
|
},
|
|
@@ -10559,6 +10683,9 @@
|
|
|
10559
10683
|
},
|
|
10560
10684
|
"symbol": {
|
|
10561
10685
|
"anyOf": [
|
|
10686
|
+
{
|
|
10687
|
+
"$ref": "#/definitions/esri.rest-api.CIMSymbol.CIMSymbol"
|
|
10688
|
+
},
|
|
10562
10689
|
{
|
|
10563
10690
|
"$ref": "#/definitions/esri.rest-api.SimpleLineSymbol.SimpleLineSymbol"
|
|
10564
10691
|
},
|
|
@@ -10627,6 +10754,9 @@
|
|
|
10627
10754
|
},
|
|
10628
10755
|
"defaultSymbol": {
|
|
10629
10756
|
"anyOf": [
|
|
10757
|
+
{
|
|
10758
|
+
"$ref": "#/definitions/esri.rest-api.CIMSymbol.CIMSymbol"
|
|
10759
|
+
},
|
|
10630
10760
|
{
|
|
10631
10761
|
"$ref": "#/definitions/esri.rest-api.SimpleLineSymbol.SimpleLineSymbol"
|
|
10632
10762
|
},
|
|
@@ -1084,7 +1084,7 @@
|
|
|
1084
1084
|
"$ref": "#/definitions/AttachmentEventArgs"
|
|
1085
1085
|
},
|
|
1086
1086
|
"edit.feature-added": {
|
|
1087
|
-
"description": "Raised when a feature is added.",
|
|
1087
|
+
"description": "Raised when a new feature is added to a feature source.",
|
|
1088
1088
|
"enum": [
|
|
1089
1089
|
"edit.feature-added"
|
|
1090
1090
|
]
|
|
@@ -1093,7 +1093,7 @@
|
|
|
1093
1093
|
"$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
|
|
1094
1094
|
},
|
|
1095
1095
|
"edit.feature-deleted": {
|
|
1096
|
-
"description": "Raised when a feature is deleted.",
|
|
1096
|
+
"description": "Raised when a feature is deleted from a feature source.",
|
|
1097
1097
|
"enum": [
|
|
1098
1098
|
"edit.feature-deleted"
|
|
1099
1099
|
]
|
|
@@ -1102,7 +1102,7 @@
|
|
|
1102
1102
|
"$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
|
|
1103
1103
|
},
|
|
1104
1104
|
"edit.feature-updated": {
|
|
1105
|
-
"description": "Raised when a feature
|
|
1105
|
+
"description": "Raised when the attributes or geometry of a feature from a feature source are updated.",
|
|
1106
1106
|
"enum": [
|
|
1107
1107
|
"edit.feature-updated"
|
|
1108
1108
|
]
|
|
@@ -1425,6 +1425,23 @@
|
|
|
1425
1425
|
},
|
|
1426
1426
|
"type": "object"
|
|
1427
1427
|
},
|
|
1428
|
+
"esri.rest-api.CIMSymbol.CIMSymbol": {
|
|
1429
|
+
"additionalProperties": false,
|
|
1430
|
+
"description": "Represents a symbol reference that contains a CIM symbol. In addition to type listed below, a symbol reference will contain additional properties. More details on CIM symbol reference and CIM symbols are available on github: https://github.com/Esri/cim-spec/blob/master/docs/v2/Overview-Symbols.md.{@linkhttps://developers.arcgis.com/web-scene-specification/objects/polygonSymbol3D/}.",
|
|
1431
|
+
"properties": {
|
|
1432
|
+
"type": {
|
|
1433
|
+
"description": "Specifies the type of symbol used.",
|
|
1434
|
+
"enum": [
|
|
1435
|
+
"CIMSymbolReference"
|
|
1436
|
+
],
|
|
1437
|
+
"type": "string"
|
|
1438
|
+
}
|
|
1439
|
+
},
|
|
1440
|
+
"required": [
|
|
1441
|
+
"type"
|
|
1442
|
+
],
|
|
1443
|
+
"type": "object"
|
|
1444
|
+
},
|
|
1428
1445
|
"esri.rest-api.CSVLayer.CSVLayer": {
|
|
1429
1446
|
"additionalProperties": false,
|
|
1430
1447
|
"description": "The CSV layer type references a CSV or TXT file from a publicly-accessible web server. It then dynamically loads into the map at run time. The CSV layer will maintain a reference to the CSV resource.{@linkhttps://developers.arcgis.com/web-map-specification/objects/csvLayer/}{@linkhttps://developers.arcgis.com/web-scene-specification/objects/csvLayer/}.",
|
|
@@ -1603,6 +1620,9 @@
|
|
|
1603
1620
|
},
|
|
1604
1621
|
"symbol": {
|
|
1605
1622
|
"anyOf": [
|
|
1623
|
+
{
|
|
1624
|
+
"$ref": "#/definitions/esri.rest-api.CIMSymbol.CIMSymbol"
|
|
1625
|
+
},
|
|
1606
1626
|
{
|
|
1607
1627
|
"$ref": "#/definitions/esri.rest-api.SimpleLineSymbol.SimpleLineSymbol"
|
|
1608
1628
|
},
|
|
@@ -1685,6 +1705,9 @@
|
|
|
1685
1705
|
},
|
|
1686
1706
|
"defaultSymbol": {
|
|
1687
1707
|
"anyOf": [
|
|
1708
|
+
{
|
|
1709
|
+
"$ref": "#/definitions/esri.rest-api.CIMSymbol.CIMSymbol"
|
|
1710
|
+
},
|
|
1688
1711
|
{
|
|
1689
1712
|
"$ref": "#/definitions/esri.rest-api.SimpleLineSymbol.SimpleLineSymbol"
|
|
1690
1713
|
},
|
|
@@ -2388,8 +2411,15 @@
|
|
|
2388
2411
|
"$ref": "#/definitions/esri.rest-api.Geometry.Geometry",
|
|
2389
2412
|
"description": "The feature geometry."
|
|
2390
2413
|
},
|
|
2414
|
+
"popupInfo": {
|
|
2415
|
+
"$ref": "#/definitions/esri.rest-api.PopupInfo.PopupInfo",
|
|
2416
|
+
"description": "A popupInfo object defining the content of popup window when you click a feature on the map. Applicable to features in a map notes feature layer only."
|
|
2417
|
+
},
|
|
2391
2418
|
"symbol": {
|
|
2392
2419
|
"anyOf": [
|
|
2420
|
+
{
|
|
2421
|
+
"$ref": "#/definitions/esri.rest-api.CIMSymbol.CIMSymbol"
|
|
2422
|
+
},
|
|
2393
2423
|
{
|
|
2394
2424
|
"$ref": "#/definitions/esri.rest-api.SimpleLineSymbol.SimpleLineSymbol"
|
|
2395
2425
|
},
|
|
@@ -3681,7 +3711,9 @@
|
|
|
3681
3711
|
"properties": {
|
|
3682
3712
|
"bandIds": {
|
|
3683
3713
|
"description": "An array of bandIds that are visible, can specify bands to export or rearrange band order(from image service).",
|
|
3684
|
-
"items": {
|
|
3714
|
+
"items": {
|
|
3715
|
+
"type": "number"
|
|
3716
|
+
},
|
|
3685
3717
|
"type": "array"
|
|
3686
3718
|
},
|
|
3687
3719
|
"blendMode": {
|
|
@@ -4537,7 +4569,7 @@
|
|
|
4537
4569
|
"type": "string"
|
|
4538
4570
|
},
|
|
4539
4571
|
"orderBy": {
|
|
4540
|
-
"description": "Determines the display order of features on the map
|
|
4572
|
+
"description": "Determines the display order of features on the map.",
|
|
4541
4573
|
"items": {
|
|
4542
4574
|
"$ref": "#/definitions/esri.rest-api.LayerDefinition.OrderByClause"
|
|
4543
4575
|
},
|
|
@@ -4703,7 +4735,7 @@
|
|
|
4703
4735
|
"type": "string"
|
|
4704
4736
|
},
|
|
4705
4737
|
"valueExpression": {
|
|
4706
|
-
"description": "The [Arcade expression](https://developers.arcgis.com/javascript/latest/arcade/) whose return value will be used to sort features. [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-mixins-OrderedLayer.html#orderBy).",
|
|
4738
|
+
"description": "The [Arcade expression](https://developers.arcgis.com/javascript/latest/arcade/) whose return value will be used to sort features. (Currently undocumented by ESRI's Webmap Spec). [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-mixins-OrderedLayer.html#orderBy).",
|
|
4707
4739
|
"type": "string"
|
|
4708
4740
|
}
|
|
4709
4741
|
},
|
|
@@ -6863,6 +6895,9 @@
|
|
|
6863
6895
|
},
|
|
6864
6896
|
"symbol": {
|
|
6865
6897
|
"anyOf": [
|
|
6898
|
+
{
|
|
6899
|
+
"$ref": "#/definitions/esri.rest-api.CIMSymbol.CIMSymbol"
|
|
6900
|
+
},
|
|
6866
6901
|
{
|
|
6867
6902
|
"$ref": "#/definitions/esri.rest-api.SimpleLineSymbol.SimpleLineSymbol"
|
|
6868
6903
|
},
|
|
@@ -7177,6 +7212,9 @@
|
|
|
7177
7212
|
},
|
|
7178
7213
|
"esri.rest-api.Symbol.Symbol": {
|
|
7179
7214
|
"anyOf": [
|
|
7215
|
+
{
|
|
7216
|
+
"$ref": "#/definitions/esri.rest-api.CIMSymbol.CIMSymbol"
|
|
7217
|
+
},
|
|
7180
7218
|
{
|
|
7181
7219
|
"$ref": "#/definitions/esri.rest-api.SimpleLineSymbol.SimpleLineSymbol"
|
|
7182
7220
|
},
|
|
@@ -7896,6 +7934,9 @@
|
|
|
7896
7934
|
},
|
|
7897
7935
|
"symbol": {
|
|
7898
7936
|
"anyOf": [
|
|
7937
|
+
{
|
|
7938
|
+
"$ref": "#/definitions/esri.rest-api.CIMSymbol.CIMSymbol"
|
|
7939
|
+
},
|
|
7899
7940
|
{
|
|
7900
7941
|
"$ref": "#/definitions/esri.rest-api.SimpleLineSymbol.SimpleLineSymbol"
|
|
7901
7942
|
},
|
|
@@ -7964,6 +8005,9 @@
|
|
|
7964
8005
|
},
|
|
7965
8006
|
"defaultSymbol": {
|
|
7966
8007
|
"anyOf": [
|
|
8008
|
+
{
|
|
8009
|
+
"$ref": "#/definitions/esri.rest-api.CIMSymbol.CIMSymbol"
|
|
8010
|
+
},
|
|
7967
8011
|
{
|
|
7968
8012
|
"$ref": "#/definitions/esri.rest-api.SimpleLineSymbol.SimpleLineSymbol"
|
|
7969
8013
|
},
|