@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
|
@@ -644,6 +644,9 @@
|
|
|
644
644
|
},
|
|
645
645
|
"symbol": {
|
|
646
646
|
"anyOf": [
|
|
647
|
+
{
|
|
648
|
+
"$ref": "#/definitions/esri.rest-api.CIMSymbol.CIMSymbol"
|
|
649
|
+
},
|
|
647
650
|
{
|
|
648
651
|
"$ref": "#/definitions/esri.rest-api.SimpleLineSymbol.SimpleLineSymbol"
|
|
649
652
|
},
|
|
@@ -798,13 +801,6 @@
|
|
|
798
801
|
"additionalProperties": false,
|
|
799
802
|
"description": "Arguments for the \"edit.display-add-features\" command. Web only.",
|
|
800
803
|
"properties": {
|
|
801
|
-
"attributes": {
|
|
802
|
-
"description": "Optional layout XML attributes to be used for the transient UI container."
|
|
803
|
-
},
|
|
804
|
-
"editAttachments": {
|
|
805
|
-
"description": "Whether to allow editing of feature attachments.",
|
|
806
|
-
"type": "boolean"
|
|
807
|
-
},
|
|
808
804
|
"editAttributes": {
|
|
809
805
|
"description": "Whether to allow editing of feature attributes.",
|
|
810
806
|
"type": "boolean"
|
|
@@ -820,14 +816,14 @@
|
|
|
820
816
|
"featureAttributes": {
|
|
821
817
|
"description": "A collection of attributes to apply to the new feature."
|
|
822
818
|
},
|
|
819
|
+
"formUITarget": {
|
|
820
|
+
"$ref": "#/definitions/HasUITarget",
|
|
821
|
+
"description": "Arguments for the display of the attribute editing form."
|
|
822
|
+
},
|
|
823
823
|
"geometry": {
|
|
824
824
|
"$ref": "#/definitions/GeometryLike",
|
|
825
825
|
"description": "The geometry to use for the command/operation."
|
|
826
826
|
},
|
|
827
|
-
"icon": {
|
|
828
|
-
"description": "Optional icon that may be used by the transient UI container.",
|
|
829
|
-
"type": "string"
|
|
830
|
-
},
|
|
831
827
|
"layers": {
|
|
832
828
|
"$ref": "#/definitions/LayersLike",
|
|
833
829
|
"description": "Layer(s) to use for the command/operation."
|
|
@@ -844,10 +840,6 @@
|
|
|
844
840
|
],
|
|
845
841
|
"type": "string"
|
|
846
842
|
},
|
|
847
|
-
"parent": {
|
|
848
|
-
"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.",
|
|
849
|
-
"type": "string"
|
|
850
|
-
},
|
|
851
843
|
"showNotifications": {
|
|
852
844
|
"description": "Whether to show UI notifications.",
|
|
853
845
|
"type": "boolean"
|
|
@@ -859,6 +851,14 @@
|
|
|
859
851
|
"templateName": {
|
|
860
852
|
"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.",
|
|
861
853
|
"type": "string"
|
|
854
|
+
},
|
|
855
|
+
"templateUITarget": {
|
|
856
|
+
"$ref": "#/definitions/HasUITarget",
|
|
857
|
+
"description": "Arguments for the display of the template picker."
|
|
858
|
+
},
|
|
859
|
+
"typeId": {
|
|
860
|
+
"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.",
|
|
861
|
+
"type": "string"
|
|
862
862
|
}
|
|
863
863
|
},
|
|
864
864
|
"type": "object"
|
|
@@ -905,8 +905,11 @@
|
|
|
905
905
|
"additionalProperties": false,
|
|
906
906
|
"description": "Arguments for the \"edit.display-update-features\" operation. Web only.",
|
|
907
907
|
"properties": {
|
|
908
|
+
"attributes": {
|
|
909
|
+
"description": "Optional layout XML attributes to be used for the transient UI container."
|
|
910
|
+
},
|
|
908
911
|
"editAttachments": {
|
|
909
|
-
"description": "Whether to allow editing of feature attachments.",
|
|
912
|
+
"description": "Whether to allow editing of feature attachments. Web only.",
|
|
910
913
|
"type": "boolean"
|
|
911
914
|
},
|
|
912
915
|
"editAttributes": {
|
|
@@ -932,10 +935,18 @@
|
|
|
932
935
|
"$ref": "#/definitions/GeometryLike",
|
|
933
936
|
"description": "The geometry to use for the command/operation."
|
|
934
937
|
},
|
|
938
|
+
"icon": {
|
|
939
|
+
"description": "Optional icon that may be used by the transient UI container.",
|
|
940
|
+
"type": "string"
|
|
941
|
+
},
|
|
935
942
|
"maps": {
|
|
936
943
|
"$ref": "MapsLike",
|
|
937
944
|
"description": "Map(s) to use for the command/operation."
|
|
938
945
|
},
|
|
946
|
+
"parent": {
|
|
947
|
+
"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.",
|
|
948
|
+
"type": "string"
|
|
949
|
+
},
|
|
939
950
|
"showNotifications": {
|
|
940
951
|
"description": "Whether to show UI notifications.",
|
|
941
952
|
"type": "boolean"
|
|
@@ -1421,6 +1432,24 @@
|
|
|
1421
1432
|
},
|
|
1422
1433
|
"type": "object"
|
|
1423
1434
|
},
|
|
1435
|
+
"HasUITarget": {
|
|
1436
|
+
"additionalProperties": false,
|
|
1437
|
+
"description": "An object with arguments for a command or operation that can display temporary UI.",
|
|
1438
|
+
"properties": {
|
|
1439
|
+
"attributes": {
|
|
1440
|
+
"description": "Optional layout XML attributes to be used for the transient UI container."
|
|
1441
|
+
},
|
|
1442
|
+
"icon": {
|
|
1443
|
+
"description": "Optional icon that may be used by the transient UI container.",
|
|
1444
|
+
"type": "string"
|
|
1445
|
+
},
|
|
1446
|
+
"parent": {
|
|
1447
|
+
"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.",
|
|
1448
|
+
"type": "string"
|
|
1449
|
+
}
|
|
1450
|
+
},
|
|
1451
|
+
"type": "object"
|
|
1452
|
+
},
|
|
1424
1453
|
"IdentifyArgs": {
|
|
1425
1454
|
"additionalProperties": false,
|
|
1426
1455
|
"description": "Arguments for the tasks.identify operation.",
|
|
@@ -2425,24 +2454,43 @@
|
|
|
2425
2454
|
]
|
|
2426
2455
|
},
|
|
2427
2456
|
"edit.add-feature": {
|
|
2428
|
-
"description": "Adds a feature to a particular layer. `
|
|
2457
|
+
"description": "Adds a feature to a particular layer. `Features` and `EditCommandArgs` are not supported on Mobile.",
|
|
2429
2458
|
"enum": [
|
|
2430
2459
|
"edit.add-feature"
|
|
2431
2460
|
]
|
|
2432
2461
|
},
|
|
2433
2462
|
"edit.add-feature:input": {
|
|
2434
2463
|
"anyOf": [
|
|
2464
|
+
{
|
|
2465
|
+
"$ref": "@vertigis.arcgis-extensions.data.FeatureSet.FeatureSet"
|
|
2466
|
+
},
|
|
2435
2467
|
{
|
|
2436
2468
|
"$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
|
|
2437
2469
|
},
|
|
2438
2470
|
{
|
|
2439
|
-
"$ref": "
|
|
2471
|
+
"$ref": "@vertigis.arcgis-extensions.data.FeatureStream.FeatureStream"
|
|
2472
|
+
},
|
|
2473
|
+
{
|
|
2474
|
+
"$ref": "@vertigis.arcgis-extensions.data.FeatureList.FeatureList"
|
|
2440
2475
|
},
|
|
2441
2476
|
{
|
|
2442
2477
|
"items": {
|
|
2443
|
-
"
|
|
2478
|
+
"anyOf": [
|
|
2479
|
+
{
|
|
2480
|
+
"$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
|
|
2481
|
+
},
|
|
2482
|
+
{
|
|
2483
|
+
"$ref": "@vertigis.arcgis-extensions.data.Feature.FeatureProperties"
|
|
2484
|
+
}
|
|
2485
|
+
]
|
|
2444
2486
|
},
|
|
2445
2487
|
"type": "array"
|
|
2488
|
+
},
|
|
2489
|
+
{
|
|
2490
|
+
"$ref": "#/definitions/Results"
|
|
2491
|
+
},
|
|
2492
|
+
{
|
|
2493
|
+
"$ref": "#/definitions/EditCommandArgs"
|
|
2446
2494
|
}
|
|
2447
2495
|
]
|
|
2448
2496
|
},
|
|
@@ -2463,22 +2511,41 @@
|
|
|
2463
2511
|
},
|
|
2464
2512
|
"edit.delete-features:input": {
|
|
2465
2513
|
"anyOf": [
|
|
2514
|
+
{
|
|
2515
|
+
"$ref": "@vertigis.arcgis-extensions.data.FeatureSet.FeatureSet"
|
|
2516
|
+
},
|
|
2466
2517
|
{
|
|
2467
2518
|
"$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
|
|
2468
2519
|
},
|
|
2469
2520
|
{
|
|
2470
|
-
"$ref": "
|
|
2521
|
+
"$ref": "@vertigis.arcgis-extensions.data.FeatureStream.FeatureStream"
|
|
2522
|
+
},
|
|
2523
|
+
{
|
|
2524
|
+
"$ref": "@vertigis.arcgis-extensions.data.FeatureList.FeatureList"
|
|
2471
2525
|
},
|
|
2472
2526
|
{
|
|
2473
2527
|
"items": {
|
|
2474
|
-
"
|
|
2528
|
+
"anyOf": [
|
|
2529
|
+
{
|
|
2530
|
+
"$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
|
|
2531
|
+
},
|
|
2532
|
+
{
|
|
2533
|
+
"$ref": "@vertigis.arcgis-extensions.data.Feature.FeatureProperties"
|
|
2534
|
+
}
|
|
2535
|
+
]
|
|
2475
2536
|
},
|
|
2476
2537
|
"type": "array"
|
|
2538
|
+
},
|
|
2539
|
+
{
|
|
2540
|
+
"$ref": "#/definitions/Results"
|
|
2541
|
+
},
|
|
2542
|
+
{
|
|
2543
|
+
"$ref": "#/definitions/EditCommandArgs"
|
|
2477
2544
|
}
|
|
2478
2545
|
]
|
|
2479
2546
|
},
|
|
2480
2547
|
"edit.display-add-feature": {
|
|
2481
|
-
"description": "
|
|
2548
|
+
"description": "Begin an interactive feature editing session with a new feature. `DisplayAddFeatureArgs` is not supported on Mobile.",
|
|
2482
2549
|
"enum": [
|
|
2483
2550
|
"edit.display-add-feature"
|
|
2484
2551
|
]
|
|
@@ -2494,7 +2561,7 @@
|
|
|
2494
2561
|
]
|
|
2495
2562
|
},
|
|
2496
2563
|
"edit.display-update-feature": {
|
|
2497
|
-
"description": "
|
|
2564
|
+
"description": "Begin an interactive feature editing session with an existing feature. `DisplayUpdateFeatureArgs` is not supported on Mobile.",
|
|
2498
2565
|
"enum": [
|
|
2499
2566
|
"edit.display-update-feature"
|
|
2500
2567
|
]
|
|
@@ -2510,24 +2577,43 @@
|
|
|
2510
2577
|
]
|
|
2511
2578
|
},
|
|
2512
2579
|
"edit.update-feature": {
|
|
2513
|
-
"description": "Updates a feature. `
|
|
2580
|
+
"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.",
|
|
2514
2581
|
"enum": [
|
|
2515
2582
|
"edit.update-feature"
|
|
2516
2583
|
]
|
|
2517
2584
|
},
|
|
2518
2585
|
"edit.update-feature:input": {
|
|
2519
2586
|
"anyOf": [
|
|
2587
|
+
{
|
|
2588
|
+
"$ref": "@vertigis.arcgis-extensions.data.FeatureSet.FeatureSet"
|
|
2589
|
+
},
|
|
2520
2590
|
{
|
|
2521
2591
|
"$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
|
|
2522
2592
|
},
|
|
2523
2593
|
{
|
|
2524
|
-
"$ref": "
|
|
2594
|
+
"$ref": "@vertigis.arcgis-extensions.data.FeatureStream.FeatureStream"
|
|
2595
|
+
},
|
|
2596
|
+
{
|
|
2597
|
+
"$ref": "@vertigis.arcgis-extensions.data.FeatureList.FeatureList"
|
|
2525
2598
|
},
|
|
2526
2599
|
{
|
|
2527
2600
|
"items": {
|
|
2528
|
-
"
|
|
2601
|
+
"anyOf": [
|
|
2602
|
+
{
|
|
2603
|
+
"$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
|
|
2604
|
+
},
|
|
2605
|
+
{
|
|
2606
|
+
"$ref": "@vertigis.arcgis-extensions.data.Feature.FeatureProperties"
|
|
2607
|
+
}
|
|
2608
|
+
]
|
|
2529
2609
|
},
|
|
2530
2610
|
"type": "array"
|
|
2611
|
+
},
|
|
2612
|
+
{
|
|
2613
|
+
"$ref": "#/definitions/Results"
|
|
2614
|
+
},
|
|
2615
|
+
{
|
|
2616
|
+
"$ref": "#/definitions/EditCommandArgs"
|
|
2531
2617
|
}
|
|
2532
2618
|
]
|
|
2533
2619
|
},
|
|
@@ -2535,7 +2621,7 @@
|
|
|
2535
2621
|
"$ref": "esri/geometry/Extent"
|
|
2536
2622
|
},
|
|
2537
2623
|
"esri.FeatureSet": {
|
|
2538
|
-
"$ref": "esri/
|
|
2624
|
+
"$ref": "esri/rest/support/FeatureSet"
|
|
2539
2625
|
},
|
|
2540
2626
|
"esri.FeatureType": {
|
|
2541
2627
|
"$ref": "esri/layers/support/FeatureType"
|
|
@@ -2897,6 +2983,23 @@
|
|
|
2897
2983
|
},
|
|
2898
2984
|
"type": "object"
|
|
2899
2985
|
},
|
|
2986
|
+
"esri.rest-api.CIMSymbol.CIMSymbol": {
|
|
2987
|
+
"additionalProperties": false,
|
|
2988
|
+
"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/}.",
|
|
2989
|
+
"properties": {
|
|
2990
|
+
"type": {
|
|
2991
|
+
"description": "Specifies the type of symbol used.",
|
|
2992
|
+
"enum": [
|
|
2993
|
+
"CIMSymbolReference"
|
|
2994
|
+
],
|
|
2995
|
+
"type": "string"
|
|
2996
|
+
}
|
|
2997
|
+
},
|
|
2998
|
+
"required": [
|
|
2999
|
+
"type"
|
|
3000
|
+
],
|
|
3001
|
+
"type": "object"
|
|
3002
|
+
},
|
|
2900
3003
|
"esri.rest-api.CSVLayer.CSVLayer": {
|
|
2901
3004
|
"additionalProperties": false,
|
|
2902
3005
|
"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/}.",
|
|
@@ -3097,6 +3200,9 @@
|
|
|
3097
3200
|
},
|
|
3098
3201
|
"symbol": {
|
|
3099
3202
|
"anyOf": [
|
|
3203
|
+
{
|
|
3204
|
+
"$ref": "#/definitions/esri.rest-api.CIMSymbol.CIMSymbol"
|
|
3205
|
+
},
|
|
3100
3206
|
{
|
|
3101
3207
|
"$ref": "#/definitions/esri.rest-api.SimpleLineSymbol.SimpleLineSymbol"
|
|
3102
3208
|
},
|
|
@@ -3179,6 +3285,9 @@
|
|
|
3179
3285
|
},
|
|
3180
3286
|
"defaultSymbol": {
|
|
3181
3287
|
"anyOf": [
|
|
3288
|
+
{
|
|
3289
|
+
"$ref": "#/definitions/esri.rest-api.CIMSymbol.CIMSymbol"
|
|
3290
|
+
},
|
|
3182
3291
|
{
|
|
3183
3292
|
"$ref": "#/definitions/esri.rest-api.SimpleLineSymbol.SimpleLineSymbol"
|
|
3184
3293
|
},
|
|
@@ -3882,8 +3991,15 @@
|
|
|
3882
3991
|
"$ref": "#/definitions/esri.rest-api.Geometry.Geometry",
|
|
3883
3992
|
"description": "The feature geometry."
|
|
3884
3993
|
},
|
|
3994
|
+
"popupInfo": {
|
|
3995
|
+
"$ref": "#/definitions/esri.rest-api.PopupInfo.PopupInfo",
|
|
3996
|
+
"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."
|
|
3997
|
+
},
|
|
3885
3998
|
"symbol": {
|
|
3886
3999
|
"anyOf": [
|
|
4000
|
+
{
|
|
4001
|
+
"$ref": "#/definitions/esri.rest-api.CIMSymbol.CIMSymbol"
|
|
4002
|
+
},
|
|
3887
4003
|
{
|
|
3888
4004
|
"$ref": "#/definitions/esri.rest-api.SimpleLineSymbol.SimpleLineSymbol"
|
|
3889
4005
|
},
|
|
@@ -5175,7 +5291,9 @@
|
|
|
5175
5291
|
"properties": {
|
|
5176
5292
|
"bandIds": {
|
|
5177
5293
|
"description": "An array of bandIds that are visible, can specify bands to export or rearrange band order(from image service).",
|
|
5178
|
-
"items": {
|
|
5294
|
+
"items": {
|
|
5295
|
+
"type": "number"
|
|
5296
|
+
},
|
|
5179
5297
|
"type": "array"
|
|
5180
5298
|
},
|
|
5181
5299
|
"blendMode": {
|
|
@@ -6260,7 +6378,7 @@
|
|
|
6260
6378
|
"type": "string"
|
|
6261
6379
|
},
|
|
6262
6380
|
"orderBy": {
|
|
6263
|
-
"description": "Determines the display order of features on the map
|
|
6381
|
+
"description": "Determines the display order of features on the map.",
|
|
6264
6382
|
"items": {
|
|
6265
6383
|
"$ref": "#/definitions/esri.rest-api.LayerDefinition.OrderByClause"
|
|
6266
6384
|
},
|
|
@@ -6426,7 +6544,7 @@
|
|
|
6426
6544
|
"type": "string"
|
|
6427
6545
|
},
|
|
6428
6546
|
"valueExpression": {
|
|
6429
|
-
"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).",
|
|
6547
|
+
"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).",
|
|
6430
6548
|
"type": "string"
|
|
6431
6549
|
}
|
|
6432
6550
|
},
|
|
@@ -8586,6 +8704,9 @@
|
|
|
8586
8704
|
},
|
|
8587
8705
|
"symbol": {
|
|
8588
8706
|
"anyOf": [
|
|
8707
|
+
{
|
|
8708
|
+
"$ref": "#/definitions/esri.rest-api.CIMSymbol.CIMSymbol"
|
|
8709
|
+
},
|
|
8589
8710
|
{
|
|
8590
8711
|
"$ref": "#/definitions/esri.rest-api.SimpleLineSymbol.SimpleLineSymbol"
|
|
8591
8712
|
},
|
|
@@ -8900,6 +9021,9 @@
|
|
|
8900
9021
|
},
|
|
8901
9022
|
"esri.rest-api.Symbol.Symbol": {
|
|
8902
9023
|
"anyOf": [
|
|
9024
|
+
{
|
|
9025
|
+
"$ref": "#/definitions/esri.rest-api.CIMSymbol.CIMSymbol"
|
|
9026
|
+
},
|
|
8903
9027
|
{
|
|
8904
9028
|
"$ref": "#/definitions/esri.rest-api.SimpleLineSymbol.SimpleLineSymbol"
|
|
8905
9029
|
},
|
|
@@ -9619,6 +9743,9 @@
|
|
|
9619
9743
|
},
|
|
9620
9744
|
"symbol": {
|
|
9621
9745
|
"anyOf": [
|
|
9746
|
+
{
|
|
9747
|
+
"$ref": "#/definitions/esri.rest-api.CIMSymbol.CIMSymbol"
|
|
9748
|
+
},
|
|
9622
9749
|
{
|
|
9623
9750
|
"$ref": "#/definitions/esri.rest-api.SimpleLineSymbol.SimpleLineSymbol"
|
|
9624
9751
|
},
|
|
@@ -9687,6 +9814,9 @@
|
|
|
9687
9814
|
},
|
|
9688
9815
|
"defaultSymbol": {
|
|
9689
9816
|
"anyOf": [
|
|
9817
|
+
{
|
|
9818
|
+
"$ref": "#/definitions/esri.rest-api.CIMSymbol.CIMSymbol"
|
|
9819
|
+
},
|
|
9690
9820
|
{
|
|
9691
9821
|
"$ref": "#/definitions/esri.rest-api.SimpleLineSymbol.SimpleLineSymbol"
|
|
9692
9822
|
},
|
|
@@ -11485,6 +11615,12 @@
|
|
|
11485
11615
|
"ui.display-notification:input": {
|
|
11486
11616
|
"$ref": "#/definitions/DisplayNotificationArgs"
|
|
11487
11617
|
},
|
|
11618
|
+
"ui.hide-notification": {
|
|
11619
|
+
"description": "Hides a notification previously shown to the user.",
|
|
11620
|
+
"enum": [
|
|
11621
|
+
"ui.hide-notification"
|
|
11622
|
+
]
|
|
11623
|
+
},
|
|
11488
11624
|
"ui.set-theme": {
|
|
11489
11625
|
"description": "Sets the color theme of the viewer. The required argument is the new theme's ID.",
|
|
11490
11626
|
"enum": [
|
|
@@ -12491,6 +12627,9 @@
|
|
|
12491
12627
|
{
|
|
12492
12628
|
"$ref": "#/definitions/ui.display-notification"
|
|
12493
12629
|
},
|
|
12630
|
+
{
|
|
12631
|
+
"$ref": "#/definitions/ui.hide-notification"
|
|
12632
|
+
},
|
|
12494
12633
|
{
|
|
12495
12634
|
"$ref": "#/definitions/ui.set-theme"
|
|
12496
12635
|
},
|
|
@@ -365,7 +365,7 @@
|
|
|
365
365
|
"type": "string"
|
|
366
366
|
},
|
|
367
367
|
"edit.feature-added": {
|
|
368
|
-
"description": "Raised when a feature is added.",
|
|
368
|
+
"description": "Raised when a new feature is added to a feature source.",
|
|
369
369
|
"enum": [
|
|
370
370
|
"edit.feature-added"
|
|
371
371
|
]
|
|
@@ -374,7 +374,7 @@
|
|
|
374
374
|
"$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
|
|
375
375
|
},
|
|
376
376
|
"edit.feature-deleted": {
|
|
377
|
-
"description": "Raised when a feature is deleted.",
|
|
377
|
+
"description": "Raised when a feature is deleted from a feature source.",
|
|
378
378
|
"enum": [
|
|
379
379
|
"edit.feature-deleted"
|
|
380
380
|
]
|
|
@@ -383,7 +383,7 @@
|
|
|
383
383
|
"$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
|
|
384
384
|
},
|
|
385
385
|
"edit.feature-updated": {
|
|
386
|
-
"description": "Raised when a feature
|
|
386
|
+
"description": "Raised when the attributes or geometry of a feature from a feature source are updated.",
|
|
387
387
|
"enum": [
|
|
388
388
|
"edit.feature-updated"
|
|
389
389
|
]
|
|
@@ -691,6 +691,23 @@
|
|
|
691
691
|
},
|
|
692
692
|
"type": "object"
|
|
693
693
|
},
|
|
694
|
+
"esri.rest-api.CIMSymbol.CIMSymbol": {
|
|
695
|
+
"additionalProperties": false,
|
|
696
|
+
"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/}.",
|
|
697
|
+
"properties": {
|
|
698
|
+
"type": {
|
|
699
|
+
"description": "Specifies the type of symbol used.",
|
|
700
|
+
"enum": [
|
|
701
|
+
"CIMSymbolReference"
|
|
702
|
+
],
|
|
703
|
+
"type": "string"
|
|
704
|
+
}
|
|
705
|
+
},
|
|
706
|
+
"required": [
|
|
707
|
+
"type"
|
|
708
|
+
],
|
|
709
|
+
"type": "object"
|
|
710
|
+
},
|
|
694
711
|
"esri.rest-api.CSVLayer.CSVLayer": {
|
|
695
712
|
"additionalProperties": false,
|
|
696
713
|
"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/}.",
|
|
@@ -869,6 +886,9 @@
|
|
|
869
886
|
},
|
|
870
887
|
"symbol": {
|
|
871
888
|
"anyOf": [
|
|
889
|
+
{
|
|
890
|
+
"$ref": "#/definitions/esri.rest-api.CIMSymbol.CIMSymbol"
|
|
891
|
+
},
|
|
872
892
|
{
|
|
873
893
|
"$ref": "#/definitions/esri.rest-api.SimpleLineSymbol.SimpleLineSymbol"
|
|
874
894
|
},
|
|
@@ -951,6 +971,9 @@
|
|
|
951
971
|
},
|
|
952
972
|
"defaultSymbol": {
|
|
953
973
|
"anyOf": [
|
|
974
|
+
{
|
|
975
|
+
"$ref": "#/definitions/esri.rest-api.CIMSymbol.CIMSymbol"
|
|
976
|
+
},
|
|
954
977
|
{
|
|
955
978
|
"$ref": "#/definitions/esri.rest-api.SimpleLineSymbol.SimpleLineSymbol"
|
|
956
979
|
},
|
|
@@ -1654,8 +1677,15 @@
|
|
|
1654
1677
|
"$ref": "#/definitions/esri.rest-api.Geometry.Geometry",
|
|
1655
1678
|
"description": "The feature geometry."
|
|
1656
1679
|
},
|
|
1680
|
+
"popupInfo": {
|
|
1681
|
+
"$ref": "#/definitions/esri.rest-api.PopupInfo.PopupInfo",
|
|
1682
|
+
"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."
|
|
1683
|
+
},
|
|
1657
1684
|
"symbol": {
|
|
1658
1685
|
"anyOf": [
|
|
1686
|
+
{
|
|
1687
|
+
"$ref": "#/definitions/esri.rest-api.CIMSymbol.CIMSymbol"
|
|
1688
|
+
},
|
|
1659
1689
|
{
|
|
1660
1690
|
"$ref": "#/definitions/esri.rest-api.SimpleLineSymbol.SimpleLineSymbol"
|
|
1661
1691
|
},
|
|
@@ -2947,7 +2977,9 @@
|
|
|
2947
2977
|
"properties": {
|
|
2948
2978
|
"bandIds": {
|
|
2949
2979
|
"description": "An array of bandIds that are visible, can specify bands to export or rearrange band order(from image service).",
|
|
2950
|
-
"items": {
|
|
2980
|
+
"items": {
|
|
2981
|
+
"type": "number"
|
|
2982
|
+
},
|
|
2951
2983
|
"type": "array"
|
|
2952
2984
|
},
|
|
2953
2985
|
"blendMode": {
|
|
@@ -3803,7 +3835,7 @@
|
|
|
3803
3835
|
"type": "string"
|
|
3804
3836
|
},
|
|
3805
3837
|
"orderBy": {
|
|
3806
|
-
"description": "Determines the display order of features on the map
|
|
3838
|
+
"description": "Determines the display order of features on the map.",
|
|
3807
3839
|
"items": {
|
|
3808
3840
|
"$ref": "#/definitions/esri.rest-api.LayerDefinition.OrderByClause"
|
|
3809
3841
|
},
|
|
@@ -3969,7 +4001,7 @@
|
|
|
3969
4001
|
"type": "string"
|
|
3970
4002
|
},
|
|
3971
4003
|
"valueExpression": {
|
|
3972
|
-
"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).",
|
|
4004
|
+
"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).",
|
|
3973
4005
|
"type": "string"
|
|
3974
4006
|
}
|
|
3975
4007
|
},
|
|
@@ -6129,6 +6161,9 @@
|
|
|
6129
6161
|
},
|
|
6130
6162
|
"symbol": {
|
|
6131
6163
|
"anyOf": [
|
|
6164
|
+
{
|
|
6165
|
+
"$ref": "#/definitions/esri.rest-api.CIMSymbol.CIMSymbol"
|
|
6166
|
+
},
|
|
6132
6167
|
{
|
|
6133
6168
|
"$ref": "#/definitions/esri.rest-api.SimpleLineSymbol.SimpleLineSymbol"
|
|
6134
6169
|
},
|
|
@@ -6443,6 +6478,9 @@
|
|
|
6443
6478
|
},
|
|
6444
6479
|
"esri.rest-api.Symbol.Symbol": {
|
|
6445
6480
|
"anyOf": [
|
|
6481
|
+
{
|
|
6482
|
+
"$ref": "#/definitions/esri.rest-api.CIMSymbol.CIMSymbol"
|
|
6483
|
+
},
|
|
6446
6484
|
{
|
|
6447
6485
|
"$ref": "#/definitions/esri.rest-api.SimpleLineSymbol.SimpleLineSymbol"
|
|
6448
6486
|
},
|
|
@@ -7162,6 +7200,9 @@
|
|
|
7162
7200
|
},
|
|
7163
7201
|
"symbol": {
|
|
7164
7202
|
"anyOf": [
|
|
7203
|
+
{
|
|
7204
|
+
"$ref": "#/definitions/esri.rest-api.CIMSymbol.CIMSymbol"
|
|
7205
|
+
},
|
|
7165
7206
|
{
|
|
7166
7207
|
"$ref": "#/definitions/esri.rest-api.SimpleLineSymbol.SimpleLineSymbol"
|
|
7167
7208
|
},
|
|
@@ -7230,6 +7271,9 @@
|
|
|
7230
7271
|
},
|
|
7231
7272
|
"defaultSymbol": {
|
|
7232
7273
|
"anyOf": [
|
|
7274
|
+
{
|
|
7275
|
+
"$ref": "#/definitions/esri.rest-api.CIMSymbol.CIMSymbol"
|
|
7276
|
+
},
|
|
7233
7277
|
{
|
|
7234
7278
|
"$ref": "#/definitions/esri.rest-api.SimpleLineSymbol.SimpleLineSymbol"
|
|
7235
7279
|
},
|