@vertigis/viewer-spec 45.1.0 → 46.1.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/messaging/registry/Operations.d.ts +2 -0
- package/messaging/registry/Operations.js +1 -1
- package/messaging/registry/edit.d.ts +104 -25
- package/messaging/registry/edit.js +1 -1
- package/messaging/registry/map.d.ts +5 -0
- package/messaging/registry/sketching.d.ts +310 -23
- package/messaging/registry/sketching.js +1 -1
- package/messaging/registry/ui.d.ts +4 -3
- package/messaging/schema/common-action.schema.json +592 -8
- package/messaging/schema/common-event.schema.json +36 -0
- package/messaging/schema/mobile-action.schema.json +547 -17
- package/messaging/schema/web-action.schema.json +875 -26
- package/messaging/schema/web-event.schema.json +36 -0
- package/package.json +3 -3
- package/version.d.ts +1 -1
- package/version.js +1 -1
|
@@ -351,6 +351,29 @@
|
|
|
351
351
|
},
|
|
352
352
|
"type": "object"
|
|
353
353
|
},
|
|
354
|
+
"@vertigis.arcgis-extensions.mapping._LayerExtension.LayerReference": {
|
|
355
|
+
"additionalProperties": false,
|
|
356
|
+
"description": "Matches an existing layer.",
|
|
357
|
+
"properties": {
|
|
358
|
+
"id": {
|
|
359
|
+
"description": "The layer's ID.",
|
|
360
|
+
"type": "string"
|
|
361
|
+
},
|
|
362
|
+
"path": {
|
|
363
|
+
"description": "The path to the geodatabase used by an MMAP layer. Mobile only.",
|
|
364
|
+
"type": "string"
|
|
365
|
+
},
|
|
366
|
+
"subtype": {
|
|
367
|
+
"description": "The Layer's type, used for Layer types with multiple possible layer extension mappings.",
|
|
368
|
+
"type": "string"
|
|
369
|
+
},
|
|
370
|
+
"title": {
|
|
371
|
+
"description": "The layer's title.",
|
|
372
|
+
"type": "string"
|
|
373
|
+
}
|
|
374
|
+
},
|
|
375
|
+
"type": "object"
|
|
376
|
+
},
|
|
354
377
|
"@vertigis.arcgis-extensions.support.FormatSettings.FormatSettingsProperties": {
|
|
355
378
|
"additionalProperties": false,
|
|
356
379
|
"description": "Properties that can be passed into the constructor for {@link FormatSettings}.",
|
|
@@ -463,7 +486,7 @@
|
|
|
463
486
|
},
|
|
464
487
|
"AddNodeToGeometryArgs": {
|
|
465
488
|
"additionalProperties": false,
|
|
466
|
-
"description": "
|
|
489
|
+
"description": "Deprecated - Mobile users should rather use \"geometry.add-point\"; Web users should use \"sketching.add-point\" with {@link AddPointArgs} or \"sketching.insert-point\" with {@link InsertPointArgs} instead.",
|
|
467
490
|
"properties": {
|
|
468
491
|
"geometry": {
|
|
469
492
|
"$ref": "#/definitions/esri.Geometry",
|
|
@@ -493,6 +516,28 @@
|
|
|
493
516
|
],
|
|
494
517
|
"type": "object"
|
|
495
518
|
},
|
|
519
|
+
"AddPointArgs": {
|
|
520
|
+
"additionalProperties": false,
|
|
521
|
+
"description": "Arguments for the \"sketching.add-point\" command.",
|
|
522
|
+
"properties": {
|
|
523
|
+
"geometry": {
|
|
524
|
+
"$ref": "#/definitions/esri.Geometry",
|
|
525
|
+
"description": "The geometry to add the point to, if multiple are present in an active editing session. Not supported by Mobile."
|
|
526
|
+
},
|
|
527
|
+
"maps": {
|
|
528
|
+
"$ref": "MapsLike",
|
|
529
|
+
"description": "Map(s) to use for the command/operation."
|
|
530
|
+
},
|
|
531
|
+
"newPoint": {
|
|
532
|
+
"$ref": "#/definitions/esri.Point",
|
|
533
|
+
"description": "The new point to be added."
|
|
534
|
+
}
|
|
535
|
+
},
|
|
536
|
+
"required": [
|
|
537
|
+
"newPoint"
|
|
538
|
+
],
|
|
539
|
+
"type": "object"
|
|
540
|
+
},
|
|
496
541
|
"AlertCommandArgs": {
|
|
497
542
|
"additionalProperties": false,
|
|
498
543
|
"description": "Arguments for the 'ui.alert' command.",
|
|
@@ -555,6 +600,10 @@
|
|
|
555
600
|
"$ref": "MapsLike",
|
|
556
601
|
"description": "The maps to activate drawing on. By default it will be all maps."
|
|
557
602
|
},
|
|
603
|
+
"maxSegments": {
|
|
604
|
+
"description": "The maximum number of segments permitted for a polyline or polygon sketch. Default is no limit. Mobile only.",
|
|
605
|
+
"type": "number"
|
|
606
|
+
},
|
|
558
607
|
"symbol": {
|
|
559
608
|
"anyOf": [
|
|
560
609
|
{
|
|
@@ -660,12 +709,93 @@
|
|
|
660
709
|
"description": "Arguments for the \"sketching.delete\" command.",
|
|
661
710
|
"properties": {
|
|
662
711
|
"geometry": {
|
|
712
|
+
"$ref": "#/definitions/esri.Geometry",
|
|
713
|
+
"description": "The geometry to remove a point from. If this property is not specified, any active vertices will be deleted."
|
|
714
|
+
},
|
|
715
|
+
"maps": {
|
|
716
|
+
"$ref": "MapsLike",
|
|
717
|
+
"description": "Map(s) to use for the command/operation."
|
|
718
|
+
},
|
|
719
|
+
"partIndex": {
|
|
720
|
+
"description": "The index of the part of the geometry that the point should be removed from. Required for polyline and polygon geometry types when the geometry and pointIndex properties are defined.",
|
|
721
|
+
"type": "number"
|
|
722
|
+
},
|
|
723
|
+
"point": {
|
|
663
724
|
"$ref": "#/definitions/esri.Point",
|
|
664
|
-
"description": "The point to
|
|
725
|
+
"description": "The point to remove from the geometry. If this property is defined, the 'pointIndex' and 'partIndex' properties are ignored. If no point nor pointIndex/partIndex are specified, any active points will be deleted. If there are no active points, the entire geometry will be deleted."
|
|
726
|
+
},
|
|
727
|
+
"pointIndex": {
|
|
728
|
+
"description": "The index of the point that should be removed from the geometry. If this property is defined, the geometry property must also be defined.",
|
|
729
|
+
"type": "number"
|
|
730
|
+
}
|
|
731
|
+
},
|
|
732
|
+
"type": "object"
|
|
733
|
+
},
|
|
734
|
+
"DisplayAddFeatureArgs": {
|
|
735
|
+
"additionalProperties": false,
|
|
736
|
+
"description": "Arguments for the \"edit.display-add-features\" command. Web only.",
|
|
737
|
+
"properties": {
|
|
738
|
+
"attributes": {
|
|
739
|
+
"description": "Optional layout XML attributes to be used for the transient UI container."
|
|
740
|
+
},
|
|
741
|
+
"editAttachments": {
|
|
742
|
+
"description": "Whether to allow editing of feature attachments.",
|
|
743
|
+
"type": "boolean"
|
|
744
|
+
},
|
|
745
|
+
"editAttributes": {
|
|
746
|
+
"description": "Whether to allow editing of feature attributes.",
|
|
747
|
+
"type": "boolean"
|
|
748
|
+
},
|
|
749
|
+
"editGeometry": {
|
|
750
|
+
"description": "Whether to allow editing of feature geometry.",
|
|
751
|
+
"type": "boolean"
|
|
752
|
+
},
|
|
753
|
+
"editGeometryOptions": {
|
|
754
|
+
"$ref": "#/definitions/EditGeometryOptions",
|
|
755
|
+
"description": "Options for the geometry editing session."
|
|
756
|
+
},
|
|
757
|
+
"featureAttributes": {
|
|
758
|
+
"description": "A collection of attributes to apply to the new feature."
|
|
759
|
+
},
|
|
760
|
+
"geometry": {
|
|
761
|
+
"$ref": "#/definitions/GeometryLike",
|
|
762
|
+
"description": "The geometry to use for the command/operation."
|
|
763
|
+
},
|
|
764
|
+
"icon": {
|
|
765
|
+
"description": "Optional icon that may be used by the transient UI container.",
|
|
766
|
+
"type": "string"
|
|
767
|
+
},
|
|
768
|
+
"layers": {
|
|
769
|
+
"$ref": "#/definitions/LayersLike",
|
|
770
|
+
"description": "Layer(s) to use for the command/operation."
|
|
665
771
|
},
|
|
666
772
|
"maps": {
|
|
667
773
|
"$ref": "MapsLike",
|
|
668
774
|
"description": "Map(s) to use for the command/operation."
|
|
775
|
+
},
|
|
776
|
+
"orientation": {
|
|
777
|
+
"description": "The orientation of the template picker.",
|
|
778
|
+
"enum": [
|
|
779
|
+
"horizontal",
|
|
780
|
+
"vertical"
|
|
781
|
+
],
|
|
782
|
+
"type": "string"
|
|
783
|
+
},
|
|
784
|
+
"parent": {
|
|
785
|
+
"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.",
|
|
786
|
+
"type": "string"
|
|
787
|
+
},
|
|
788
|
+
"showNotifications": {
|
|
789
|
+
"description": "Whether to show UI notifications.",
|
|
790
|
+
"type": "boolean"
|
|
791
|
+
},
|
|
792
|
+
"showTitles": {
|
|
793
|
+
"description": "Whether to show titles on the template picker.",
|
|
794
|
+
"type": "boolean"
|
|
795
|
+
},
|
|
796
|
+
"templateName": {
|
|
797
|
+
"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.",
|
|
798
|
+
"type": "string"
|
|
669
799
|
}
|
|
670
800
|
},
|
|
671
801
|
"type": "object"
|
|
@@ -683,8 +813,8 @@
|
|
|
683
813
|
"type": "boolean"
|
|
684
814
|
},
|
|
685
815
|
"message": {
|
|
686
|
-
"
|
|
687
|
-
"
|
|
816
|
+
"$ref": "#/definitions/TranslatableText",
|
|
817
|
+
"description": "The message to be displayed in the notification. Mobile only supports a string for this property."
|
|
688
818
|
},
|
|
689
819
|
"notificationGroup": {
|
|
690
820
|
"description": "Notifications in the same notification group are mutually exclusive, and will supersede one another. Mobile only.",
|
|
@@ -708,6 +838,63 @@
|
|
|
708
838
|
],
|
|
709
839
|
"type": "object"
|
|
710
840
|
},
|
|
841
|
+
"DisplayUpdateFeatureArgs": {
|
|
842
|
+
"additionalProperties": false,
|
|
843
|
+
"description": "Arguments for the \"edit.display-update-features\" operation. Web only.",
|
|
844
|
+
"properties": {
|
|
845
|
+
"editAttachments": {
|
|
846
|
+
"description": "Whether to allow editing of feature attachments.",
|
|
847
|
+
"type": "boolean"
|
|
848
|
+
},
|
|
849
|
+
"editAttributes": {
|
|
850
|
+
"description": "Whether to allow editing of feature attributes.",
|
|
851
|
+
"type": "boolean"
|
|
852
|
+
},
|
|
853
|
+
"editGeometry": {
|
|
854
|
+
"description": "Whether to allow editing of feature geometry.",
|
|
855
|
+
"type": "boolean"
|
|
856
|
+
},
|
|
857
|
+
"editGeometryOptions": {
|
|
858
|
+
"$ref": "#/definitions/EditGeometryOptions",
|
|
859
|
+
"description": "Options for the geometry editing session."
|
|
860
|
+
},
|
|
861
|
+
"featureAttributes": {
|
|
862
|
+
"description": "A collection of attributes to automatically apply to the updated feature."
|
|
863
|
+
},
|
|
864
|
+
"features": {
|
|
865
|
+
"$ref": "#/definitions/FeaturesLike",
|
|
866
|
+
"description": "Features to use for the command/operation."
|
|
867
|
+
},
|
|
868
|
+
"geometry": {
|
|
869
|
+
"$ref": "#/definitions/GeometryLike",
|
|
870
|
+
"description": "The geometry to use for the command/operation."
|
|
871
|
+
},
|
|
872
|
+
"maps": {
|
|
873
|
+
"$ref": "MapsLike",
|
|
874
|
+
"description": "Map(s) to use for the command/operation."
|
|
875
|
+
},
|
|
876
|
+
"showNotifications": {
|
|
877
|
+
"description": "Whether to show UI notifications.",
|
|
878
|
+
"type": "boolean"
|
|
879
|
+
}
|
|
880
|
+
},
|
|
881
|
+
"type": "object"
|
|
882
|
+
},
|
|
883
|
+
"EditCommandArgs": {
|
|
884
|
+
"additionalProperties": false,
|
|
885
|
+
"description": "Arguments for the \"edit.add-features\", \"edit.update-features\" and \"edit.delete-features\" commands. Web only.",
|
|
886
|
+
"properties": {
|
|
887
|
+
"features": {
|
|
888
|
+
"$ref": "#/definitions/FeaturesLike",
|
|
889
|
+
"description": "Features to use for the command/operation."
|
|
890
|
+
},
|
|
891
|
+
"showNotifications": {
|
|
892
|
+
"description": "Whether to show UI notifications.",
|
|
893
|
+
"type": "boolean"
|
|
894
|
+
}
|
|
895
|
+
},
|
|
896
|
+
"type": "object"
|
|
897
|
+
},
|
|
711
898
|
"EditGeometryArgs": {
|
|
712
899
|
"additionalProperties": false,
|
|
713
900
|
"description": "Arguments for the \"sketching.edit-geometry\" operation.",
|
|
@@ -793,6 +980,10 @@
|
|
|
793
980
|
"description": "Whether to allow scaling of the edited geometry. Defaults to true.",
|
|
794
981
|
"type": "boolean"
|
|
795
982
|
},
|
|
983
|
+
"enableVertexEditing": {
|
|
984
|
+
"description": "Whether to allow the user to add, move, and remove vertices from a geometry. Defaults to true.",
|
|
985
|
+
"type": "boolean"
|
|
986
|
+
},
|
|
796
987
|
"scaleMode": {
|
|
797
988
|
"description": "Setting \"free\" allows independent scaling on the x and y axis, \"preserve-aspect-ratio\" constrains scaling to the original aspect ratio. Defaults to \"preserve-aspect-ratio\".",
|
|
798
989
|
"enum": [
|
|
@@ -800,6 +991,10 @@
|
|
|
800
991
|
"preserve-aspect-ratio"
|
|
801
992
|
],
|
|
802
993
|
"type": "string"
|
|
994
|
+
},
|
|
995
|
+
"validateGeometry": {
|
|
996
|
+
"description": "Whether the resulting geometry is validated before it's returned from the operation. If the geometry is invalid upon completion, an error is thrown. Defaults to true.",
|
|
997
|
+
"type": "boolean"
|
|
803
998
|
}
|
|
804
999
|
},
|
|
805
1000
|
"type": "object"
|
|
@@ -1220,11 +1415,89 @@
|
|
|
1220
1415
|
],
|
|
1221
1416
|
"type": "object"
|
|
1222
1417
|
},
|
|
1418
|
+
"InsertPointArgs": {
|
|
1419
|
+
"additionalProperties": false,
|
|
1420
|
+
"description": "Arguments for the \"sketching.insert-point\" command.",
|
|
1421
|
+
"properties": {
|
|
1422
|
+
"geometry": {
|
|
1423
|
+
"$ref": "#/definitions/esri.Geometry",
|
|
1424
|
+
"description": "The geometry to add the point to, if multiple are present in an active editing session. Not supported by Mobile."
|
|
1425
|
+
},
|
|
1426
|
+
"maps": {
|
|
1427
|
+
"$ref": "MapsLike",
|
|
1428
|
+
"description": "Map(s) to use for the command/operation."
|
|
1429
|
+
},
|
|
1430
|
+
"newPoint": {
|
|
1431
|
+
"$ref": "#/definitions/esri.Point",
|
|
1432
|
+
"description": "The new point to be added."
|
|
1433
|
+
},
|
|
1434
|
+
"partIndex": {
|
|
1435
|
+
"description": "The index of the part to which the point will be added. If null, the last part will be used.",
|
|
1436
|
+
"type": "number"
|
|
1437
|
+
},
|
|
1438
|
+
"pointIndex": {
|
|
1439
|
+
"description": "The index at which the point will be added. If null, the point will be added as the last point.",
|
|
1440
|
+
"type": "number"
|
|
1441
|
+
}
|
|
1442
|
+
},
|
|
1443
|
+
"required": [
|
|
1444
|
+
"newPoint"
|
|
1445
|
+
],
|
|
1446
|
+
"type": "object"
|
|
1447
|
+
},
|
|
1223
1448
|
"JobParameters": {
|
|
1224
1449
|
"additionalProperties": false,
|
|
1225
1450
|
"description": "A set of parameters used to run a job.",
|
|
1226
1451
|
"type": "object"
|
|
1227
1452
|
},
|
|
1453
|
+
"LayersLike": {
|
|
1454
|
+
"anyOf": [
|
|
1455
|
+
{
|
|
1456
|
+
"$ref": "#/definitions/esri.Layer"
|
|
1457
|
+
},
|
|
1458
|
+
{
|
|
1459
|
+
"$ref": "esri.SublayerLike"
|
|
1460
|
+
},
|
|
1461
|
+
{
|
|
1462
|
+
"$ref": "#/definitions/@vertigis.arcgis-extensions.mapping._LayerExtension.LayerReference"
|
|
1463
|
+
},
|
|
1464
|
+
{
|
|
1465
|
+
"$ref": "@vertigis.arcgis-extensions.mapping._LayerExtension.LayerExtension"
|
|
1466
|
+
},
|
|
1467
|
+
{
|
|
1468
|
+
"$ref": "@vertigis.arcgis-extensions.mapping._SublayerExtension.SublayerExtension"
|
|
1469
|
+
},
|
|
1470
|
+
{
|
|
1471
|
+
"items": {
|
|
1472
|
+
"anyOf": [
|
|
1473
|
+
{
|
|
1474
|
+
"$ref": "#/definitions/esri.Layer"
|
|
1475
|
+
},
|
|
1476
|
+
{
|
|
1477
|
+
"$ref": "esri.SublayerLike"
|
|
1478
|
+
},
|
|
1479
|
+
{
|
|
1480
|
+
"$ref": "#/definitions/@vertigis.arcgis-extensions.mapping._LayerExtension.LayerReference"
|
|
1481
|
+
},
|
|
1482
|
+
{
|
|
1483
|
+
"$ref": "@vertigis.arcgis-extensions.mapping._LayerExtension.LayerExtension"
|
|
1484
|
+
},
|
|
1485
|
+
{
|
|
1486
|
+
"$ref": "@vertigis.arcgis-extensions.mapping._SublayerExtension.SublayerExtension"
|
|
1487
|
+
},
|
|
1488
|
+
{
|
|
1489
|
+
"type": "string"
|
|
1490
|
+
}
|
|
1491
|
+
]
|
|
1492
|
+
},
|
|
1493
|
+
"type": "array"
|
|
1494
|
+
},
|
|
1495
|
+
{
|
|
1496
|
+
"type": "string"
|
|
1497
|
+
}
|
|
1498
|
+
],
|
|
1499
|
+
"description": "One or more objects that are convertible to layer extensions."
|
|
1500
|
+
},
|
|
1228
1501
|
"MapRotateArgs": {
|
|
1229
1502
|
"additionalProperties": false,
|
|
1230
1503
|
"description": "Arguments for the \"map.rotate-by\" and \"map.rotate-to\" commands.",
|
|
@@ -1760,6 +2033,61 @@
|
|
|
1760
2033
|
},
|
|
1761
2034
|
"type": "object"
|
|
1762
2035
|
},
|
|
2036
|
+
"TranslatableText": {
|
|
2037
|
+
"anyOf": [
|
|
2038
|
+
{
|
|
2039
|
+
"$ref": "#/definitions/TranslateOptions"
|
|
2040
|
+
},
|
|
2041
|
+
{
|
|
2042
|
+
"type": "string"
|
|
2043
|
+
}
|
|
2044
|
+
],
|
|
2045
|
+
"description": "A translatable string, either a language string or a language string with arguments to pass into it."
|
|
2046
|
+
},
|
|
2047
|
+
"TranslateOptions": {
|
|
2048
|
+
"additionalProperties": false,
|
|
2049
|
+
"description": "The available options for the Locale Service translate function.",
|
|
2050
|
+
"properties": {
|
|
2051
|
+
"args": {
|
|
2052
|
+
"description": "The values to substitute into the format string if it contains substitution placeholders (see utilities/string/format in Geocortex API).",
|
|
2053
|
+
"items": {
|
|
2054
|
+
},
|
|
2055
|
+
"type": "array"
|
|
2056
|
+
},
|
|
2057
|
+
"currency": {
|
|
2058
|
+
"description": "The default unit of currency to use when formatting currency. See {@link NumberSettings.currency}.",
|
|
2059
|
+
"type": "string"
|
|
2060
|
+
},
|
|
2061
|
+
"dateFormat": {
|
|
2062
|
+
"description": "The default format to use when formatting dates. See {@link DateFormatter.format}.",
|
|
2063
|
+
"type": "string"
|
|
2064
|
+
},
|
|
2065
|
+
"fractionalDigits": {
|
|
2066
|
+
"description": "The default number of digits to show after the decimal point when formatting numbers. See {@link NumberSettings.fractionalDigits}.",
|
|
2067
|
+
"type": "number"
|
|
2068
|
+
},
|
|
2069
|
+
"locale": {
|
|
2070
|
+
"description": "The locale to use for translation. If not specified, the current locale will be used.",
|
|
2071
|
+
"type": "string"
|
|
2072
|
+
},
|
|
2073
|
+
"numberFormat": {
|
|
2074
|
+
"description": "The default format to use when formatting numbers. See {@link NumberFormatter.format}.",
|
|
2075
|
+
"type": "string"
|
|
2076
|
+
},
|
|
2077
|
+
"text": {
|
|
2078
|
+
"description": "The string to translate. If the text is a language resource key, then a localized version of that resource will be used if one exists, otherwise the original text is returned.",
|
|
2079
|
+
"type": "string"
|
|
2080
|
+
},
|
|
2081
|
+
"timeZone": {
|
|
2082
|
+
"description": "The time zone of a date being formatted.",
|
|
2083
|
+
"type": "string"
|
|
2084
|
+
}
|
|
2085
|
+
},
|
|
2086
|
+
"required": [
|
|
2087
|
+
"text"
|
|
2088
|
+
],
|
|
2089
|
+
"type": "object"
|
|
2090
|
+
},
|
|
1763
2091
|
"UpdateResultsFeaturesArgs": {
|
|
1764
2092
|
"additionalProperties": false,
|
|
1765
2093
|
"description": "Arguments for various commands that affect a result component's features.",
|
|
@@ -1890,6 +2218,104 @@
|
|
|
1890
2218
|
"drawing.set-sync:input": {
|
|
1891
2219
|
"type": "boolean"
|
|
1892
2220
|
},
|
|
2221
|
+
"edit.add-feature": {
|
|
2222
|
+
"description": "Adds a feature to a particular layer. `Feature[]` and `EditCommandArgs` are not supported on Mobile.",
|
|
2223
|
+
"enum": [
|
|
2224
|
+
"edit.add-feature"
|
|
2225
|
+
]
|
|
2226
|
+
},
|
|
2227
|
+
"edit.add-feature:input": {
|
|
2228
|
+
"anyOf": [
|
|
2229
|
+
{
|
|
2230
|
+
"$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
|
|
2231
|
+
},
|
|
2232
|
+
{
|
|
2233
|
+
"$ref": "#/definitions/EditCommandArgs"
|
|
2234
|
+
},
|
|
2235
|
+
{
|
|
2236
|
+
"items": {
|
|
2237
|
+
"$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
|
|
2238
|
+
},
|
|
2239
|
+
"type": "array"
|
|
2240
|
+
}
|
|
2241
|
+
]
|
|
2242
|
+
},
|
|
2243
|
+
"edit.delete-features": {
|
|
2244
|
+
"description": "Deletes the given feature or features from their feature sources. `EditCommandArgs` is not supported on Mobile.",
|
|
2245
|
+
"enum": [
|
|
2246
|
+
"edit.delete-features"
|
|
2247
|
+
]
|
|
2248
|
+
},
|
|
2249
|
+
"edit.delete-features:input": {
|
|
2250
|
+
"anyOf": [
|
|
2251
|
+
{
|
|
2252
|
+
"$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
|
|
2253
|
+
},
|
|
2254
|
+
{
|
|
2255
|
+
"$ref": "#/definitions/EditCommandArgs"
|
|
2256
|
+
},
|
|
2257
|
+
{
|
|
2258
|
+
"items": {
|
|
2259
|
+
"$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
|
|
2260
|
+
},
|
|
2261
|
+
"type": "array"
|
|
2262
|
+
}
|
|
2263
|
+
]
|
|
2264
|
+
},
|
|
2265
|
+
"edit.display-add-feature": {
|
|
2266
|
+
"description": "Display a form for adding a feature. `DisplayAddFeatureArgs` is not supported on Mobile.",
|
|
2267
|
+
"enum": [
|
|
2268
|
+
"edit.display-add-feature"
|
|
2269
|
+
]
|
|
2270
|
+
},
|
|
2271
|
+
"edit.display-add-feature:input": {
|
|
2272
|
+
"anyOf": [
|
|
2273
|
+
{
|
|
2274
|
+
"$ref": "@vertigis.arcgis-extensions.data.FeatureSource.FeatureSource"
|
|
2275
|
+
},
|
|
2276
|
+
{
|
|
2277
|
+
"$ref": "#/definitions/DisplayAddFeatureArgs"
|
|
2278
|
+
}
|
|
2279
|
+
]
|
|
2280
|
+
},
|
|
2281
|
+
"edit.display-update-feature": {
|
|
2282
|
+
"description": "Display a form for updating a feature. `DisplayUpdateFeatureArgs` is not supported on Mobile.",
|
|
2283
|
+
"enum": [
|
|
2284
|
+
"edit.display-update-feature"
|
|
2285
|
+
]
|
|
2286
|
+
},
|
|
2287
|
+
"edit.display-update-feature:input": {
|
|
2288
|
+
"anyOf": [
|
|
2289
|
+
{
|
|
2290
|
+
"$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
|
|
2291
|
+
},
|
|
2292
|
+
{
|
|
2293
|
+
"$ref": "#/definitions/DisplayUpdateFeatureArgs"
|
|
2294
|
+
}
|
|
2295
|
+
]
|
|
2296
|
+
},
|
|
2297
|
+
"edit.update-feature": {
|
|
2298
|
+
"description": "Updates a feature. `Feature[]` and `EditCommandArgs` are not supported on Mobile.",
|
|
2299
|
+
"enum": [
|
|
2300
|
+
"edit.update-feature"
|
|
2301
|
+
]
|
|
2302
|
+
},
|
|
2303
|
+
"edit.update-feature:input": {
|
|
2304
|
+
"anyOf": [
|
|
2305
|
+
{
|
|
2306
|
+
"$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
|
|
2307
|
+
},
|
|
2308
|
+
{
|
|
2309
|
+
"$ref": "#/definitions/EditCommandArgs"
|
|
2310
|
+
},
|
|
2311
|
+
{
|
|
2312
|
+
"items": {
|
|
2313
|
+
"$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
|
|
2314
|
+
},
|
|
2315
|
+
"type": "array"
|
|
2316
|
+
}
|
|
2317
|
+
]
|
|
2318
|
+
},
|
|
1893
2319
|
"esri.Extent": {
|
|
1894
2320
|
"$ref": "esri/geometry/Extent"
|
|
1895
2321
|
},
|
|
@@ -11124,7 +11550,7 @@
|
|
|
11124
11550
|
]
|
|
11125
11551
|
},
|
|
11126
11552
|
"sketching.add-node-to-geometry": {
|
|
11127
|
-
"description": "
|
|
11553
|
+
"description": "Deprecated - Mobile users should rather use \"geometry.add-point\"; Web users should use \"sketching.add-point\" or \"sketching.insert-point\" instead.",
|
|
11128
11554
|
"enum": [
|
|
11129
11555
|
"sketching.add-node-to-geometry"
|
|
11130
11556
|
]
|
|
@@ -11135,6 +11561,15 @@
|
|
|
11135
11561
|
"sketching.add-node-to-geometry:output": {
|
|
11136
11562
|
"$ref": "#/definitions/esri.Geometry"
|
|
11137
11563
|
},
|
|
11564
|
+
"sketching.add-point": {
|
|
11565
|
+
"description": "Adds a point to polygon, polyline, or multipoint using the selected index as the point to insert after.",
|
|
11566
|
+
"enum": [
|
|
11567
|
+
"sketching.add-point"
|
|
11568
|
+
]
|
|
11569
|
+
},
|
|
11570
|
+
"sketching.add-point:input": {
|
|
11571
|
+
"$ref": "#/definitions/AddPointArgs"
|
|
11572
|
+
},
|
|
11138
11573
|
"sketching.capture-geometry": {
|
|
11139
11574
|
"description": "Allows the user to create geometry by sketching on a map. Returns the geometry that was drawn, along with the map that it was drawn on.",
|
|
11140
11575
|
"enum": [
|
|
@@ -11148,13 +11583,20 @@
|
|
|
11148
11583
|
"$ref": "#/definitions/CaptureGeometryResult"
|
|
11149
11584
|
},
|
|
11150
11585
|
"sketching.delete": {
|
|
11151
|
-
"description": "If a point is supplied while a sketching or editing operation is active, the vertex at that point will be deleted from the current geometry. If no point is supplied
|
|
11586
|
+
"description": "If a point is supplied while a sketching or editing operation is active, the vertex at that point will be deleted from the current geometry. If no point is supplied, any active points in the session will be deleted. If there are no active points in the session, the entire geometry will be deleted.",
|
|
11152
11587
|
"enum": [
|
|
11153
11588
|
"sketching.delete"
|
|
11154
11589
|
]
|
|
11155
11590
|
},
|
|
11156
11591
|
"sketching.delete:input": {
|
|
11157
|
-
"
|
|
11592
|
+
"anyOf": [
|
|
11593
|
+
{
|
|
11594
|
+
"$ref": "#/definitions/DeleteGeometryArgs"
|
|
11595
|
+
},
|
|
11596
|
+
{
|
|
11597
|
+
"type": "null"
|
|
11598
|
+
}
|
|
11599
|
+
]
|
|
11158
11600
|
},
|
|
11159
11601
|
"sketching.edit-geometry": {
|
|
11160
11602
|
"description": "Allows the user to edit an existing geometry by drawing on a map. Returns the geometry that was edited, or the supplied feature with the altered geometry applied, along with the map that it was drawn on.",
|
|
@@ -11168,6 +11610,15 @@
|
|
|
11168
11610
|
"sketching.edit-geometry:output": {
|
|
11169
11611
|
"$ref": "#/definitions/EditGeometryResult"
|
|
11170
11612
|
},
|
|
11613
|
+
"sketching.insert-point": {
|
|
11614
|
+
"description": "Inserts a point into a polygon, polyline, or multipoint at the specified index. If the partIndex is null, then the last part is used. If the pointIndex is null, then the new point is inserted at the end.",
|
|
11615
|
+
"enum": [
|
|
11616
|
+
"sketching.insert-point"
|
|
11617
|
+
]
|
|
11618
|
+
},
|
|
11619
|
+
"sketching.insert-point:input": {
|
|
11620
|
+
"$ref": "#/definitions/InsertPointArgs"
|
|
11621
|
+
},
|
|
11171
11622
|
"sketching.redo": {
|
|
11172
11623
|
"description": "Redoes the last undone edit while editing a geometry.",
|
|
11173
11624
|
"enum": [
|
|
@@ -11187,7 +11638,7 @@
|
|
|
11187
11638
|
"$ref": "#/definitions/SetGeometryModeArgs"
|
|
11188
11639
|
},
|
|
11189
11640
|
"sketching.stop": {
|
|
11190
|
-
"description": "Stops geometry capturing or editing on a given map. Returns the current geometry. If validateGeometry parameter is true and geometry is invalid,
|
|
11641
|
+
"description": "Stops geometry capturing or editing on a given map. Returns the current geometry. If validateGeometry parameter is true and geometry is invalid, the operation will return null.",
|
|
11191
11642
|
"enum": [
|
|
11192
11643
|
"sketching.stop"
|
|
11193
11644
|
]
|
|
@@ -11398,6 +11849,86 @@
|
|
|
11398
11849
|
],
|
|
11399
11850
|
"type": "object"
|
|
11400
11851
|
},
|
|
11852
|
+
{
|
|
11853
|
+
"additionalProperties": false,
|
|
11854
|
+
"properties": {
|
|
11855
|
+
"arguments": {
|
|
11856
|
+
"$ref": "#/definitions/edit.add-feature:input"
|
|
11857
|
+
},
|
|
11858
|
+
"name": {
|
|
11859
|
+
"$ref": "#/definitions/edit.add-feature"
|
|
11860
|
+
}
|
|
11861
|
+
},
|
|
11862
|
+
"required": [
|
|
11863
|
+
"name",
|
|
11864
|
+
"arguments"
|
|
11865
|
+
],
|
|
11866
|
+
"type": "object"
|
|
11867
|
+
},
|
|
11868
|
+
{
|
|
11869
|
+
"additionalProperties": false,
|
|
11870
|
+
"properties": {
|
|
11871
|
+
"arguments": {
|
|
11872
|
+
"$ref": "#/definitions/edit.delete-features:input"
|
|
11873
|
+
},
|
|
11874
|
+
"name": {
|
|
11875
|
+
"$ref": "#/definitions/edit.delete-features"
|
|
11876
|
+
}
|
|
11877
|
+
},
|
|
11878
|
+
"required": [
|
|
11879
|
+
"name",
|
|
11880
|
+
"arguments"
|
|
11881
|
+
],
|
|
11882
|
+
"type": "object"
|
|
11883
|
+
},
|
|
11884
|
+
{
|
|
11885
|
+
"additionalProperties": false,
|
|
11886
|
+
"properties": {
|
|
11887
|
+
"arguments": {
|
|
11888
|
+
"$ref": "#/definitions/edit.display-add-feature:input"
|
|
11889
|
+
},
|
|
11890
|
+
"name": {
|
|
11891
|
+
"$ref": "#/definitions/edit.display-add-feature"
|
|
11892
|
+
}
|
|
11893
|
+
},
|
|
11894
|
+
"required": [
|
|
11895
|
+
"name",
|
|
11896
|
+
"arguments"
|
|
11897
|
+
],
|
|
11898
|
+
"type": "object"
|
|
11899
|
+
},
|
|
11900
|
+
{
|
|
11901
|
+
"additionalProperties": false,
|
|
11902
|
+
"properties": {
|
|
11903
|
+
"arguments": {
|
|
11904
|
+
"$ref": "#/definitions/edit.display-update-feature:input"
|
|
11905
|
+
},
|
|
11906
|
+
"name": {
|
|
11907
|
+
"$ref": "#/definitions/edit.display-update-feature"
|
|
11908
|
+
}
|
|
11909
|
+
},
|
|
11910
|
+
"required": [
|
|
11911
|
+
"name",
|
|
11912
|
+
"arguments"
|
|
11913
|
+
],
|
|
11914
|
+
"type": "object"
|
|
11915
|
+
},
|
|
11916
|
+
{
|
|
11917
|
+
"additionalProperties": false,
|
|
11918
|
+
"properties": {
|
|
11919
|
+
"arguments": {
|
|
11920
|
+
"$ref": "#/definitions/edit.update-feature:input"
|
|
11921
|
+
},
|
|
11922
|
+
"name": {
|
|
11923
|
+
"$ref": "#/definitions/edit.update-feature"
|
|
11924
|
+
}
|
|
11925
|
+
},
|
|
11926
|
+
"required": [
|
|
11927
|
+
"name",
|
|
11928
|
+
"arguments"
|
|
11929
|
+
],
|
|
11930
|
+
"type": "object"
|
|
11931
|
+
},
|
|
11401
11932
|
{
|
|
11402
11933
|
"additionalProperties": false,
|
|
11403
11934
|
"properties": {
|
|
@@ -11830,6 +12361,22 @@
|
|
|
11830
12361
|
],
|
|
11831
12362
|
"type": "object"
|
|
11832
12363
|
},
|
|
12364
|
+
{
|
|
12365
|
+
"additionalProperties": false,
|
|
12366
|
+
"properties": {
|
|
12367
|
+
"arguments": {
|
|
12368
|
+
"$ref": "#/definitions/sketching.add-point:input"
|
|
12369
|
+
},
|
|
12370
|
+
"name": {
|
|
12371
|
+
"$ref": "#/definitions/sketching.add-point"
|
|
12372
|
+
}
|
|
12373
|
+
},
|
|
12374
|
+
"required": [
|
|
12375
|
+
"name",
|
|
12376
|
+
"arguments"
|
|
12377
|
+
],
|
|
12378
|
+
"type": "object"
|
|
12379
|
+
},
|
|
11833
12380
|
{
|
|
11834
12381
|
"additionalProperties": false,
|
|
11835
12382
|
"properties": {
|
|
@@ -11846,6 +12393,22 @@
|
|
|
11846
12393
|
],
|
|
11847
12394
|
"type": "object"
|
|
11848
12395
|
},
|
|
12396
|
+
{
|
|
12397
|
+
"additionalProperties": false,
|
|
12398
|
+
"properties": {
|
|
12399
|
+
"arguments": {
|
|
12400
|
+
"$ref": "#/definitions/sketching.insert-point:input"
|
|
12401
|
+
},
|
|
12402
|
+
"name": {
|
|
12403
|
+
"$ref": "#/definitions/sketching.insert-point"
|
|
12404
|
+
}
|
|
12405
|
+
},
|
|
12406
|
+
"required": [
|
|
12407
|
+
"name",
|
|
12408
|
+
"arguments"
|
|
12409
|
+
],
|
|
12410
|
+
"type": "object"
|
|
12411
|
+
},
|
|
11849
12412
|
{
|
|
11850
12413
|
"additionalProperties": false,
|
|
11851
12414
|
"properties": {
|
|
@@ -12002,6 +12565,21 @@
|
|
|
12002
12565
|
{
|
|
12003
12566
|
"$ref": "#/definitions/drawing.set-sync"
|
|
12004
12567
|
},
|
|
12568
|
+
{
|
|
12569
|
+
"$ref": "#/definitions/edit.add-feature"
|
|
12570
|
+
},
|
|
12571
|
+
{
|
|
12572
|
+
"$ref": "#/definitions/edit.delete-features"
|
|
12573
|
+
},
|
|
12574
|
+
{
|
|
12575
|
+
"$ref": "#/definitions/edit.display-add-feature"
|
|
12576
|
+
},
|
|
12577
|
+
{
|
|
12578
|
+
"$ref": "#/definitions/edit.display-update-feature"
|
|
12579
|
+
},
|
|
12580
|
+
{
|
|
12581
|
+
"$ref": "#/definitions/edit.update-feature"
|
|
12582
|
+
},
|
|
12005
12583
|
{
|
|
12006
12584
|
"$ref": "#/definitions/geocode.count"
|
|
12007
12585
|
},
|
|
@@ -12092,9 +12670,15 @@
|
|
|
12092
12670
|
{
|
|
12093
12671
|
"$ref": "#/definitions/search.clear"
|
|
12094
12672
|
},
|
|
12673
|
+
{
|
|
12674
|
+
"$ref": "#/definitions/sketching.add-point"
|
|
12675
|
+
},
|
|
12095
12676
|
{
|
|
12096
12677
|
"$ref": "#/definitions/sketching.delete"
|
|
12097
12678
|
},
|
|
12679
|
+
{
|
|
12680
|
+
"$ref": "#/definitions/sketching.insert-point"
|
|
12681
|
+
},
|
|
12098
12682
|
{
|
|
12099
12683
|
"$ref": "#/definitions/sketching.redo"
|
|
12100
12684
|
},
|