@vertigis/viewer-spec 45.2.0 → 46.2.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/sketching.d.ts +227 -55
- package/messaging/registry/sketching.js +1 -1
- package/messaging/registry/system.d.ts +30 -9
- package/messaging/registry/ui.d.ts +5 -4
- package/messaging/schema/common-action.schema.json +584 -11
- package/messaging/schema/common-event.schema.json +36 -0
- package/messaging/schema/mobile-action.schema.json +385 -22
- package/messaging/schema/web-action.schema.json +881 -43
- 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",
|
|
@@ -497,6 +520,10 @@
|
|
|
497
520
|
"additionalProperties": false,
|
|
498
521
|
"description": "Arguments for the \"sketching.add-point\" command.",
|
|
499
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
|
+
},
|
|
500
527
|
"maps": {
|
|
501
528
|
"$ref": "MapsLike",
|
|
502
529
|
"description": "Map(s) to use for the command/operation."
|
|
@@ -682,12 +709,93 @@
|
|
|
682
709
|
"description": "Arguments for the \"sketching.delete\" command.",
|
|
683
710
|
"properties": {
|
|
684
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": {
|
|
685
724
|
"$ref": "#/definitions/esri.Point",
|
|
686
|
-
"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."
|
|
687
771
|
},
|
|
688
772
|
"maps": {
|
|
689
773
|
"$ref": "MapsLike",
|
|
690
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"
|
|
691
799
|
}
|
|
692
800
|
},
|
|
693
801
|
"type": "object"
|
|
@@ -705,8 +813,8 @@
|
|
|
705
813
|
"type": "boolean"
|
|
706
814
|
},
|
|
707
815
|
"message": {
|
|
708
|
-
"
|
|
709
|
-
"
|
|
816
|
+
"$ref": "#/definitions/TranslatableText",
|
|
817
|
+
"description": "The message to be displayed in the notification. Mobile only supports a string for this property."
|
|
710
818
|
},
|
|
711
819
|
"notificationGroup": {
|
|
712
820
|
"description": "Notifications in the same notification group are mutually exclusive, and will supersede one another. Mobile only.",
|
|
@@ -714,7 +822,7 @@
|
|
|
714
822
|
},
|
|
715
823
|
"position": {
|
|
716
824
|
"$ref": "Position",
|
|
717
|
-
"description": "The position of the notification on the screen."
|
|
825
|
+
"description": "The position of the notification on the screen. Web only."
|
|
718
826
|
},
|
|
719
827
|
"title": {
|
|
720
828
|
"description": "The notification title - only shown for system notifications. Mobile only.",
|
|
@@ -730,6 +838,63 @@
|
|
|
730
838
|
],
|
|
731
839
|
"type": "object"
|
|
732
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
|
+
},
|
|
733
898
|
"EditGeometryArgs": {
|
|
734
899
|
"additionalProperties": false,
|
|
735
900
|
"description": "Arguments for the \"sketching.edit-geometry\" operation.",
|
|
@@ -815,6 +980,10 @@
|
|
|
815
980
|
"description": "Whether to allow scaling of the edited geometry. Defaults to true.",
|
|
816
981
|
"type": "boolean"
|
|
817
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
|
+
},
|
|
818
987
|
"scaleMode": {
|
|
819
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\".",
|
|
820
989
|
"enum": [
|
|
@@ -822,6 +991,10 @@
|
|
|
822
991
|
"preserve-aspect-ratio"
|
|
823
992
|
],
|
|
824
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"
|
|
825
998
|
}
|
|
826
999
|
},
|
|
827
1000
|
"type": "object"
|
|
@@ -1246,6 +1419,10 @@
|
|
|
1246
1419
|
"additionalProperties": false,
|
|
1247
1420
|
"description": "Arguments for the \"sketching.insert-point\" command.",
|
|
1248
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
|
+
},
|
|
1249
1426
|
"maps": {
|
|
1250
1427
|
"$ref": "MapsLike",
|
|
1251
1428
|
"description": "Map(s) to use for the command/operation."
|
|
@@ -1273,6 +1450,54 @@
|
|
|
1273
1450
|
"description": "A set of parameters used to run a job.",
|
|
1274
1451
|
"type": "object"
|
|
1275
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
|
+
},
|
|
1276
1501
|
"MapRotateArgs": {
|
|
1277
1502
|
"additionalProperties": false,
|
|
1278
1503
|
"description": "Arguments for the \"map.rotate-by\" and \"map.rotate-to\" commands.",
|
|
@@ -1354,6 +1579,27 @@
|
|
|
1354
1579
|
],
|
|
1355
1580
|
"type": "string"
|
|
1356
1581
|
},
|
|
1582
|
+
"OpenUrlArgs": {
|
|
1583
|
+
"additionalProperties": false,
|
|
1584
|
+
"description": "Arguments for the system.open-url command.",
|
|
1585
|
+
"properties": {
|
|
1586
|
+
"context": {
|
|
1587
|
+
"description": "An object containing arguments that this command was originally executed with. This property is populated automatically when using a bound action. The URL will be the configured value, and the context is automatically populated as the argument that was passed into the execute method when the command was executed in context."
|
|
1588
|
+
},
|
|
1589
|
+
"numberFormatterLocale": {
|
|
1590
|
+
"description": "The locale to use for number token substitution. Accepts a valid locale code (example: \"en\", \"fr\" or \"de-AT\"), or \"device\" or \"invariant\" which will use the device's current culture or the invariant culture, respectively. Default is invariant culture.",
|
|
1591
|
+
"type": "string"
|
|
1592
|
+
},
|
|
1593
|
+
"url": {
|
|
1594
|
+
"description": "The URL to open.",
|
|
1595
|
+
"type": "string"
|
|
1596
|
+
}
|
|
1597
|
+
},
|
|
1598
|
+
"required": [
|
|
1599
|
+
"url"
|
|
1600
|
+
],
|
|
1601
|
+
"type": "object"
|
|
1602
|
+
},
|
|
1357
1603
|
"Results": {
|
|
1358
1604
|
"additionalProperties": false,
|
|
1359
1605
|
"description": "Feature results from an operation.",
|
|
@@ -1808,6 +2054,61 @@
|
|
|
1808
2054
|
},
|
|
1809
2055
|
"type": "object"
|
|
1810
2056
|
},
|
|
2057
|
+
"TranslatableText": {
|
|
2058
|
+
"anyOf": [
|
|
2059
|
+
{
|
|
2060
|
+
"$ref": "#/definitions/TranslateOptions"
|
|
2061
|
+
},
|
|
2062
|
+
{
|
|
2063
|
+
"type": "string"
|
|
2064
|
+
}
|
|
2065
|
+
],
|
|
2066
|
+
"description": "A translatable string, either a language string or a language string with arguments to pass into it."
|
|
2067
|
+
},
|
|
2068
|
+
"TranslateOptions": {
|
|
2069
|
+
"additionalProperties": false,
|
|
2070
|
+
"description": "The available options for the Locale Service translate function.",
|
|
2071
|
+
"properties": {
|
|
2072
|
+
"args": {
|
|
2073
|
+
"description": "The values to substitute into the format string if it contains substitution placeholders (see utilities/string/format in Geocortex API).",
|
|
2074
|
+
"items": {
|
|
2075
|
+
},
|
|
2076
|
+
"type": "array"
|
|
2077
|
+
},
|
|
2078
|
+
"currency": {
|
|
2079
|
+
"description": "The default unit of currency to use when formatting currency. See {@link NumberSettings.currency}.",
|
|
2080
|
+
"type": "string"
|
|
2081
|
+
},
|
|
2082
|
+
"dateFormat": {
|
|
2083
|
+
"description": "The default format to use when formatting dates. See {@link DateFormatter.format}.",
|
|
2084
|
+
"type": "string"
|
|
2085
|
+
},
|
|
2086
|
+
"fractionalDigits": {
|
|
2087
|
+
"description": "The default number of digits to show after the decimal point when formatting numbers. See {@link NumberSettings.fractionalDigits}.",
|
|
2088
|
+
"type": "number"
|
|
2089
|
+
},
|
|
2090
|
+
"locale": {
|
|
2091
|
+
"description": "The locale to use for translation. If not specified, the current locale will be used.",
|
|
2092
|
+
"type": "string"
|
|
2093
|
+
},
|
|
2094
|
+
"numberFormat": {
|
|
2095
|
+
"description": "The default format to use when formatting numbers. See {@link NumberFormatter.format}.",
|
|
2096
|
+
"type": "string"
|
|
2097
|
+
},
|
|
2098
|
+
"text": {
|
|
2099
|
+
"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.",
|
|
2100
|
+
"type": "string"
|
|
2101
|
+
},
|
|
2102
|
+
"timeZone": {
|
|
2103
|
+
"description": "The time zone of a date being formatted.",
|
|
2104
|
+
"type": "string"
|
|
2105
|
+
}
|
|
2106
|
+
},
|
|
2107
|
+
"required": [
|
|
2108
|
+
"text"
|
|
2109
|
+
],
|
|
2110
|
+
"type": "object"
|
|
2111
|
+
},
|
|
1811
2112
|
"UpdateResultsFeaturesArgs": {
|
|
1812
2113
|
"additionalProperties": false,
|
|
1813
2114
|
"description": "Arguments for various commands that affect a result component's features.",
|
|
@@ -1826,6 +2127,40 @@
|
|
|
1826
2127
|
],
|
|
1827
2128
|
"type": "object"
|
|
1828
2129
|
},
|
|
2130
|
+
"WebOpenUrlArgs": {
|
|
2131
|
+
"additionalProperties": false,
|
|
2132
|
+
"description": "VertiGIS Studio Web's arguments for the system.open-url command.",
|
|
2133
|
+
"properties": {
|
|
2134
|
+
"features": {
|
|
2135
|
+
"$ref": "#/definitions/FeaturesLike",
|
|
2136
|
+
"description": "Features to use for the command/operation."
|
|
2137
|
+
},
|
|
2138
|
+
"geometry": {
|
|
2139
|
+
"$ref": "#/definitions/GeometryLike",
|
|
2140
|
+
"description": "The geometry to use for the command/operation."
|
|
2141
|
+
},
|
|
2142
|
+
"layers": {
|
|
2143
|
+
"$ref": "#/definitions/LayersLike",
|
|
2144
|
+
"description": "Layer(s) to use for the command/operation."
|
|
2145
|
+
},
|
|
2146
|
+
"maps": {
|
|
2147
|
+
"$ref": "MapsLike",
|
|
2148
|
+
"description": "Map(s) to use for the command/operation."
|
|
2149
|
+
},
|
|
2150
|
+
"numberFormatterLocale": {
|
|
2151
|
+
"description": "The locale to use for number token substitution. Accepts a valid locale code (example: \"en\", \"fr\" or \"de-AT\"), or \"device\" or \"invariant\" which will use the device's current culture or the invariant culture, respectively. Default is invariant culture.",
|
|
2152
|
+
"type": "string"
|
|
2153
|
+
},
|
|
2154
|
+
"url": {
|
|
2155
|
+
"description": "The URL to open.",
|
|
2156
|
+
"type": "string"
|
|
2157
|
+
}
|
|
2158
|
+
},
|
|
2159
|
+
"required": [
|
|
2160
|
+
"url"
|
|
2161
|
+
],
|
|
2162
|
+
"type": "object"
|
|
2163
|
+
},
|
|
1829
2164
|
"ZoomToViewpointArgs": {
|
|
1830
2165
|
"additionalProperties": false,
|
|
1831
2166
|
"description": "Arguments for the map.zoom-to-viewpoint command.",
|
|
@@ -1938,6 +2273,104 @@
|
|
|
1938
2273
|
"drawing.set-sync:input": {
|
|
1939
2274
|
"type": "boolean"
|
|
1940
2275
|
},
|
|
2276
|
+
"edit.add-feature": {
|
|
2277
|
+
"description": "Adds a feature to a particular layer. `Feature[]` and `EditCommandArgs` are not supported on Mobile.",
|
|
2278
|
+
"enum": [
|
|
2279
|
+
"edit.add-feature"
|
|
2280
|
+
]
|
|
2281
|
+
},
|
|
2282
|
+
"edit.add-feature:input": {
|
|
2283
|
+
"anyOf": [
|
|
2284
|
+
{
|
|
2285
|
+
"$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
|
|
2286
|
+
},
|
|
2287
|
+
{
|
|
2288
|
+
"$ref": "#/definitions/EditCommandArgs"
|
|
2289
|
+
},
|
|
2290
|
+
{
|
|
2291
|
+
"items": {
|
|
2292
|
+
"$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
|
|
2293
|
+
},
|
|
2294
|
+
"type": "array"
|
|
2295
|
+
}
|
|
2296
|
+
]
|
|
2297
|
+
},
|
|
2298
|
+
"edit.delete-features": {
|
|
2299
|
+
"description": "Deletes the given feature or features from their feature sources. `EditCommandArgs` is not supported on Mobile.",
|
|
2300
|
+
"enum": [
|
|
2301
|
+
"edit.delete-features"
|
|
2302
|
+
]
|
|
2303
|
+
},
|
|
2304
|
+
"edit.delete-features:input": {
|
|
2305
|
+
"anyOf": [
|
|
2306
|
+
{
|
|
2307
|
+
"$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
|
|
2308
|
+
},
|
|
2309
|
+
{
|
|
2310
|
+
"$ref": "#/definitions/EditCommandArgs"
|
|
2311
|
+
},
|
|
2312
|
+
{
|
|
2313
|
+
"items": {
|
|
2314
|
+
"$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
|
|
2315
|
+
},
|
|
2316
|
+
"type": "array"
|
|
2317
|
+
}
|
|
2318
|
+
]
|
|
2319
|
+
},
|
|
2320
|
+
"edit.display-add-feature": {
|
|
2321
|
+
"description": "Display a form for adding a feature. `DisplayAddFeatureArgs` is not supported on Mobile.",
|
|
2322
|
+
"enum": [
|
|
2323
|
+
"edit.display-add-feature"
|
|
2324
|
+
]
|
|
2325
|
+
},
|
|
2326
|
+
"edit.display-add-feature:input": {
|
|
2327
|
+
"anyOf": [
|
|
2328
|
+
{
|
|
2329
|
+
"$ref": "@vertigis.arcgis-extensions.data.FeatureSource.FeatureSource"
|
|
2330
|
+
},
|
|
2331
|
+
{
|
|
2332
|
+
"$ref": "#/definitions/DisplayAddFeatureArgs"
|
|
2333
|
+
}
|
|
2334
|
+
]
|
|
2335
|
+
},
|
|
2336
|
+
"edit.display-update-feature": {
|
|
2337
|
+
"description": "Display a form for updating a feature. `DisplayUpdateFeatureArgs` is not supported on Mobile.",
|
|
2338
|
+
"enum": [
|
|
2339
|
+
"edit.display-update-feature"
|
|
2340
|
+
]
|
|
2341
|
+
},
|
|
2342
|
+
"edit.display-update-feature:input": {
|
|
2343
|
+
"anyOf": [
|
|
2344
|
+
{
|
|
2345
|
+
"$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
|
|
2346
|
+
},
|
|
2347
|
+
{
|
|
2348
|
+
"$ref": "#/definitions/DisplayUpdateFeatureArgs"
|
|
2349
|
+
}
|
|
2350
|
+
]
|
|
2351
|
+
},
|
|
2352
|
+
"edit.update-feature": {
|
|
2353
|
+
"description": "Updates a feature. `Feature[]` and `EditCommandArgs` are not supported on Mobile.",
|
|
2354
|
+
"enum": [
|
|
2355
|
+
"edit.update-feature"
|
|
2356
|
+
]
|
|
2357
|
+
},
|
|
2358
|
+
"edit.update-feature:input": {
|
|
2359
|
+
"anyOf": [
|
|
2360
|
+
{
|
|
2361
|
+
"$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
|
|
2362
|
+
},
|
|
2363
|
+
{
|
|
2364
|
+
"$ref": "#/definitions/EditCommandArgs"
|
|
2365
|
+
},
|
|
2366
|
+
{
|
|
2367
|
+
"items": {
|
|
2368
|
+
"$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
|
|
2369
|
+
},
|
|
2370
|
+
"type": "array"
|
|
2371
|
+
}
|
|
2372
|
+
]
|
|
2373
|
+
},
|
|
1941
2374
|
"esri.Extent": {
|
|
1942
2375
|
"$ref": "esri/geometry/Extent"
|
|
1943
2376
|
},
|
|
@@ -11172,7 +11605,7 @@
|
|
|
11172
11605
|
]
|
|
11173
11606
|
},
|
|
11174
11607
|
"sketching.add-node-to-geometry": {
|
|
11175
|
-
"description": "
|
|
11608
|
+
"description": "Deprecated - Mobile users should rather use \"geometry.add-point\"; Web users should use \"sketching.add-point\" or \"sketching.insert-point\" instead.",
|
|
11176
11609
|
"enum": [
|
|
11177
11610
|
"sketching.add-node-to-geometry"
|
|
11178
11611
|
]
|
|
@@ -11184,7 +11617,7 @@
|
|
|
11184
11617
|
"$ref": "#/definitions/esri.Geometry"
|
|
11185
11618
|
},
|
|
11186
11619
|
"sketching.add-point": {
|
|
11187
|
-
"description": "Adds a point to polygon or
|
|
11620
|
+
"description": "Adds a point to polygon, polyline, or multipoint using the selected index as the point to insert after.",
|
|
11188
11621
|
"enum": [
|
|
11189
11622
|
"sketching.add-point"
|
|
11190
11623
|
]
|
|
@@ -11205,13 +11638,20 @@
|
|
|
11205
11638
|
"$ref": "#/definitions/CaptureGeometryResult"
|
|
11206
11639
|
},
|
|
11207
11640
|
"sketching.delete": {
|
|
11208
|
-
"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
|
|
11641
|
+
"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.",
|
|
11209
11642
|
"enum": [
|
|
11210
11643
|
"sketching.delete"
|
|
11211
11644
|
]
|
|
11212
11645
|
},
|
|
11213
11646
|
"sketching.delete:input": {
|
|
11214
|
-
"
|
|
11647
|
+
"anyOf": [
|
|
11648
|
+
{
|
|
11649
|
+
"$ref": "#/definitions/DeleteGeometryArgs"
|
|
11650
|
+
},
|
|
11651
|
+
{
|
|
11652
|
+
"type": "null"
|
|
11653
|
+
}
|
|
11654
|
+
]
|
|
11215
11655
|
},
|
|
11216
11656
|
"sketching.edit-geometry": {
|
|
11217
11657
|
"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.",
|
|
@@ -11226,7 +11666,7 @@
|
|
|
11226
11666
|
"$ref": "#/definitions/EditGeometryResult"
|
|
11227
11667
|
},
|
|
11228
11668
|
"sketching.insert-point": {
|
|
11229
|
-
"description": "Inserts a point into a polygon or
|
|
11669
|
+
"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.",
|
|
11230
11670
|
"enum": [
|
|
11231
11671
|
"sketching.insert-point"
|
|
11232
11672
|
]
|
|
@@ -11253,7 +11693,7 @@
|
|
|
11253
11693
|
"$ref": "#/definitions/SetGeometryModeArgs"
|
|
11254
11694
|
},
|
|
11255
11695
|
"sketching.stop": {
|
|
11256
|
-
"description": "Stops geometry capturing or editing on a given map. Returns the current geometry. If validateGeometry parameter is true and geometry is invalid,
|
|
11696
|
+
"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.",
|
|
11257
11697
|
"enum": [
|
|
11258
11698
|
"sketching.stop"
|
|
11259
11699
|
]
|
|
@@ -11280,6 +11720,25 @@
|
|
|
11280
11720
|
"sketching.undo:input": {
|
|
11281
11721
|
"$ref": "#/definitions/HasMaps"
|
|
11282
11722
|
},
|
|
11723
|
+
"system.open-url": {
|
|
11724
|
+
"description": "Opens a URL, either in the system browser or whatever app is appropriate for the scheme of the URL. If {@link Features} are included as context, then the URL may contain substitution tokens in the format {FIELD_NAME} where FIELD_NAME is the name of a field in the first feature in the context. In this case, the {FIELD_NAME} is substituted with value of the FIELD_NAME field from the feature feature in the {@link Features}, e.g. https://www.google.com/search?q={NAME}, where the value of the NAME field in the first feature from the context is 'Jasper National Park' would produce the result https://www.google.com/search?q=Jasper National Park. Zero to many substitution tokens may be included. If maps are included as context, {@link LocationToken} can be used to access properties on the first map's view. In Web, if both layers and maps are included as context, then {@link LayerToken} can be used to access properties on the first layer.",
|
|
11725
|
+
"enum": [
|
|
11726
|
+
"system.open-url"
|
|
11727
|
+
]
|
|
11728
|
+
},
|
|
11729
|
+
"system.open-url:input": {
|
|
11730
|
+
"anyOf": [
|
|
11731
|
+
{
|
|
11732
|
+
"$ref": "#/definitions/WebOpenUrlArgs"
|
|
11733
|
+
},
|
|
11734
|
+
{
|
|
11735
|
+
"$ref": "#/definitions/OpenUrlArgs"
|
|
11736
|
+
},
|
|
11737
|
+
{
|
|
11738
|
+
"type": "string"
|
|
11739
|
+
}
|
|
11740
|
+
]
|
|
11741
|
+
},
|
|
11283
11742
|
"tasks.identify": {
|
|
11284
11743
|
"description": "Returns features that intersect a given geometry.",
|
|
11285
11744
|
"enum": [
|
|
@@ -11464,6 +11923,86 @@
|
|
|
11464
11923
|
],
|
|
11465
11924
|
"type": "object"
|
|
11466
11925
|
},
|
|
11926
|
+
{
|
|
11927
|
+
"additionalProperties": false,
|
|
11928
|
+
"properties": {
|
|
11929
|
+
"arguments": {
|
|
11930
|
+
"$ref": "#/definitions/edit.add-feature:input"
|
|
11931
|
+
},
|
|
11932
|
+
"name": {
|
|
11933
|
+
"$ref": "#/definitions/edit.add-feature"
|
|
11934
|
+
}
|
|
11935
|
+
},
|
|
11936
|
+
"required": [
|
|
11937
|
+
"name",
|
|
11938
|
+
"arguments"
|
|
11939
|
+
],
|
|
11940
|
+
"type": "object"
|
|
11941
|
+
},
|
|
11942
|
+
{
|
|
11943
|
+
"additionalProperties": false,
|
|
11944
|
+
"properties": {
|
|
11945
|
+
"arguments": {
|
|
11946
|
+
"$ref": "#/definitions/edit.delete-features:input"
|
|
11947
|
+
},
|
|
11948
|
+
"name": {
|
|
11949
|
+
"$ref": "#/definitions/edit.delete-features"
|
|
11950
|
+
}
|
|
11951
|
+
},
|
|
11952
|
+
"required": [
|
|
11953
|
+
"name",
|
|
11954
|
+
"arguments"
|
|
11955
|
+
],
|
|
11956
|
+
"type": "object"
|
|
11957
|
+
},
|
|
11958
|
+
{
|
|
11959
|
+
"additionalProperties": false,
|
|
11960
|
+
"properties": {
|
|
11961
|
+
"arguments": {
|
|
11962
|
+
"$ref": "#/definitions/edit.display-add-feature:input"
|
|
11963
|
+
},
|
|
11964
|
+
"name": {
|
|
11965
|
+
"$ref": "#/definitions/edit.display-add-feature"
|
|
11966
|
+
}
|
|
11967
|
+
},
|
|
11968
|
+
"required": [
|
|
11969
|
+
"name",
|
|
11970
|
+
"arguments"
|
|
11971
|
+
],
|
|
11972
|
+
"type": "object"
|
|
11973
|
+
},
|
|
11974
|
+
{
|
|
11975
|
+
"additionalProperties": false,
|
|
11976
|
+
"properties": {
|
|
11977
|
+
"arguments": {
|
|
11978
|
+
"$ref": "#/definitions/edit.display-update-feature:input"
|
|
11979
|
+
},
|
|
11980
|
+
"name": {
|
|
11981
|
+
"$ref": "#/definitions/edit.display-update-feature"
|
|
11982
|
+
}
|
|
11983
|
+
},
|
|
11984
|
+
"required": [
|
|
11985
|
+
"name",
|
|
11986
|
+
"arguments"
|
|
11987
|
+
],
|
|
11988
|
+
"type": "object"
|
|
11989
|
+
},
|
|
11990
|
+
{
|
|
11991
|
+
"additionalProperties": false,
|
|
11992
|
+
"properties": {
|
|
11993
|
+
"arguments": {
|
|
11994
|
+
"$ref": "#/definitions/edit.update-feature:input"
|
|
11995
|
+
},
|
|
11996
|
+
"name": {
|
|
11997
|
+
"$ref": "#/definitions/edit.update-feature"
|
|
11998
|
+
}
|
|
11999
|
+
},
|
|
12000
|
+
"required": [
|
|
12001
|
+
"name",
|
|
12002
|
+
"arguments"
|
|
12003
|
+
],
|
|
12004
|
+
"type": "object"
|
|
12005
|
+
},
|
|
11467
12006
|
{
|
|
11468
12007
|
"additionalProperties": false,
|
|
11469
12008
|
"properties": {
|
|
@@ -11992,6 +12531,22 @@
|
|
|
11992
12531
|
],
|
|
11993
12532
|
"type": "object"
|
|
11994
12533
|
},
|
|
12534
|
+
{
|
|
12535
|
+
"additionalProperties": false,
|
|
12536
|
+
"properties": {
|
|
12537
|
+
"arguments": {
|
|
12538
|
+
"$ref": "#/definitions/system.open-url:input"
|
|
12539
|
+
},
|
|
12540
|
+
"name": {
|
|
12541
|
+
"$ref": "#/definitions/system.open-url"
|
|
12542
|
+
}
|
|
12543
|
+
},
|
|
12544
|
+
"required": [
|
|
12545
|
+
"name",
|
|
12546
|
+
"arguments"
|
|
12547
|
+
],
|
|
12548
|
+
"type": "object"
|
|
12549
|
+
},
|
|
11995
12550
|
{
|
|
11996
12551
|
"additionalProperties": false,
|
|
11997
12552
|
"properties": {
|
|
@@ -12100,6 +12655,21 @@
|
|
|
12100
12655
|
{
|
|
12101
12656
|
"$ref": "#/definitions/drawing.set-sync"
|
|
12102
12657
|
},
|
|
12658
|
+
{
|
|
12659
|
+
"$ref": "#/definitions/edit.add-feature"
|
|
12660
|
+
},
|
|
12661
|
+
{
|
|
12662
|
+
"$ref": "#/definitions/edit.delete-features"
|
|
12663
|
+
},
|
|
12664
|
+
{
|
|
12665
|
+
"$ref": "#/definitions/edit.display-add-feature"
|
|
12666
|
+
},
|
|
12667
|
+
{
|
|
12668
|
+
"$ref": "#/definitions/edit.display-update-feature"
|
|
12669
|
+
},
|
|
12670
|
+
{
|
|
12671
|
+
"$ref": "#/definitions/edit.update-feature"
|
|
12672
|
+
},
|
|
12103
12673
|
{
|
|
12104
12674
|
"$ref": "#/definitions/geocode.count"
|
|
12105
12675
|
},
|
|
@@ -12208,6 +12778,9 @@
|
|
|
12208
12778
|
{
|
|
12209
12779
|
"$ref": "#/definitions/sketching.undo"
|
|
12210
12780
|
},
|
|
12781
|
+
{
|
|
12782
|
+
"$ref": "#/definitions/system.open-url"
|
|
12783
|
+
},
|
|
12211
12784
|
{
|
|
12212
12785
|
"$ref": "#/definitions/ui.activate"
|
|
12213
12786
|
},
|