@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
|
@@ -740,7 +740,7 @@
|
|
|
740
740
|
},
|
|
741
741
|
"AddNodeToGeometryArgs": {
|
|
742
742
|
"additionalProperties": false,
|
|
743
|
-
"description": "
|
|
743
|
+
"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.",
|
|
744
744
|
"properties": {
|
|
745
745
|
"geometry": {
|
|
746
746
|
"$ref": "#/definitions/esri.Geometry",
|
|
@@ -774,6 +774,10 @@
|
|
|
774
774
|
"additionalProperties": false,
|
|
775
775
|
"description": "Arguments for the \"sketching.add-point\" command.",
|
|
776
776
|
"properties": {
|
|
777
|
+
"geometry": {
|
|
778
|
+
"$ref": "#/definitions/esri.Geometry",
|
|
779
|
+
"description": "The geometry to add the point to, if multiple are present in an active editing session. Not supported by Mobile."
|
|
780
|
+
},
|
|
777
781
|
"maps": {
|
|
778
782
|
"$ref": "MapsLike",
|
|
779
783
|
"description": "Map(s) to use for the command/operation."
|
|
@@ -1150,6 +1154,48 @@
|
|
|
1150
1154
|
],
|
|
1151
1155
|
"type": "object"
|
|
1152
1156
|
},
|
|
1157
|
+
"CreateFeatureArgs": {
|
|
1158
|
+
"additionalProperties": false,
|
|
1159
|
+
"description": "Arguments for the \"edit.create-feature\" operation. Also may be supplied to augment an interactive editing session. A valid feature layer is required. The geometry is required for non-tabular features. Web only.",
|
|
1160
|
+
"properties": {
|
|
1161
|
+
"featureAttributes": {
|
|
1162
|
+
"description": "A collection of attributes to apply to the new feature."
|
|
1163
|
+
},
|
|
1164
|
+
"geometry": {
|
|
1165
|
+
"$ref": "#/definitions/GeometryLike",
|
|
1166
|
+
"description": "The geometry to use for the command/operation."
|
|
1167
|
+
},
|
|
1168
|
+
"layers": {
|
|
1169
|
+
"$ref": "#/definitions/LayersLike",
|
|
1170
|
+
"description": "Layer(s) to use for the command/operation."
|
|
1171
|
+
},
|
|
1172
|
+
"maps": {
|
|
1173
|
+
"$ref": "MapsLike",
|
|
1174
|
+
"description": "Map(s) to use for the command/operation."
|
|
1175
|
+
},
|
|
1176
|
+
"orientation": {
|
|
1177
|
+
"description": "The orientation of the template picker.",
|
|
1178
|
+
"enum": [
|
|
1179
|
+
"horizontal",
|
|
1180
|
+
"vertical"
|
|
1181
|
+
],
|
|
1182
|
+
"type": "string"
|
|
1183
|
+
},
|
|
1184
|
+
"showNotifications": {
|
|
1185
|
+
"description": "Whether to show UI notifications.",
|
|
1186
|
+
"type": "boolean"
|
|
1187
|
+
},
|
|
1188
|
+
"showTitles": {
|
|
1189
|
+
"description": "Whether to show titles on the template picker.",
|
|
1190
|
+
"type": "boolean"
|
|
1191
|
+
},
|
|
1192
|
+
"templateName": {
|
|
1193
|
+
"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.",
|
|
1194
|
+
"type": "string"
|
|
1195
|
+
}
|
|
1196
|
+
},
|
|
1197
|
+
"type": "object"
|
|
1198
|
+
},
|
|
1153
1199
|
"CreateGraphicsResult": {
|
|
1154
1200
|
"additionalProperties": false,
|
|
1155
1201
|
"description": "Result of the \"drawing.create-graphics\" and \"measurement.create-graphics\" operations.",
|
|
@@ -1325,12 +1371,93 @@
|
|
|
1325
1371
|
"description": "Arguments for the \"sketching.delete\" command.",
|
|
1326
1372
|
"properties": {
|
|
1327
1373
|
"geometry": {
|
|
1374
|
+
"$ref": "#/definitions/esri.Geometry",
|
|
1375
|
+
"description": "The geometry to remove a point from. If this property is not specified, any active vertices will be deleted."
|
|
1376
|
+
},
|
|
1377
|
+
"maps": {
|
|
1378
|
+
"$ref": "MapsLike",
|
|
1379
|
+
"description": "Map(s) to use for the command/operation."
|
|
1380
|
+
},
|
|
1381
|
+
"partIndex": {
|
|
1382
|
+
"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.",
|
|
1383
|
+
"type": "number"
|
|
1384
|
+
},
|
|
1385
|
+
"point": {
|
|
1328
1386
|
"$ref": "#/definitions/esri.Point",
|
|
1329
|
-
"description": "The point to
|
|
1387
|
+
"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."
|
|
1388
|
+
},
|
|
1389
|
+
"pointIndex": {
|
|
1390
|
+
"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.",
|
|
1391
|
+
"type": "number"
|
|
1392
|
+
}
|
|
1393
|
+
},
|
|
1394
|
+
"type": "object"
|
|
1395
|
+
},
|
|
1396
|
+
"DisplayAddFeatureArgs": {
|
|
1397
|
+
"additionalProperties": false,
|
|
1398
|
+
"description": "Arguments for the \"edit.display-add-features\" command. Web only.",
|
|
1399
|
+
"properties": {
|
|
1400
|
+
"attributes": {
|
|
1401
|
+
"description": "Optional layout XML attributes to be used for the transient UI container."
|
|
1402
|
+
},
|
|
1403
|
+
"editAttachments": {
|
|
1404
|
+
"description": "Whether to allow editing of feature attachments.",
|
|
1405
|
+
"type": "boolean"
|
|
1406
|
+
},
|
|
1407
|
+
"editAttributes": {
|
|
1408
|
+
"description": "Whether to allow editing of feature attributes.",
|
|
1409
|
+
"type": "boolean"
|
|
1410
|
+
},
|
|
1411
|
+
"editGeometry": {
|
|
1412
|
+
"description": "Whether to allow editing of feature geometry.",
|
|
1413
|
+
"type": "boolean"
|
|
1414
|
+
},
|
|
1415
|
+
"editGeometryOptions": {
|
|
1416
|
+
"$ref": "#/definitions/EditGeometryOptions",
|
|
1417
|
+
"description": "Options for the geometry editing session."
|
|
1418
|
+
},
|
|
1419
|
+
"featureAttributes": {
|
|
1420
|
+
"description": "A collection of attributes to apply to the new feature."
|
|
1421
|
+
},
|
|
1422
|
+
"geometry": {
|
|
1423
|
+
"$ref": "#/definitions/GeometryLike",
|
|
1424
|
+
"description": "The geometry to use for the command/operation."
|
|
1425
|
+
},
|
|
1426
|
+
"icon": {
|
|
1427
|
+
"description": "Optional icon that may be used by the transient UI container.",
|
|
1428
|
+
"type": "string"
|
|
1429
|
+
},
|
|
1430
|
+
"layers": {
|
|
1431
|
+
"$ref": "#/definitions/LayersLike",
|
|
1432
|
+
"description": "Layer(s) to use for the command/operation."
|
|
1330
1433
|
},
|
|
1331
1434
|
"maps": {
|
|
1332
1435
|
"$ref": "MapsLike",
|
|
1333
1436
|
"description": "Map(s) to use for the command/operation."
|
|
1437
|
+
},
|
|
1438
|
+
"orientation": {
|
|
1439
|
+
"description": "The orientation of the template picker.",
|
|
1440
|
+
"enum": [
|
|
1441
|
+
"horizontal",
|
|
1442
|
+
"vertical"
|
|
1443
|
+
],
|
|
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
|
+
"showNotifications": {
|
|
1451
|
+
"description": "Whether to show UI notifications.",
|
|
1452
|
+
"type": "boolean"
|
|
1453
|
+
},
|
|
1454
|
+
"showTitles": {
|
|
1455
|
+
"description": "Whether to show titles on the template picker.",
|
|
1456
|
+
"type": "boolean"
|
|
1457
|
+
},
|
|
1458
|
+
"templateName": {
|
|
1459
|
+
"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.",
|
|
1460
|
+
"type": "string"
|
|
1334
1461
|
}
|
|
1335
1462
|
},
|
|
1336
1463
|
"type": "object"
|
|
@@ -1348,8 +1475,8 @@
|
|
|
1348
1475
|
"type": "boolean"
|
|
1349
1476
|
},
|
|
1350
1477
|
"message": {
|
|
1351
|
-
"
|
|
1352
|
-
"
|
|
1478
|
+
"$ref": "#/definitions/TranslatableText",
|
|
1479
|
+
"description": "The message to be displayed in the notification. Mobile only supports a string for this property."
|
|
1353
1480
|
},
|
|
1354
1481
|
"notificationGroup": {
|
|
1355
1482
|
"description": "Notifications in the same notification group are mutually exclusive, and will supersede one another. Mobile only.",
|
|
@@ -1357,7 +1484,7 @@
|
|
|
1357
1484
|
},
|
|
1358
1485
|
"position": {
|
|
1359
1486
|
"$ref": "Position",
|
|
1360
|
-
"description": "The position of the notification on the screen."
|
|
1487
|
+
"description": "The position of the notification on the screen. Web only."
|
|
1361
1488
|
},
|
|
1362
1489
|
"title": {
|
|
1363
1490
|
"description": "The notification title - only shown for system notifications. Mobile only.",
|
|
@@ -1373,6 +1500,48 @@
|
|
|
1373
1500
|
],
|
|
1374
1501
|
"type": "object"
|
|
1375
1502
|
},
|
|
1503
|
+
"DisplayUpdateFeatureArgs": {
|
|
1504
|
+
"additionalProperties": false,
|
|
1505
|
+
"description": "Arguments for the \"edit.display-update-features\" operation. Web only.",
|
|
1506
|
+
"properties": {
|
|
1507
|
+
"editAttachments": {
|
|
1508
|
+
"description": "Whether to allow editing of feature attachments.",
|
|
1509
|
+
"type": "boolean"
|
|
1510
|
+
},
|
|
1511
|
+
"editAttributes": {
|
|
1512
|
+
"description": "Whether to allow editing of feature attributes.",
|
|
1513
|
+
"type": "boolean"
|
|
1514
|
+
},
|
|
1515
|
+
"editGeometry": {
|
|
1516
|
+
"description": "Whether to allow editing of feature geometry.",
|
|
1517
|
+
"type": "boolean"
|
|
1518
|
+
},
|
|
1519
|
+
"editGeometryOptions": {
|
|
1520
|
+
"$ref": "#/definitions/EditGeometryOptions",
|
|
1521
|
+
"description": "Options for the geometry editing session."
|
|
1522
|
+
},
|
|
1523
|
+
"featureAttributes": {
|
|
1524
|
+
"description": "A collection of attributes to automatically apply to the updated feature."
|
|
1525
|
+
},
|
|
1526
|
+
"features": {
|
|
1527
|
+
"$ref": "#/definitions/FeaturesLike",
|
|
1528
|
+
"description": "Features to use for the command/operation."
|
|
1529
|
+
},
|
|
1530
|
+
"geometry": {
|
|
1531
|
+
"$ref": "#/definitions/GeometryLike",
|
|
1532
|
+
"description": "The geometry to use for the command/operation."
|
|
1533
|
+
},
|
|
1534
|
+
"maps": {
|
|
1535
|
+
"$ref": "MapsLike",
|
|
1536
|
+
"description": "Map(s) to use for the command/operation."
|
|
1537
|
+
},
|
|
1538
|
+
"showNotifications": {
|
|
1539
|
+
"description": "Whether to show UI notifications.",
|
|
1540
|
+
"type": "boolean"
|
|
1541
|
+
}
|
|
1542
|
+
},
|
|
1543
|
+
"type": "object"
|
|
1544
|
+
},
|
|
1376
1545
|
"DownloadArgs": {
|
|
1377
1546
|
"additionalProperties": false,
|
|
1378
1547
|
"description": "Arguments for the system.download-file operation.",
|
|
@@ -1454,6 +1623,21 @@
|
|
|
1454
1623
|
],
|
|
1455
1624
|
"description": "Symbols supported for drawing."
|
|
1456
1625
|
},
|
|
1626
|
+
"EditCommandArgs": {
|
|
1627
|
+
"additionalProperties": false,
|
|
1628
|
+
"description": "Arguments for the \"edit.add-features\", \"edit.update-features\" and \"edit.delete-features\" commands. Web only.",
|
|
1629
|
+
"properties": {
|
|
1630
|
+
"features": {
|
|
1631
|
+
"$ref": "#/definitions/FeaturesLike",
|
|
1632
|
+
"description": "Features to use for the command/operation."
|
|
1633
|
+
},
|
|
1634
|
+
"showNotifications": {
|
|
1635
|
+
"description": "Whether to show UI notifications.",
|
|
1636
|
+
"type": "boolean"
|
|
1637
|
+
}
|
|
1638
|
+
},
|
|
1639
|
+
"type": "object"
|
|
1640
|
+
},
|
|
1457
1641
|
"EditGeometryArgs": {
|
|
1458
1642
|
"additionalProperties": false,
|
|
1459
1643
|
"description": "Arguments for the \"sketching.edit-geometry\" operation.",
|
|
@@ -1539,6 +1723,10 @@
|
|
|
1539
1723
|
"description": "Whether to allow scaling of the edited geometry. Defaults to true.",
|
|
1540
1724
|
"type": "boolean"
|
|
1541
1725
|
},
|
|
1726
|
+
"enableVertexEditing": {
|
|
1727
|
+
"description": "Whether to allow the user to add, move, and remove vertices from a geometry. Defaults to true.",
|
|
1728
|
+
"type": "boolean"
|
|
1729
|
+
},
|
|
1542
1730
|
"scaleMode": {
|
|
1543
1731
|
"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\".",
|
|
1544
1732
|
"enum": [
|
|
@@ -1546,6 +1734,10 @@
|
|
|
1546
1734
|
"preserve-aspect-ratio"
|
|
1547
1735
|
],
|
|
1548
1736
|
"type": "string"
|
|
1737
|
+
},
|
|
1738
|
+
"validateGeometry": {
|
|
1739
|
+
"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.",
|
|
1740
|
+
"type": "boolean"
|
|
1549
1741
|
}
|
|
1550
1742
|
},
|
|
1551
1743
|
"type": "object"
|
|
@@ -2509,9 +2701,31 @@
|
|
|
2509
2701
|
},
|
|
2510
2702
|
"type": "object"
|
|
2511
2703
|
},
|
|
2704
|
+
"GetActivePointsResult": {
|
|
2705
|
+
"additionalProperties": false,
|
|
2706
|
+
"description": "Result returned from the 'sketching.get-active-points' operation.",
|
|
2707
|
+
"properties": {
|
|
2708
|
+
"graphics": {
|
|
2709
|
+
"description": "The active graphic(s).",
|
|
2710
|
+
"items": {
|
|
2711
|
+
"$ref": "#/definitions/esri.Graphic"
|
|
2712
|
+
},
|
|
2713
|
+
"type": "array"
|
|
2714
|
+
},
|
|
2715
|
+
"maps": {
|
|
2716
|
+
"$ref": "@vertigis.arcgis-extensions.mapping.MapExtension.MapExtension",
|
|
2717
|
+
"description": "The map associated with the graphics."
|
|
2718
|
+
}
|
|
2719
|
+
},
|
|
2720
|
+
"required": [
|
|
2721
|
+
"graphics",
|
|
2722
|
+
"maps"
|
|
2723
|
+
],
|
|
2724
|
+
"type": "object"
|
|
2725
|
+
},
|
|
2512
2726
|
"GetActiveSketchResult": {
|
|
2513
2727
|
"additionalProperties": false,
|
|
2514
|
-
"description": "Result returned from the 'sketching.get-active-sketch'
|
|
2728
|
+
"description": "Result returned from the 'sketching.get-active-sketch' operation.",
|
|
2515
2729
|
"properties": {
|
|
2516
2730
|
"graphics": {
|
|
2517
2731
|
"description": "The active graphic(s).",
|
|
@@ -2531,6 +2745,28 @@
|
|
|
2531
2745
|
],
|
|
2532
2746
|
"type": "object"
|
|
2533
2747
|
},
|
|
2748
|
+
"GetAdjacentPointArgs": {
|
|
2749
|
+
"additionalProperties": false,
|
|
2750
|
+
"description": "Arguments for the 'sketching.get-adjacent-point' operation.",
|
|
2751
|
+
"properties": {
|
|
2752
|
+
"maps": {
|
|
2753
|
+
"$ref": "MapsLike",
|
|
2754
|
+
"description": "Map(s) to use for the command/operation."
|
|
2755
|
+
},
|
|
2756
|
+
"referencePoint": {
|
|
2757
|
+
"$ref": "#/definitions/esri.Point",
|
|
2758
|
+
"description": "A point geometry that represents a vertex within an active editing graphic."
|
|
2759
|
+
},
|
|
2760
|
+
"relativeOffset": {
|
|
2761
|
+
"$ref": "#/definitions/PointOffset",
|
|
2762
|
+
"description": "Specifies if the desired point comes before or after the referencePoint. Defaults to 'after'."
|
|
2763
|
+
}
|
|
2764
|
+
},
|
|
2765
|
+
"required": [
|
|
2766
|
+
"referencePoint"
|
|
2767
|
+
],
|
|
2768
|
+
"type": "object"
|
|
2769
|
+
},
|
|
2534
2770
|
"GetCoordinateArgs": {
|
|
2535
2771
|
"additionalProperties": false,
|
|
2536
2772
|
"description": "Arguments for the map.get-user-coordinates-input operation.",
|
|
@@ -2866,6 +3102,10 @@
|
|
|
2866
3102
|
"additionalProperties": false,
|
|
2867
3103
|
"description": "Arguments for the \"sketching.insert-point\" command.",
|
|
2868
3104
|
"properties": {
|
|
3105
|
+
"geometry": {
|
|
3106
|
+
"$ref": "#/definitions/esri.Geometry",
|
|
3107
|
+
"description": "The geometry to add the point to, if multiple are present in an active editing session. Not supported by Mobile."
|
|
3108
|
+
},
|
|
2869
3109
|
"maps": {
|
|
2870
3110
|
"$ref": "MapsLike",
|
|
2871
3111
|
"description": "Map(s) to use for the command/operation."
|
|
@@ -3054,6 +3294,23 @@
|
|
|
3054
3294
|
],
|
|
3055
3295
|
"type": "string"
|
|
3056
3296
|
},
|
|
3297
|
+
"Maps": {
|
|
3298
|
+
"anyOf": [
|
|
3299
|
+
{
|
|
3300
|
+
"$ref": "@vertigis.arcgis-extensions.mapping.MapExtension.MapExtension"
|
|
3301
|
+
},
|
|
3302
|
+
{
|
|
3303
|
+
"$ref": "#/definitions/HasMaps"
|
|
3304
|
+
},
|
|
3305
|
+
{
|
|
3306
|
+
"items": {
|
|
3307
|
+
"$ref": "@vertigis.arcgis-extensions.mapping.MapExtension.MapExtension"
|
|
3308
|
+
},
|
|
3309
|
+
"type": "array"
|
|
3310
|
+
}
|
|
3311
|
+
],
|
|
3312
|
+
"description": "One or more map extensions, or an object that has map extensions."
|
|
3313
|
+
},
|
|
3057
3314
|
"MapsLike": {
|
|
3058
3315
|
"anyOf": [
|
|
3059
3316
|
{
|
|
@@ -3197,7 +3454,7 @@
|
|
|
3197
3454
|
},
|
|
3198
3455
|
"MoveNodeArgs": {
|
|
3199
3456
|
"additionalProperties": false,
|
|
3200
|
-
"description": "
|
|
3457
|
+
"description": "Deprecated - use \"sketching.move-point\" with {@link MovePointArgs}.",
|
|
3201
3458
|
"properties": {
|
|
3202
3459
|
"maps": {
|
|
3203
3460
|
"$ref": "MapsLike",
|
|
@@ -3217,6 +3474,45 @@
|
|
|
3217
3474
|
],
|
|
3218
3475
|
"type": "object"
|
|
3219
3476
|
},
|
|
3477
|
+
"MovePointArgs": {
|
|
3478
|
+
"additionalProperties": false,
|
|
3479
|
+
"description": "The arguments for the \"sketching.move-point\" command.",
|
|
3480
|
+
"properties": {
|
|
3481
|
+
"distance": {
|
|
3482
|
+
"$ref": "#/definitions/Vector2D",
|
|
3483
|
+
"description": "An amount to move the point(s) on the X and Y axes. If the newPoint property is defined, this property will be ignored."
|
|
3484
|
+
},
|
|
3485
|
+
"geometry": {
|
|
3486
|
+
"$ref": "#/definitions/esri.Geometry",
|
|
3487
|
+
"description": "The geometry where the point exists, if multiple are present in an active editing session. This property is required if pointIndex and/or partIndex are defined."
|
|
3488
|
+
},
|
|
3489
|
+
"maps": {
|
|
3490
|
+
"$ref": "MapsLike",
|
|
3491
|
+
"description": "Map(s) to use for the command/operation."
|
|
3492
|
+
},
|
|
3493
|
+
"newPoint": {
|
|
3494
|
+
"$ref": "#/definitions/esri.Point",
|
|
3495
|
+
"description": "The new point that will replace the target point within an active sketch or edit geometry. If this property is defined, the distance property will be ignored."
|
|
3496
|
+
},
|
|
3497
|
+
"partIndex": {
|
|
3498
|
+
"description": "The part of the geometry where the point exists. Required for polyline and polygon geometry types when the geometry and pointIndex properties are defined.",
|
|
3499
|
+
"type": "number"
|
|
3500
|
+
},
|
|
3501
|
+
"point": {
|
|
3502
|
+
"$ref": "#/definitions/esri.Point",
|
|
3503
|
+
"description": "The point to move, which must already exist within the active sketch. If this property is undefined and no geometry and pointIndex are specified, the active point(s) will be moved."
|
|
3504
|
+
},
|
|
3505
|
+
"pointIndex": {
|
|
3506
|
+
"description": "The index of the point. If this property is defined, the 'geometry' property must also be defined.",
|
|
3507
|
+
"type": "number"
|
|
3508
|
+
},
|
|
3509
|
+
"units": {
|
|
3510
|
+
"$ref": "#/definitions/LengthUnits",
|
|
3511
|
+
"description": "The units of the above distance. Optional, will default to the units used by the measurement service associated with the map."
|
|
3512
|
+
}
|
|
3513
|
+
},
|
|
3514
|
+
"type": "object"
|
|
3515
|
+
},
|
|
3220
3516
|
"NarrateArgs": {
|
|
3221
3517
|
"anyOf": [
|
|
3222
3518
|
{
|
|
@@ -3295,6 +3591,27 @@
|
|
|
3295
3591
|
],
|
|
3296
3592
|
"type": "string"
|
|
3297
3593
|
},
|
|
3594
|
+
"OpenUrlArgs": {
|
|
3595
|
+
"additionalProperties": false,
|
|
3596
|
+
"description": "Arguments for the system.open-url command.",
|
|
3597
|
+
"properties": {
|
|
3598
|
+
"context": {
|
|
3599
|
+
"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."
|
|
3600
|
+
},
|
|
3601
|
+
"numberFormatterLocale": {
|
|
3602
|
+
"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.",
|
|
3603
|
+
"type": "string"
|
|
3604
|
+
},
|
|
3605
|
+
"url": {
|
|
3606
|
+
"description": "The URL to open.",
|
|
3607
|
+
"type": "string"
|
|
3608
|
+
}
|
|
3609
|
+
},
|
|
3610
|
+
"required": [
|
|
3611
|
+
"url"
|
|
3612
|
+
],
|
|
3613
|
+
"type": "object"
|
|
3614
|
+
},
|
|
3298
3615
|
"Orientation": {
|
|
3299
3616
|
"description": "An orientation for the layout.",
|
|
3300
3617
|
"enum": [
|
|
@@ -3303,6 +3620,14 @@
|
|
|
3303
3620
|
],
|
|
3304
3621
|
"type": "string"
|
|
3305
3622
|
},
|
|
3623
|
+
"PointOffset": {
|
|
3624
|
+
"description": "Specifies if a desired point comes before or after a given reference point.",
|
|
3625
|
+
"enum": [
|
|
3626
|
+
"after",
|
|
3627
|
+
"before"
|
|
3628
|
+
],
|
|
3629
|
+
"type": "string"
|
|
3630
|
+
},
|
|
3306
3631
|
"ProjectArgs": {
|
|
3307
3632
|
"additionalProperties": false,
|
|
3308
3633
|
"description": "Arguments for the geometry.project operation.",
|
|
@@ -3806,6 +4131,43 @@
|
|
|
3806
4131
|
],
|
|
3807
4132
|
"type": "object"
|
|
3808
4133
|
},
|
|
4134
|
+
"SetActivePointsArgs": {
|
|
4135
|
+
"additionalProperties": false,
|
|
4136
|
+
"description": "The arguments for the \"sketching.set-active-points\" command.",
|
|
4137
|
+
"properties": {
|
|
4138
|
+
"geometry": {
|
|
4139
|
+
"$ref": "#/definitions/esri.Geometry",
|
|
4140
|
+
"description": "The geometry where the new active point exists, if multiple are present in an active editing session. This property is required if pointIndex and/or partIndex are defined."
|
|
4141
|
+
},
|
|
4142
|
+
"maps": {
|
|
4143
|
+
"$ref": "MapsLike",
|
|
4144
|
+
"description": "Map(s) to use for the command/operation."
|
|
4145
|
+
},
|
|
4146
|
+
"partIndex": {
|
|
4147
|
+
"description": "The part of the geometry where the new active point exists. Required for polyline and polygon geometry types when the geometry and pointIndex properties are defined.",
|
|
4148
|
+
"type": "number"
|
|
4149
|
+
},
|
|
4150
|
+
"pointIndex": {
|
|
4151
|
+
"description": "The index of the new active point. If this property is defined, the geometry property must be defined.",
|
|
4152
|
+
"type": "number"
|
|
4153
|
+
},
|
|
4154
|
+
"points": {
|
|
4155
|
+
"anyOf": [
|
|
4156
|
+
{
|
|
4157
|
+
"$ref": "#/definitions/esri.Point"
|
|
4158
|
+
},
|
|
4159
|
+
{
|
|
4160
|
+
"items": {
|
|
4161
|
+
"$ref": "#/definitions/esri.Point"
|
|
4162
|
+
},
|
|
4163
|
+
"type": "array"
|
|
4164
|
+
}
|
|
4165
|
+
],
|
|
4166
|
+
"description": "The new point(s) that will become active in the sketch or editing session. Sketching only supports one active point; if multiple are specified, then only the first will be set as active."
|
|
4167
|
+
}
|
|
4168
|
+
},
|
|
4169
|
+
"type": "object"
|
|
4170
|
+
},
|
|
3809
4171
|
"SetBasemapArg": {
|
|
3810
4172
|
"anyOf": [
|
|
3811
4173
|
{
|
|
@@ -4150,7 +4512,7 @@
|
|
|
4150
4512
|
},
|
|
4151
4513
|
"SwitchActiveNodeArgs": {
|
|
4152
4514
|
"additionalProperties": false,
|
|
4153
|
-
"description": "
|
|
4515
|
+
"description": "Deprecated - use \"sketching.set-active-points\" with {@link SetActivePointsArgs}.",
|
|
4154
4516
|
"properties": {
|
|
4155
4517
|
"maps": {
|
|
4156
4518
|
"$ref": "MapsLike",
|
|
@@ -4557,6 +4919,61 @@
|
|
|
4557
4919
|
],
|
|
4558
4920
|
"type": "object"
|
|
4559
4921
|
},
|
|
4922
|
+
"TranslatableText": {
|
|
4923
|
+
"anyOf": [
|
|
4924
|
+
{
|
|
4925
|
+
"$ref": "#/definitions/TranslateOptions"
|
|
4926
|
+
},
|
|
4927
|
+
{
|
|
4928
|
+
"type": "string"
|
|
4929
|
+
}
|
|
4930
|
+
],
|
|
4931
|
+
"description": "A translatable string, either a language string or a language string with arguments to pass into it."
|
|
4932
|
+
},
|
|
4933
|
+
"TranslateOptions": {
|
|
4934
|
+
"additionalProperties": false,
|
|
4935
|
+
"description": "The available options for the Locale Service translate function.",
|
|
4936
|
+
"properties": {
|
|
4937
|
+
"args": {
|
|
4938
|
+
"description": "The values to substitute into the format string if it contains substitution placeholders (see utilities/string/format in Geocortex API).",
|
|
4939
|
+
"items": {
|
|
4940
|
+
},
|
|
4941
|
+
"type": "array"
|
|
4942
|
+
},
|
|
4943
|
+
"currency": {
|
|
4944
|
+
"description": "The default unit of currency to use when formatting currency. See {@link NumberSettings.currency}.",
|
|
4945
|
+
"type": "string"
|
|
4946
|
+
},
|
|
4947
|
+
"dateFormat": {
|
|
4948
|
+
"description": "The default format to use when formatting dates. See {@link DateFormatter.format}.",
|
|
4949
|
+
"type": "string"
|
|
4950
|
+
},
|
|
4951
|
+
"fractionalDigits": {
|
|
4952
|
+
"description": "The default number of digits to show after the decimal point when formatting numbers. See {@link NumberSettings.fractionalDigits}.",
|
|
4953
|
+
"type": "number"
|
|
4954
|
+
},
|
|
4955
|
+
"locale": {
|
|
4956
|
+
"description": "The locale to use for translation. If not specified, the current locale will be used.",
|
|
4957
|
+
"type": "string"
|
|
4958
|
+
},
|
|
4959
|
+
"numberFormat": {
|
|
4960
|
+
"description": "The default format to use when formatting numbers. See {@link NumberFormatter.format}.",
|
|
4961
|
+
"type": "string"
|
|
4962
|
+
},
|
|
4963
|
+
"text": {
|
|
4964
|
+
"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.",
|
|
4965
|
+
"type": "string"
|
|
4966
|
+
},
|
|
4967
|
+
"timeZone": {
|
|
4968
|
+
"description": "The time zone of a date being formatted.",
|
|
4969
|
+
"type": "string"
|
|
4970
|
+
}
|
|
4971
|
+
},
|
|
4972
|
+
"required": [
|
|
4973
|
+
"text"
|
|
4974
|
+
],
|
|
4975
|
+
"type": "object"
|
|
4976
|
+
},
|
|
4560
4977
|
"UpdateChartDefinitionArgs": {
|
|
4561
4978
|
"additionalProperties": false,
|
|
4562
4979
|
"description": "Arguments for the charts.update-definition command.",
|
|
@@ -4907,6 +5324,40 @@
|
|
|
4907
5324
|
],
|
|
4908
5325
|
"type": "object"
|
|
4909
5326
|
},
|
|
5327
|
+
"WebOpenUrlArgs": {
|
|
5328
|
+
"additionalProperties": false,
|
|
5329
|
+
"description": "VertiGIS Studio Web's arguments for the system.open-url command.",
|
|
5330
|
+
"properties": {
|
|
5331
|
+
"features": {
|
|
5332
|
+
"$ref": "#/definitions/FeaturesLike",
|
|
5333
|
+
"description": "Features to use for the command/operation."
|
|
5334
|
+
},
|
|
5335
|
+
"geometry": {
|
|
5336
|
+
"$ref": "#/definitions/GeometryLike",
|
|
5337
|
+
"description": "The geometry to use for the command/operation."
|
|
5338
|
+
},
|
|
5339
|
+
"layers": {
|
|
5340
|
+
"$ref": "#/definitions/LayersLike",
|
|
5341
|
+
"description": "Layer(s) to use for the command/operation."
|
|
5342
|
+
},
|
|
5343
|
+
"maps": {
|
|
5344
|
+
"$ref": "MapsLike",
|
|
5345
|
+
"description": "Map(s) to use for the command/operation."
|
|
5346
|
+
},
|
|
5347
|
+
"numberFormatterLocale": {
|
|
5348
|
+
"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.",
|
|
5349
|
+
"type": "string"
|
|
5350
|
+
},
|
|
5351
|
+
"url": {
|
|
5352
|
+
"description": "The URL to open.",
|
|
5353
|
+
"type": "string"
|
|
5354
|
+
}
|
|
5355
|
+
},
|
|
5356
|
+
"required": [
|
|
5357
|
+
"url"
|
|
5358
|
+
],
|
|
5359
|
+
"type": "object"
|
|
5360
|
+
},
|
|
4910
5361
|
"ZoomToLayerArgs": {
|
|
4911
5362
|
"additionalProperties": false,
|
|
4912
5363
|
"description": "Arguments for the map.zoom-to-layer-extent and map.zoom-to-layer-visible-scale commands.",
|
|
@@ -5435,42 +5886,152 @@
|
|
|
5435
5886
|
"$ref": "#/definitions/esri.rest-api.PointSymbol3D.PointSymbol3D"
|
|
5436
5887
|
},
|
|
5437
5888
|
{
|
|
5438
|
-
"$ref": "#/definitions/esri.rest-api.PolygonSymbol3D.PolygonSymbol3D"
|
|
5889
|
+
"$ref": "#/definitions/esri.rest-api.PolygonSymbol3D.PolygonSymbol3D"
|
|
5890
|
+
},
|
|
5891
|
+
{
|
|
5892
|
+
"$ref": "#/definitions/HasSymbol"
|
|
5893
|
+
}
|
|
5894
|
+
]
|
|
5895
|
+
},
|
|
5896
|
+
"drawing.set-symbol": {
|
|
5897
|
+
"description": "Sets the symbol on a collection of Graphics. The symbol can be configured with an instance of the Esri symbol or with the Esri WebMap JSON.",
|
|
5898
|
+
"enum": [
|
|
5899
|
+
"drawing.set-symbol"
|
|
5900
|
+
]
|
|
5901
|
+
},
|
|
5902
|
+
"drawing.set-symbol:input": {
|
|
5903
|
+
"additionalProperties": false,
|
|
5904
|
+
"properties": {
|
|
5905
|
+
"graphics": {
|
|
5906
|
+
"$ref": "#/definitions/GraphicsLike",
|
|
5907
|
+
"description": "Graphics to use for the command/operation."
|
|
5908
|
+
},
|
|
5909
|
+
"symbol": {
|
|
5910
|
+
"$ref": "#/definitions/SymbolLike",
|
|
5911
|
+
"description": "The symbol to use for the command/operation."
|
|
5912
|
+
}
|
|
5913
|
+
},
|
|
5914
|
+
"type": "object"
|
|
5915
|
+
},
|
|
5916
|
+
"drawing.set-sync": {
|
|
5917
|
+
"description": "Sets a value that determines whether drawings will be synced automatically across maps.",
|
|
5918
|
+
"enum": [
|
|
5919
|
+
"drawing.set-sync"
|
|
5920
|
+
]
|
|
5921
|
+
},
|
|
5922
|
+
"drawing.set-sync:input": {
|
|
5923
|
+
"type": "boolean"
|
|
5924
|
+
},
|
|
5925
|
+
"edit.add-feature": {
|
|
5926
|
+
"description": "Adds a feature to a particular layer. `Feature[]` and `EditCommandArgs` are not supported on Mobile.",
|
|
5927
|
+
"enum": [
|
|
5928
|
+
"edit.add-feature"
|
|
5929
|
+
]
|
|
5930
|
+
},
|
|
5931
|
+
"edit.add-feature:input": {
|
|
5932
|
+
"anyOf": [
|
|
5933
|
+
{
|
|
5934
|
+
"$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
|
|
5935
|
+
},
|
|
5936
|
+
{
|
|
5937
|
+
"$ref": "#/definitions/EditCommandArgs"
|
|
5938
|
+
},
|
|
5939
|
+
{
|
|
5940
|
+
"items": {
|
|
5941
|
+
"$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
|
|
5942
|
+
},
|
|
5943
|
+
"type": "array"
|
|
5944
|
+
}
|
|
5945
|
+
]
|
|
5946
|
+
},
|
|
5947
|
+
"edit.create-feature": {
|
|
5948
|
+
"description": "Creates a new `Feature` for the supplied layer from the supplied data.",
|
|
5949
|
+
"enum": [
|
|
5950
|
+
"edit.create-feature"
|
|
5951
|
+
]
|
|
5952
|
+
},
|
|
5953
|
+
"edit.create-feature:input": {
|
|
5954
|
+
"$ref": "#/definitions/CreateFeatureArgs"
|
|
5955
|
+
},
|
|
5956
|
+
"edit.create-feature:output": {
|
|
5957
|
+
"$ref": "#/definitions/HasFeatures"
|
|
5958
|
+
},
|
|
5959
|
+
"edit.delete-features": {
|
|
5960
|
+
"description": "Deletes the given feature or features from their feature sources. `EditCommandArgs` is not supported on Mobile.",
|
|
5961
|
+
"enum": [
|
|
5962
|
+
"edit.delete-features"
|
|
5963
|
+
]
|
|
5964
|
+
},
|
|
5965
|
+
"edit.delete-features:input": {
|
|
5966
|
+
"anyOf": [
|
|
5967
|
+
{
|
|
5968
|
+
"$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
|
|
5969
|
+
},
|
|
5970
|
+
{
|
|
5971
|
+
"$ref": "#/definitions/EditCommandArgs"
|
|
5972
|
+
},
|
|
5973
|
+
{
|
|
5974
|
+
"items": {
|
|
5975
|
+
"$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
|
|
5976
|
+
},
|
|
5977
|
+
"type": "array"
|
|
5978
|
+
}
|
|
5979
|
+
]
|
|
5980
|
+
},
|
|
5981
|
+
"edit.display-add-feature": {
|
|
5982
|
+
"description": "Display a form for adding a feature. `DisplayAddFeatureArgs` is not supported on Mobile.",
|
|
5983
|
+
"enum": [
|
|
5984
|
+
"edit.display-add-feature"
|
|
5985
|
+
]
|
|
5986
|
+
},
|
|
5987
|
+
"edit.display-add-feature:input": {
|
|
5988
|
+
"anyOf": [
|
|
5989
|
+
{
|
|
5990
|
+
"$ref": "@vertigis.arcgis-extensions.data.FeatureSource.FeatureSource"
|
|
5991
|
+
},
|
|
5992
|
+
{
|
|
5993
|
+
"$ref": "#/definitions/DisplayAddFeatureArgs"
|
|
5994
|
+
}
|
|
5995
|
+
]
|
|
5996
|
+
},
|
|
5997
|
+
"edit.display-update-feature": {
|
|
5998
|
+
"description": "Display a form for updating a feature. `DisplayUpdateFeatureArgs` is not supported on Mobile.",
|
|
5999
|
+
"enum": [
|
|
6000
|
+
"edit.display-update-feature"
|
|
6001
|
+
]
|
|
6002
|
+
},
|
|
6003
|
+
"edit.display-update-feature:input": {
|
|
6004
|
+
"anyOf": [
|
|
6005
|
+
{
|
|
6006
|
+
"$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
|
|
5439
6007
|
},
|
|
5440
6008
|
{
|
|
5441
|
-
"$ref": "#/definitions/
|
|
6009
|
+
"$ref": "#/definitions/DisplayUpdateFeatureArgs"
|
|
5442
6010
|
}
|
|
5443
6011
|
]
|
|
5444
6012
|
},
|
|
5445
|
-
"
|
|
5446
|
-
"description": "
|
|
6013
|
+
"edit.update-feature": {
|
|
6014
|
+
"description": "Updates a feature. `Feature[]` and `EditCommandArgs` are not supported on Mobile.",
|
|
5447
6015
|
"enum": [
|
|
5448
|
-
"
|
|
6016
|
+
"edit.update-feature"
|
|
5449
6017
|
]
|
|
5450
6018
|
},
|
|
5451
|
-
"
|
|
5452
|
-
"
|
|
5453
|
-
|
|
5454
|
-
|
|
5455
|
-
"$ref": "#/definitions/GraphicsLike",
|
|
5456
|
-
"description": "Graphics to use for the command/operation."
|
|
6019
|
+
"edit.update-feature:input": {
|
|
6020
|
+
"anyOf": [
|
|
6021
|
+
{
|
|
6022
|
+
"$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
|
|
5457
6023
|
},
|
|
5458
|
-
|
|
5459
|
-
"$ref": "#/definitions/
|
|
5460
|
-
|
|
6024
|
+
{
|
|
6025
|
+
"$ref": "#/definitions/EditCommandArgs"
|
|
6026
|
+
},
|
|
6027
|
+
{
|
|
6028
|
+
"items": {
|
|
6029
|
+
"$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
|
|
6030
|
+
},
|
|
6031
|
+
"type": "array"
|
|
5461
6032
|
}
|
|
5462
|
-
},
|
|
5463
|
-
"type": "object"
|
|
5464
|
-
},
|
|
5465
|
-
"drawing.set-sync": {
|
|
5466
|
-
"description": "Sets a value that determines whether drawings will be synced automatically across maps.",
|
|
5467
|
-
"enum": [
|
|
5468
|
-
"drawing.set-sync"
|
|
5469
6033
|
]
|
|
5470
6034
|
},
|
|
5471
|
-
"drawing.set-sync:input": {
|
|
5472
|
-
"type": "boolean"
|
|
5473
|
-
},
|
|
5474
6035
|
"esri.Color": {
|
|
5475
6036
|
"$ref": "esri/Color"
|
|
5476
6037
|
},
|
|
@@ -16696,7 +17257,7 @@
|
|
|
16696
17257
|
]
|
|
16697
17258
|
},
|
|
16698
17259
|
"sketching.add-node-to-geometry": {
|
|
16699
|
-
"description": "
|
|
17260
|
+
"description": "Deprecated - Mobile users should rather use \"geometry.add-point\"; Web users should use \"sketching.add-point\" or \"sketching.insert-point\" instead.",
|
|
16700
17261
|
"enum": [
|
|
16701
17262
|
"sketching.add-node-to-geometry"
|
|
16702
17263
|
]
|
|
@@ -16708,7 +17269,7 @@
|
|
|
16708
17269
|
"$ref": "#/definitions/esri.Geometry"
|
|
16709
17270
|
},
|
|
16710
17271
|
"sketching.add-point": {
|
|
16711
|
-
"description": "Adds a point to polygon or
|
|
17272
|
+
"description": "Adds a point to polygon, polyline, or multipoint using the selected index as the point to insert after.",
|
|
16712
17273
|
"enum": [
|
|
16713
17274
|
"sketching.add-point"
|
|
16714
17275
|
]
|
|
@@ -16735,13 +17296,20 @@
|
|
|
16735
17296
|
"$ref": "#/definitions/CaptureGeometryResult"
|
|
16736
17297
|
},
|
|
16737
17298
|
"sketching.delete": {
|
|
16738
|
-
"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
|
|
17299
|
+
"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.",
|
|
16739
17300
|
"enum": [
|
|
16740
17301
|
"sketching.delete"
|
|
16741
17302
|
]
|
|
16742
17303
|
},
|
|
16743
17304
|
"sketching.delete:input": {
|
|
16744
|
-
"
|
|
17305
|
+
"anyOf": [
|
|
17306
|
+
{
|
|
17307
|
+
"$ref": "#/definitions/DeleteGeometryArgs"
|
|
17308
|
+
},
|
|
17309
|
+
{
|
|
17310
|
+
"type": "null"
|
|
17311
|
+
}
|
|
17312
|
+
]
|
|
16745
17313
|
},
|
|
16746
17314
|
"sketching.disable-free-scale-mode": {
|
|
16747
17315
|
"description": "Disables free scaling while editing geometries.",
|
|
@@ -16789,16 +17357,28 @@
|
|
|
16789
17357
|
]
|
|
16790
17358
|
},
|
|
16791
17359
|
"sketching.get-active-node": {
|
|
16792
|
-
"description": "
|
|
17360
|
+
"description": "Deprecated - use 'sketching.get-active-points' instead.",
|
|
16793
17361
|
"enum": [
|
|
16794
17362
|
"sketching.get-active-node"
|
|
16795
17363
|
]
|
|
16796
17364
|
},
|
|
16797
17365
|
"sketching.get-active-node:input": {
|
|
16798
|
-
"
|
|
17366
|
+
"$ref": "Maps"
|
|
16799
17367
|
},
|
|
16800
17368
|
"sketching.get-active-node:output": {
|
|
16801
|
-
"$ref": "#/definitions/
|
|
17369
|
+
"$ref": "#/definitions/GetActivePointsResult"
|
|
17370
|
+
},
|
|
17371
|
+
"sketching.get-active-points": {
|
|
17372
|
+
"description": "Returns the active point graphics of the active sketch or edit session on a map.",
|
|
17373
|
+
"enum": [
|
|
17374
|
+
"sketching.get-active-points"
|
|
17375
|
+
]
|
|
17376
|
+
},
|
|
17377
|
+
"sketching.get-active-points:input": {
|
|
17378
|
+
"$ref": "Maps"
|
|
17379
|
+
},
|
|
17380
|
+
"sketching.get-active-points:output": {
|
|
17381
|
+
"$ref": "#/definitions/GetActivePointsResult"
|
|
16802
17382
|
},
|
|
16803
17383
|
"sketching.get-active-sketch": {
|
|
16804
17384
|
"description": "Returns the active sketch graphic from a map.",
|
|
@@ -16809,8 +17389,20 @@
|
|
|
16809
17389
|
"sketching.get-active-sketch:output": {
|
|
16810
17390
|
"$ref": "#/definitions/GetActiveSketchResult"
|
|
16811
17391
|
},
|
|
17392
|
+
"sketching.get-adjacent-point": {
|
|
17393
|
+
"description": "Return the adjacent point graphic(s), relative to a given vertex that's a part of an active editing or sketching session. This operation is only supported for Polyline and Polygon geometries.",
|
|
17394
|
+
"enum": [
|
|
17395
|
+
"sketching.get-adjacent-point"
|
|
17396
|
+
]
|
|
17397
|
+
},
|
|
17398
|
+
"sketching.get-adjacent-point:input": {
|
|
17399
|
+
"$ref": "#/definitions/GetAdjacentPointArgs"
|
|
17400
|
+
},
|
|
17401
|
+
"sketching.get-adjacent-point:output": {
|
|
17402
|
+
"$ref": "#/definitions/GetActiveSketchResult"
|
|
17403
|
+
},
|
|
16812
17404
|
"sketching.insert-point": {
|
|
16813
|
-
"description": "Inserts a point into a polygon or
|
|
17405
|
+
"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.",
|
|
16814
17406
|
"enum": [
|
|
16815
17407
|
"sketching.insert-point"
|
|
16816
17408
|
]
|
|
@@ -16831,7 +17423,7 @@
|
|
|
16831
17423
|
"$ref": "#/definitions/GeometryOperationBase"
|
|
16832
17424
|
},
|
|
16833
17425
|
"sketching.move-node": {
|
|
16834
|
-
"description": "
|
|
17426
|
+
"description": "Deprecated - use 'sketching.move-point' instead.",
|
|
16835
17427
|
"enum": [
|
|
16836
17428
|
"sketching.move-node"
|
|
16837
17429
|
]
|
|
@@ -16839,6 +17431,15 @@
|
|
|
16839
17431
|
"sketching.move-node:input": {
|
|
16840
17432
|
"$ref": "#/definitions/MoveNodeArgs"
|
|
16841
17433
|
},
|
|
17434
|
+
"sketching.move-point": {
|
|
17435
|
+
"description": "Moves a point within an active sketch to a new location.",
|
|
17436
|
+
"enum": [
|
|
17437
|
+
"sketching.move-point"
|
|
17438
|
+
]
|
|
17439
|
+
},
|
|
17440
|
+
"sketching.move-point:input": {
|
|
17441
|
+
"$ref": "#/definitions/MovePointArgs"
|
|
17442
|
+
},
|
|
16842
17443
|
"sketching.redo": {
|
|
16843
17444
|
"description": "Redoes the last undone edit while editing a geometry.",
|
|
16844
17445
|
"enum": [
|
|
@@ -16872,6 +17473,15 @@
|
|
|
16872
17473
|
"sketching.scale-geometry:output": {
|
|
16873
17474
|
"$ref": "#/definitions/GeometryOperationBase"
|
|
16874
17475
|
},
|
|
17476
|
+
"sketching.set-active-points": {
|
|
17477
|
+
"description": "Switches the active point of an active sketch.",
|
|
17478
|
+
"enum": [
|
|
17479
|
+
"sketching.set-active-points"
|
|
17480
|
+
]
|
|
17481
|
+
},
|
|
17482
|
+
"sketching.set-active-points:input": {
|
|
17483
|
+
"$ref": "#/definitions/SetActivePointsArgs"
|
|
17484
|
+
},
|
|
16875
17485
|
"sketching.set-geometry-mode": {
|
|
16876
17486
|
"description": "Sets the geometry mode of the geometry editor.",
|
|
16877
17487
|
"enum": [
|
|
@@ -16882,7 +17492,7 @@
|
|
|
16882
17492
|
"$ref": "#/definitions/SetGeometryModeArgs"
|
|
16883
17493
|
},
|
|
16884
17494
|
"sketching.stop": {
|
|
16885
|
-
"description": "Stops geometry capturing or editing on a given map. Returns the current geometry. If validateGeometry parameter is true and geometry is invalid,
|
|
17495
|
+
"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.",
|
|
16886
17496
|
"enum": [
|
|
16887
17497
|
"sketching.stop"
|
|
16888
17498
|
]
|
|
@@ -16901,7 +17511,7 @@
|
|
|
16901
17511
|
"$ref": "#/definitions/CaptureGeometryResult"
|
|
16902
17512
|
},
|
|
16903
17513
|
"sketching.switch-active-node": {
|
|
16904
|
-
"description": "
|
|
17514
|
+
"description": "Deprecated - use 'sketching.set-active-points' instead.",
|
|
16905
17515
|
"enum": [
|
|
16906
17516
|
"sketching.switch-active-node"
|
|
16907
17517
|
]
|
|
@@ -16954,6 +17564,25 @@
|
|
|
16954
17564
|
"system.get-sharing-link:output": {
|
|
16955
17565
|
"type": "string"
|
|
16956
17566
|
},
|
|
17567
|
+
"system.open-url": {
|
|
17568
|
+
"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.",
|
|
17569
|
+
"enum": [
|
|
17570
|
+
"system.open-url"
|
|
17571
|
+
]
|
|
17572
|
+
},
|
|
17573
|
+
"system.open-url:input": {
|
|
17574
|
+
"anyOf": [
|
|
17575
|
+
{
|
|
17576
|
+
"$ref": "#/definitions/WebOpenUrlArgs"
|
|
17577
|
+
},
|
|
17578
|
+
{
|
|
17579
|
+
"$ref": "#/definitions/OpenUrlArgs"
|
|
17580
|
+
},
|
|
17581
|
+
{
|
|
17582
|
+
"type": "string"
|
|
17583
|
+
}
|
|
17584
|
+
]
|
|
17585
|
+
},
|
|
16957
17586
|
"system.read-file": {
|
|
16958
17587
|
"description": "Initiates a file read, using the native browser file input.",
|
|
16959
17588
|
"enum": [
|
|
@@ -17438,6 +18067,86 @@
|
|
|
17438
18067
|
],
|
|
17439
18068
|
"type": "object"
|
|
17440
18069
|
},
|
|
18070
|
+
{
|
|
18071
|
+
"additionalProperties": false,
|
|
18072
|
+
"properties": {
|
|
18073
|
+
"arguments": {
|
|
18074
|
+
"$ref": "#/definitions/edit.add-feature:input"
|
|
18075
|
+
},
|
|
18076
|
+
"name": {
|
|
18077
|
+
"$ref": "#/definitions/edit.add-feature"
|
|
18078
|
+
}
|
|
18079
|
+
},
|
|
18080
|
+
"required": [
|
|
18081
|
+
"name",
|
|
18082
|
+
"arguments"
|
|
18083
|
+
],
|
|
18084
|
+
"type": "object"
|
|
18085
|
+
},
|
|
18086
|
+
{
|
|
18087
|
+
"additionalProperties": false,
|
|
18088
|
+
"properties": {
|
|
18089
|
+
"arguments": {
|
|
18090
|
+
"$ref": "#/definitions/edit.delete-features:input"
|
|
18091
|
+
},
|
|
18092
|
+
"name": {
|
|
18093
|
+
"$ref": "#/definitions/edit.delete-features"
|
|
18094
|
+
}
|
|
18095
|
+
},
|
|
18096
|
+
"required": [
|
|
18097
|
+
"name",
|
|
18098
|
+
"arguments"
|
|
18099
|
+
],
|
|
18100
|
+
"type": "object"
|
|
18101
|
+
},
|
|
18102
|
+
{
|
|
18103
|
+
"additionalProperties": false,
|
|
18104
|
+
"properties": {
|
|
18105
|
+
"arguments": {
|
|
18106
|
+
"$ref": "#/definitions/edit.display-add-feature:input"
|
|
18107
|
+
},
|
|
18108
|
+
"name": {
|
|
18109
|
+
"$ref": "#/definitions/edit.display-add-feature"
|
|
18110
|
+
}
|
|
18111
|
+
},
|
|
18112
|
+
"required": [
|
|
18113
|
+
"name",
|
|
18114
|
+
"arguments"
|
|
18115
|
+
],
|
|
18116
|
+
"type": "object"
|
|
18117
|
+
},
|
|
18118
|
+
{
|
|
18119
|
+
"additionalProperties": false,
|
|
18120
|
+
"properties": {
|
|
18121
|
+
"arguments": {
|
|
18122
|
+
"$ref": "#/definitions/edit.display-update-feature:input"
|
|
18123
|
+
},
|
|
18124
|
+
"name": {
|
|
18125
|
+
"$ref": "#/definitions/edit.display-update-feature"
|
|
18126
|
+
}
|
|
18127
|
+
},
|
|
18128
|
+
"required": [
|
|
18129
|
+
"name",
|
|
18130
|
+
"arguments"
|
|
18131
|
+
],
|
|
18132
|
+
"type": "object"
|
|
18133
|
+
},
|
|
18134
|
+
{
|
|
18135
|
+
"additionalProperties": false,
|
|
18136
|
+
"properties": {
|
|
18137
|
+
"arguments": {
|
|
18138
|
+
"$ref": "#/definitions/edit.update-feature:input"
|
|
18139
|
+
},
|
|
18140
|
+
"name": {
|
|
18141
|
+
"$ref": "#/definitions/edit.update-feature"
|
|
18142
|
+
}
|
|
18143
|
+
},
|
|
18144
|
+
"required": [
|
|
18145
|
+
"name",
|
|
18146
|
+
"arguments"
|
|
18147
|
+
],
|
|
18148
|
+
"type": "object"
|
|
18149
|
+
},
|
|
17441
18150
|
{
|
|
17442
18151
|
"additionalProperties": false,
|
|
17443
18152
|
"properties": {
|
|
@@ -18814,6 +19523,22 @@
|
|
|
18814
19523
|
],
|
|
18815
19524
|
"type": "object"
|
|
18816
19525
|
},
|
|
19526
|
+
{
|
|
19527
|
+
"additionalProperties": false,
|
|
19528
|
+
"properties": {
|
|
19529
|
+
"arguments": {
|
|
19530
|
+
"$ref": "#/definitions/sketching.move-point:input"
|
|
19531
|
+
},
|
|
19532
|
+
"name": {
|
|
19533
|
+
"$ref": "#/definitions/sketching.move-point"
|
|
19534
|
+
}
|
|
19535
|
+
},
|
|
19536
|
+
"required": [
|
|
19537
|
+
"name",
|
|
19538
|
+
"arguments"
|
|
19539
|
+
],
|
|
19540
|
+
"type": "object"
|
|
19541
|
+
},
|
|
18817
19542
|
{
|
|
18818
19543
|
"additionalProperties": false,
|
|
18819
19544
|
"properties": {
|
|
@@ -18830,6 +19555,22 @@
|
|
|
18830
19555
|
],
|
|
18831
19556
|
"type": "object"
|
|
18832
19557
|
},
|
|
19558
|
+
{
|
|
19559
|
+
"additionalProperties": false,
|
|
19560
|
+
"properties": {
|
|
19561
|
+
"arguments": {
|
|
19562
|
+
"$ref": "#/definitions/sketching.set-active-points:input"
|
|
19563
|
+
},
|
|
19564
|
+
"name": {
|
|
19565
|
+
"$ref": "#/definitions/sketching.set-active-points"
|
|
19566
|
+
}
|
|
19567
|
+
},
|
|
19568
|
+
"required": [
|
|
19569
|
+
"name",
|
|
19570
|
+
"arguments"
|
|
19571
|
+
],
|
|
19572
|
+
"type": "object"
|
|
19573
|
+
},
|
|
18833
19574
|
{
|
|
18834
19575
|
"additionalProperties": false,
|
|
18835
19576
|
"properties": {
|
|
@@ -18910,6 +19651,22 @@
|
|
|
18910
19651
|
],
|
|
18911
19652
|
"type": "object"
|
|
18912
19653
|
},
|
|
19654
|
+
{
|
|
19655
|
+
"additionalProperties": false,
|
|
19656
|
+
"properties": {
|
|
19657
|
+
"arguments": {
|
|
19658
|
+
"$ref": "#/definitions/system.open-url:input"
|
|
19659
|
+
},
|
|
19660
|
+
"name": {
|
|
19661
|
+
"$ref": "#/definitions/system.open-url"
|
|
19662
|
+
}
|
|
19663
|
+
},
|
|
19664
|
+
"required": [
|
|
19665
|
+
"name",
|
|
19666
|
+
"arguments"
|
|
19667
|
+
],
|
|
19668
|
+
"type": "object"
|
|
19669
|
+
},
|
|
18913
19670
|
{
|
|
18914
19671
|
"additionalProperties": false,
|
|
18915
19672
|
"properties": {
|
|
@@ -19157,6 +19914,21 @@
|
|
|
19157
19914
|
{
|
|
19158
19915
|
"$ref": "#/definitions/drawing.set-sync"
|
|
19159
19916
|
},
|
|
19917
|
+
{
|
|
19918
|
+
"$ref": "#/definitions/edit.add-feature"
|
|
19919
|
+
},
|
|
19920
|
+
{
|
|
19921
|
+
"$ref": "#/definitions/edit.delete-features"
|
|
19922
|
+
},
|
|
19923
|
+
{
|
|
19924
|
+
"$ref": "#/definitions/edit.display-add-feature"
|
|
19925
|
+
},
|
|
19926
|
+
{
|
|
19927
|
+
"$ref": "#/definitions/edit.display-update-feature"
|
|
19928
|
+
},
|
|
19929
|
+
{
|
|
19930
|
+
"$ref": "#/definitions/edit.update-feature"
|
|
19931
|
+
},
|
|
19160
19932
|
{
|
|
19161
19933
|
"$ref": "#/definitions/geocode.batch-geocode"
|
|
19162
19934
|
},
|
|
@@ -19439,9 +20211,15 @@
|
|
|
19439
20211
|
{
|
|
19440
20212
|
"$ref": "#/definitions/sketching.move-node"
|
|
19441
20213
|
},
|
|
20214
|
+
{
|
|
20215
|
+
"$ref": "#/definitions/sketching.move-point"
|
|
20216
|
+
},
|
|
19442
20217
|
{
|
|
19443
20218
|
"$ref": "#/definitions/sketching.redo"
|
|
19444
20219
|
},
|
|
20220
|
+
{
|
|
20221
|
+
"$ref": "#/definitions/sketching.set-active-points"
|
|
20222
|
+
},
|
|
19445
20223
|
{
|
|
19446
20224
|
"$ref": "#/definitions/sketching.set-geometry-mode"
|
|
19447
20225
|
},
|
|
@@ -19457,6 +20235,9 @@
|
|
|
19457
20235
|
{
|
|
19458
20236
|
"$ref": "#/definitions/system.download-file"
|
|
19459
20237
|
},
|
|
20238
|
+
{
|
|
20239
|
+
"$ref": "#/definitions/system.open-url"
|
|
20240
|
+
},
|
|
19460
20241
|
{
|
|
19461
20242
|
"$ref": "#/definitions/ui.activate"
|
|
19462
20243
|
},
|
|
@@ -19631,6 +20412,22 @@
|
|
|
19631
20412
|
],
|
|
19632
20413
|
"type": "object"
|
|
19633
20414
|
},
|
|
20415
|
+
{
|
|
20416
|
+
"additionalProperties": false,
|
|
20417
|
+
"properties": {
|
|
20418
|
+
"arguments": {
|
|
20419
|
+
"$ref": "#/definitions/edit.create-feature:input"
|
|
20420
|
+
},
|
|
20421
|
+
"name": {
|
|
20422
|
+
"$ref": "#/definitions/edit.create-feature"
|
|
20423
|
+
}
|
|
20424
|
+
},
|
|
20425
|
+
"required": [
|
|
20426
|
+
"name",
|
|
20427
|
+
"arguments"
|
|
20428
|
+
],
|
|
20429
|
+
"type": "object"
|
|
20430
|
+
},
|
|
19634
20431
|
{
|
|
19635
20432
|
"additionalProperties": false,
|
|
19636
20433
|
"properties": {
|
|
@@ -20143,6 +20940,38 @@
|
|
|
20143
20940
|
],
|
|
20144
20941
|
"type": "object"
|
|
20145
20942
|
},
|
|
20943
|
+
{
|
|
20944
|
+
"additionalProperties": false,
|
|
20945
|
+
"properties": {
|
|
20946
|
+
"arguments": {
|
|
20947
|
+
"$ref": "#/definitions/sketching.get-active-points:input"
|
|
20948
|
+
},
|
|
20949
|
+
"name": {
|
|
20950
|
+
"$ref": "#/definitions/sketching.get-active-points"
|
|
20951
|
+
}
|
|
20952
|
+
},
|
|
20953
|
+
"required": [
|
|
20954
|
+
"name",
|
|
20955
|
+
"arguments"
|
|
20956
|
+
],
|
|
20957
|
+
"type": "object"
|
|
20958
|
+
},
|
|
20959
|
+
{
|
|
20960
|
+
"additionalProperties": false,
|
|
20961
|
+
"properties": {
|
|
20962
|
+
"arguments": {
|
|
20963
|
+
"$ref": "#/definitions/sketching.get-adjacent-point:input"
|
|
20964
|
+
},
|
|
20965
|
+
"name": {
|
|
20966
|
+
"$ref": "#/definitions/sketching.get-adjacent-point"
|
|
20967
|
+
}
|
|
20968
|
+
},
|
|
20969
|
+
"required": [
|
|
20970
|
+
"name",
|
|
20971
|
+
"arguments"
|
|
20972
|
+
],
|
|
20973
|
+
"type": "object"
|
|
20974
|
+
},
|
|
20146
20975
|
{
|
|
20147
20976
|
"additionalProperties": false,
|
|
20148
20977
|
"properties": {
|
|
@@ -20387,6 +21216,9 @@
|
|
|
20387
21216
|
{
|
|
20388
21217
|
"$ref": "#/definitions/drawing.get-default-symbol3-d"
|
|
20389
21218
|
},
|
|
21219
|
+
{
|
|
21220
|
+
"$ref": "#/definitions/edit.create-feature"
|
|
21221
|
+
},
|
|
20390
21222
|
{
|
|
20391
21223
|
"$ref": "#/definitions/geolocation.get-current-state"
|
|
20392
21224
|
},
|
|
@@ -20504,9 +21336,15 @@
|
|
|
20504
21336
|
{
|
|
20505
21337
|
"$ref": "#/definitions/sketching.get-active-node"
|
|
20506
21338
|
},
|
|
21339
|
+
{
|
|
21340
|
+
"$ref": "#/definitions/sketching.get-active-points"
|
|
21341
|
+
},
|
|
20507
21342
|
{
|
|
20508
21343
|
"$ref": "#/definitions/sketching.get-active-sketch"
|
|
20509
21344
|
},
|
|
21345
|
+
{
|
|
21346
|
+
"$ref": "#/definitions/sketching.get-adjacent-point"
|
|
21347
|
+
},
|
|
20510
21348
|
{
|
|
20511
21349
|
"$ref": "#/definitions/sketching.move-geometry"
|
|
20512
21350
|
},
|