@vertigis/viewer-spec 58.22.0 → 58.23.1
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/common/HighlightModelProperties.d.ts +3 -3
- 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/common.d.ts +4 -4
- package/messaging/registry/drawing.d.ts +2 -2
- package/messaging/registry/geocode.d.ts +2 -2
- package/messaging/registry/geolocation.d.ts +2 -2
- package/messaging/registry/geometry.d.ts +7 -7
- package/messaging/registry/location-marker.d.ts +2 -2
- package/messaging/registry/map.d.ts +7 -7
- package/messaging/registry/offline.d.ts +2 -2
- package/messaging/registry/results.d.ts +6 -6
- package/messaging/registry/sketching.d.ts +15 -16
- package/messaging/registry/tasks.d.ts +3 -3
- package/messaging/schema/common-action.schema.json +926 -587
- package/messaging/schema/common-event.schema.json +551 -507
- package/messaging/schema/mobile-action.schema.json +936 -606
- package/messaging/schema/mobile-event.schema.json +618 -520
- package/messaging/schema/web-action.schema.json +1347 -787
- package/messaging/schema/web-event.schema.json +651 -523
- package/package.json +2 -2
- package/version.d.ts +1 -1
- package/version.js +1 -1
|
@@ -1,6 +1,73 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$ref": "#/definitions/viewer-spec.Action",
|
|
3
3
|
"definitions": {
|
|
4
|
+
"@arcgis.core.unionTypes.GeometryUnion": {
|
|
5
|
+
"anyOf": [
|
|
6
|
+
{
|
|
7
|
+
"$ref": "#/definitions/esri.Extent"
|
|
8
|
+
},
|
|
9
|
+
{
|
|
10
|
+
"$ref": "#/definitions/esri.Multipoint"
|
|
11
|
+
},
|
|
12
|
+
{
|
|
13
|
+
"$ref": "#/definitions/esri.Point"
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
"$ref": "#/definitions/esri.Polygon"
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
"$ref": "#/definitions/esri.Polyline"
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
"$ref": "#/definitions/esri.Mesh"
|
|
23
|
+
}
|
|
24
|
+
],
|
|
25
|
+
"description": "Union of all geometries.\n\n{@link https://developers.arcgis.com/javascript/latest/api-reference/esri-unionTypes.html#GeometryUnion Read more...}"
|
|
26
|
+
},
|
|
27
|
+
"@arcgis.core.unionTypes.SymbolUnion": {
|
|
28
|
+
"anyOf": [
|
|
29
|
+
{
|
|
30
|
+
"$ref": "#/definitions/esri.PictureFillSymbol"
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"$ref": "#/definitions/esri.PictureMarkerSymbol"
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
"$ref": "#/definitions/esri.SimpleFillSymbol"
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"$ref": "#/definitions/esri.SimpleLineSymbol"
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
"$ref": "#/definitions/esri.SimpleMarkerSymbol"
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
"$ref": "#/definitions/esri.TextSymbol"
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"$ref": "esri.CIMSymbol"
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
"$ref": "esri.LabelSymbol3D"
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
"$ref": "#/definitions/esri.LineSymbol3D"
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
"$ref": "esri.MeshSymbol3D"
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
"$ref": "#/definitions/esri.PointSymbol3D"
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
"$ref": "#/definitions/esri.PolygonSymbol3D"
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
"$ref": "esri.WebStyleSymbol"
|
|
67
|
+
}
|
|
68
|
+
],
|
|
69
|
+
"description": "Union of symbols.\n\n{@link https://developers.arcgis.com/javascript/latest/api-reference/esri-unionTypes.html#SymbolUnion Read more...}"
|
|
70
|
+
},
|
|
4
71
|
"@vertigis.arcgis-extensions.FailureMode.FailureMode": {
|
|
5
72
|
"description": "Possible modes of failure when there is an error resolving or initializing an item.",
|
|
6
73
|
"enum": [
|
|
@@ -61,7 +128,22 @@
|
|
|
61
128
|
"geometry": {
|
|
62
129
|
"anyOf": [
|
|
63
130
|
{
|
|
64
|
-
"$ref": "#/definitions/esri.
|
|
131
|
+
"$ref": "#/definitions/esri.Extent"
|
|
132
|
+
},
|
|
133
|
+
{
|
|
134
|
+
"$ref": "#/definitions/esri.Multipoint"
|
|
135
|
+
},
|
|
136
|
+
{
|
|
137
|
+
"$ref": "#/definitions/esri.Point"
|
|
138
|
+
},
|
|
139
|
+
{
|
|
140
|
+
"$ref": "#/definitions/esri.Polygon"
|
|
141
|
+
},
|
|
142
|
+
{
|
|
143
|
+
"$ref": "#/definitions/esri.Polyline"
|
|
144
|
+
},
|
|
145
|
+
{
|
|
146
|
+
"$ref": "#/definitions/esri.Mesh"
|
|
65
147
|
},
|
|
66
148
|
{
|
|
67
149
|
"$ref": "#/definitions/esri.rest-api.GeometryJson.PointJson"
|
|
@@ -235,7 +317,7 @@
|
|
|
235
317
|
"type": "string"
|
|
236
318
|
},
|
|
237
319
|
"domain": {
|
|
238
|
-
"$ref": "#/definitions/
|
|
320
|
+
"$ref": "#/definitions/DomainJson",
|
|
239
321
|
"description": "A domain object that provides the attribute domain information for the field, if a domain exists."
|
|
240
322
|
},
|
|
241
323
|
"editable": {
|
|
@@ -259,8 +341,12 @@
|
|
|
259
341
|
"type": "boolean"
|
|
260
342
|
},
|
|
261
343
|
"type": {
|
|
262
|
-
"$ref": "
|
|
344
|
+
"$ref": "FieldJsonType",
|
|
263
345
|
"description": "Type of the Field. See {@link FieldJsonType}."
|
|
346
|
+
},
|
|
347
|
+
"visible": {
|
|
348
|
+
"description": "<not in spec>.",
|
|
349
|
+
"type": "boolean"
|
|
264
350
|
}
|
|
265
351
|
},
|
|
266
352
|
"type": "object"
|
|
@@ -414,7 +500,7 @@
|
|
|
414
500
|
"type": "array"
|
|
415
501
|
},
|
|
416
502
|
"geometryType": {
|
|
417
|
-
"$ref": "
|
|
503
|
+
"$ref": "esri.rest-api.GeometryJson.GeometryJsonType",
|
|
418
504
|
"description": "See {@link data /Schema!Schema.geometryType}."
|
|
419
505
|
},
|
|
420
506
|
"primaryKeyField": {
|
|
@@ -809,7 +895,7 @@
|
|
|
809
895
|
"type": "boolean"
|
|
810
896
|
},
|
|
811
897
|
"spatialFilter": {
|
|
812
|
-
"$ref": "#/definitions
|
|
898
|
+
"$ref": "#/definitions/@arcgis.core.unionTypes.GeometryUnion",
|
|
813
899
|
"description": "Spatial filter used to filter search results. If specified, results are limited to features that intersect the geometry."
|
|
814
900
|
}
|
|
815
901
|
},
|
|
@@ -1116,7 +1202,7 @@
|
|
|
1116
1202
|
"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.",
|
|
1117
1203
|
"properties": {
|
|
1118
1204
|
"geometry": {
|
|
1119
|
-
"$ref": "#/definitions
|
|
1205
|
+
"$ref": "#/definitions/@arcgis.core.unionTypes.GeometryUnion",
|
|
1120
1206
|
"description": "The initial geometry to add the point to. Can be null."
|
|
1121
1207
|
},
|
|
1122
1208
|
"geometryType": {
|
|
@@ -1128,7 +1214,7 @@
|
|
|
1128
1214
|
"description": "Map(s) to use for the command/operation."
|
|
1129
1215
|
},
|
|
1130
1216
|
"node": {
|
|
1131
|
-
"$ref": "#/definitions
|
|
1217
|
+
"$ref": "#/definitions/@arcgis.core.unionTypes.GeometryUnion",
|
|
1132
1218
|
"description": "A point geometry to add to the initial geometry. In VertiGIS Studio Web, this value may be null if the intention is to add a point at the position of the active point of an active sketch."
|
|
1133
1219
|
},
|
|
1134
1220
|
"nodeOrder": {
|
|
@@ -1148,7 +1234,7 @@
|
|
|
1148
1234
|
"description": "Arguments for the \"sketching.add-point\" command.",
|
|
1149
1235
|
"properties": {
|
|
1150
1236
|
"geometry": {
|
|
1151
|
-
"$ref": "#/definitions
|
|
1237
|
+
"$ref": "#/definitions/@arcgis.core.unionTypes.GeometryUnion",
|
|
1152
1238
|
"description": "The geometry to add the point to, if multiple are present in an active editing session. Not supported by Mobile."
|
|
1153
1239
|
},
|
|
1154
1240
|
"maps": {
|
|
@@ -1275,7 +1361,7 @@
|
|
|
1275
1361
|
"description": "The features to which the filter effect is applied. If the 'layer' property is set, only features from that layer will be effected; otherwise, the filter effect is applied to each of the features' source layers and all other applicable layers on the 'maps' will receive the 'excludedEffect'."
|
|
1276
1362
|
},
|
|
1277
1363
|
"geometry": {
|
|
1278
|
-
"$ref": "#/definitions
|
|
1364
|
+
"$ref": "#/definitions/@arcgis.core.unionTypes.GeometryUnion",
|
|
1279
1365
|
"description": "The geometry to apply to the spatial filter. The spatial relationship, as specified by the 'spatialRelationship' property, will indicate how the geometry should be used to filter features."
|
|
1280
1366
|
},
|
|
1281
1367
|
"includedEffect": {
|
|
@@ -1389,11 +1475,26 @@
|
|
|
1389
1475
|
"geometry": {
|
|
1390
1476
|
"anyOf": [
|
|
1391
1477
|
{
|
|
1392
|
-
"$ref": "#/definitions/esri.
|
|
1478
|
+
"$ref": "#/definitions/esri.Extent"
|
|
1479
|
+
},
|
|
1480
|
+
{
|
|
1481
|
+
"$ref": "#/definitions/esri.Multipoint"
|
|
1482
|
+
},
|
|
1483
|
+
{
|
|
1484
|
+
"$ref": "#/definitions/esri.Point"
|
|
1485
|
+
},
|
|
1486
|
+
{
|
|
1487
|
+
"$ref": "#/definitions/esri.Polygon"
|
|
1488
|
+
},
|
|
1489
|
+
{
|
|
1490
|
+
"$ref": "#/definitions/esri.Polyline"
|
|
1491
|
+
},
|
|
1492
|
+
{
|
|
1493
|
+
"$ref": "#/definitions/esri.Mesh"
|
|
1393
1494
|
},
|
|
1394
1495
|
{
|
|
1395
1496
|
"items": {
|
|
1396
|
-
"$ref": "#/definitions
|
|
1497
|
+
"$ref": "#/definitions/@arcgis.core.unionTypes.GeometryUnion"
|
|
1397
1498
|
},
|
|
1398
1499
|
"type": "array"
|
|
1399
1500
|
}
|
|
@@ -1499,7 +1600,7 @@
|
|
|
1499
1600
|
"$ref": "#/definitions/esri.rest-api.SymbolJson.StyleSymbolReferenceJson"
|
|
1500
1601
|
},
|
|
1501
1602
|
{
|
|
1502
|
-
"$ref": "
|
|
1603
|
+
"$ref": "SymbolSet"
|
|
1503
1604
|
}
|
|
1504
1605
|
],
|
|
1505
1606
|
"description": "An optional symbol to use. SymbolSets are not supported by VertiGIS Studio Mobile."
|
|
@@ -1515,7 +1616,7 @@
|
|
|
1515
1616
|
"description": "Result of the \"sketching.capture-geometry\" operation.",
|
|
1516
1617
|
"properties": {
|
|
1517
1618
|
"geometry": {
|
|
1518
|
-
"$ref": "#/definitions
|
|
1619
|
+
"$ref": "#/definitions/@arcgis.core.unionTypes.GeometryUnion",
|
|
1519
1620
|
"description": "The geometry that was captured."
|
|
1520
1621
|
},
|
|
1521
1622
|
"maps": {
|
|
@@ -1523,7 +1624,7 @@
|
|
|
1523
1624
|
"description": "The map that the user sketched the geometry on. Unavailable in VertiGIS Studio Mobile."
|
|
1524
1625
|
},
|
|
1525
1626
|
"symbol": {
|
|
1526
|
-
"$ref": "#/definitions
|
|
1627
|
+
"$ref": "#/definitions/@arcgis.core.unionTypes.SymbolUnion",
|
|
1527
1628
|
"description": "The symbol that was used. Unavailable in VertiGIS Studio Web."
|
|
1528
1629
|
}
|
|
1529
1630
|
},
|
|
@@ -1628,7 +1729,7 @@
|
|
|
1628
1729
|
"description": "The coincident graphic that was included in an editing session with topological editing enabled."
|
|
1629
1730
|
},
|
|
1630
1731
|
"originalGeometry": {
|
|
1631
|
-
"$ref": "#/definitions
|
|
1732
|
+
"$ref": "#/definitions/@arcgis.core.unionTypes.GeometryUnion",
|
|
1632
1733
|
"description": "A copy of the original geometry of the Graphic, before it was edited."
|
|
1633
1734
|
}
|
|
1634
1735
|
},
|
|
@@ -1792,7 +1893,134 @@
|
|
|
1792
1893
|
"description": "Features containing geometry to create graphics from. Web only."
|
|
1793
1894
|
},
|
|
1794
1895
|
"geometry": {
|
|
1795
|
-
"
|
|
1896
|
+
"anyOf": [
|
|
1897
|
+
{
|
|
1898
|
+
"$ref": "#/definitions/CreateGraphicsResult"
|
|
1899
|
+
},
|
|
1900
|
+
{
|
|
1901
|
+
"$ref": "#/definitions/esri.Graphic"
|
|
1902
|
+
},
|
|
1903
|
+
{
|
|
1904
|
+
"$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
|
|
1905
|
+
},
|
|
1906
|
+
{
|
|
1907
|
+
"$ref": "@vertigis.arcgis-extensions.data.FeatureSet.FeatureSet"
|
|
1908
|
+
},
|
|
1909
|
+
{
|
|
1910
|
+
"$ref": "@vertigis.arcgis-extensions.data.FeatureList.FeatureList"
|
|
1911
|
+
},
|
|
1912
|
+
{
|
|
1913
|
+
"$ref": "@vertigis.arcgis-extensions.data.FeatureStream.FeatureStream"
|
|
1914
|
+
},
|
|
1915
|
+
{
|
|
1916
|
+
"items": {
|
|
1917
|
+
"anyOf": [
|
|
1918
|
+
{
|
|
1919
|
+
"$ref": "@vertigis.arcgis-extensions.data.Feature.FeatureProperties"
|
|
1920
|
+
},
|
|
1921
|
+
{
|
|
1922
|
+
"$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
|
|
1923
|
+
}
|
|
1924
|
+
]
|
|
1925
|
+
},
|
|
1926
|
+
"type": "array"
|
|
1927
|
+
},
|
|
1928
|
+
{
|
|
1929
|
+
"$ref": "#/definitions/esri.Extent"
|
|
1930
|
+
},
|
|
1931
|
+
{
|
|
1932
|
+
"$ref": "#/definitions/esri.Multipoint"
|
|
1933
|
+
},
|
|
1934
|
+
{
|
|
1935
|
+
"$ref": "#/definitions/esri.Point"
|
|
1936
|
+
},
|
|
1937
|
+
{
|
|
1938
|
+
"$ref": "#/definitions/esri.Polygon"
|
|
1939
|
+
},
|
|
1940
|
+
{
|
|
1941
|
+
"$ref": "#/definitions/esri.Polyline"
|
|
1942
|
+
},
|
|
1943
|
+
{
|
|
1944
|
+
"$ref": "#/definitions/esri.Mesh"
|
|
1945
|
+
},
|
|
1946
|
+
{
|
|
1947
|
+
"$ref": "#/definitions/esri.rest-api.FeatureJson.FeatureJson"
|
|
1948
|
+
},
|
|
1949
|
+
{
|
|
1950
|
+
"$ref": "#/definitions/esri.FeatureSet"
|
|
1951
|
+
},
|
|
1952
|
+
{
|
|
1953
|
+
"items": {
|
|
1954
|
+
"anyOf": [
|
|
1955
|
+
{
|
|
1956
|
+
"$ref": "#/definitions/esri.Graphic"
|
|
1957
|
+
},
|
|
1958
|
+
{
|
|
1959
|
+
"$ref": "#/definitions/esri.rest-api.FeatureJson.FeatureJson"
|
|
1960
|
+
}
|
|
1961
|
+
]
|
|
1962
|
+
},
|
|
1963
|
+
"type": "array"
|
|
1964
|
+
},
|
|
1965
|
+
{
|
|
1966
|
+
"$ref": "#/definitions/esri.rest-api.GeometryJson.PointJson"
|
|
1967
|
+
},
|
|
1968
|
+
{
|
|
1969
|
+
"$ref": "#/definitions/esri.rest-api.GeometryJson.MultipointJson"
|
|
1970
|
+
},
|
|
1971
|
+
{
|
|
1972
|
+
"$ref": "#/definitions/esri.rest-api.GeometryJson.PolylineJson"
|
|
1973
|
+
},
|
|
1974
|
+
{
|
|
1975
|
+
"$ref": "#/definitions/esri.rest-api.GeometryJson.PolygonJson"
|
|
1976
|
+
},
|
|
1977
|
+
{
|
|
1978
|
+
"$ref": "#/definitions/esri.rest-api.GeometryJson.ExtentJson"
|
|
1979
|
+
},
|
|
1980
|
+
{
|
|
1981
|
+
"items": {
|
|
1982
|
+
"anyOf": [
|
|
1983
|
+
{
|
|
1984
|
+
"$ref": "#/definitions/esri.Extent"
|
|
1985
|
+
},
|
|
1986
|
+
{
|
|
1987
|
+
"$ref": "#/definitions/esri.Multipoint"
|
|
1988
|
+
},
|
|
1989
|
+
{
|
|
1990
|
+
"$ref": "#/definitions/esri.Point"
|
|
1991
|
+
},
|
|
1992
|
+
{
|
|
1993
|
+
"$ref": "#/definitions/esri.Polygon"
|
|
1994
|
+
},
|
|
1995
|
+
{
|
|
1996
|
+
"$ref": "#/definitions/esri.Polyline"
|
|
1997
|
+
},
|
|
1998
|
+
{
|
|
1999
|
+
"$ref": "#/definitions/esri.Mesh"
|
|
2000
|
+
},
|
|
2001
|
+
{
|
|
2002
|
+
"$ref": "#/definitions/esri.rest-api.GeometryJson.PointJson"
|
|
2003
|
+
},
|
|
2004
|
+
{
|
|
2005
|
+
"$ref": "#/definitions/esri.rest-api.GeometryJson.MultipointJson"
|
|
2006
|
+
},
|
|
2007
|
+
{
|
|
2008
|
+
"$ref": "#/definitions/esri.rest-api.GeometryJson.PolylineJson"
|
|
2009
|
+
},
|
|
2010
|
+
{
|
|
2011
|
+
"$ref": "#/definitions/esri.rest-api.GeometryJson.PolygonJson"
|
|
2012
|
+
},
|
|
2013
|
+
{
|
|
2014
|
+
"$ref": "#/definitions/esri.rest-api.GeometryJson.ExtentJson"
|
|
2015
|
+
}
|
|
2016
|
+
]
|
|
2017
|
+
},
|
|
2018
|
+
"type": "array"
|
|
2019
|
+
},
|
|
2020
|
+
{
|
|
2021
|
+
"$ref": "#/definitions/esri.Geometry"
|
|
2022
|
+
}
|
|
2023
|
+
],
|
|
1796
2024
|
"description": "The geometry that was captured."
|
|
1797
2025
|
},
|
|
1798
2026
|
"maps": {
|
|
@@ -1802,61 +2030,70 @@
|
|
|
1802
2030
|
"symbol": {
|
|
1803
2031
|
"anyOf": [
|
|
1804
2032
|
{
|
|
1805
|
-
"$ref": "#/definitions/esri.
|
|
2033
|
+
"$ref": "#/definitions/esri.PictureFillSymbol"
|
|
1806
2034
|
},
|
|
1807
2035
|
{
|
|
1808
|
-
"$ref": "#/definitions/esri.
|
|
2036
|
+
"$ref": "#/definitions/esri.PictureMarkerSymbol"
|
|
1809
2037
|
},
|
|
1810
2038
|
{
|
|
1811
|
-
"$ref": "#/definitions/esri.
|
|
2039
|
+
"$ref": "#/definitions/esri.SimpleFillSymbol"
|
|
1812
2040
|
},
|
|
1813
2041
|
{
|
|
1814
|
-
"$ref": "#/definitions/esri.
|
|
2042
|
+
"$ref": "#/definitions/esri.SimpleLineSymbol"
|
|
1815
2043
|
},
|
|
1816
2044
|
{
|
|
1817
|
-
"$ref": "#/definitions/esri.
|
|
2045
|
+
"$ref": "#/definitions/esri.SimpleMarkerSymbol"
|
|
1818
2046
|
},
|
|
1819
2047
|
{
|
|
1820
|
-
"$ref": "#/definitions/esri.
|
|
2048
|
+
"$ref": "#/definitions/esri.TextSymbol"
|
|
1821
2049
|
},
|
|
1822
2050
|
{
|
|
1823
|
-
"$ref": "
|
|
2051
|
+
"$ref": "esri.CIMSymbol"
|
|
1824
2052
|
},
|
|
1825
2053
|
{
|
|
1826
|
-
"$ref": "
|
|
2054
|
+
"$ref": "esri.LabelSymbol3D"
|
|
1827
2055
|
},
|
|
1828
2056
|
{
|
|
1829
|
-
"$ref": "#/definitions/esri.
|
|
2057
|
+
"$ref": "#/definitions/esri.LineSymbol3D"
|
|
1830
2058
|
},
|
|
1831
2059
|
{
|
|
1832
|
-
"$ref": "
|
|
2060
|
+
"$ref": "esri.MeshSymbol3D"
|
|
1833
2061
|
},
|
|
1834
2062
|
{
|
|
1835
|
-
"$ref": "#/definitions/esri.
|
|
2063
|
+
"$ref": "#/definitions/esri.PointSymbol3D"
|
|
1836
2064
|
},
|
|
1837
2065
|
{
|
|
1838
|
-
"$ref": "#/definitions/esri.
|
|
2066
|
+
"$ref": "#/definitions/esri.PolygonSymbol3D"
|
|
1839
2067
|
},
|
|
1840
2068
|
{
|
|
1841
|
-
"$ref": "
|
|
2069
|
+
"$ref": "esri.WebStyleSymbol"
|
|
1842
2070
|
},
|
|
1843
2071
|
{
|
|
1844
|
-
"$ref": "#/definitions/esri.
|
|
2072
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.PictureFillSymbolJson"
|
|
1845
2073
|
},
|
|
1846
2074
|
{
|
|
1847
|
-
"$ref": "#/definitions/esri.
|
|
2075
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.PictureMarkerSymbolJson"
|
|
1848
2076
|
},
|
|
1849
2077
|
{
|
|
1850
|
-
"$ref": "#/definitions/esri.
|
|
2078
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.SimpleFillSymbolJson"
|
|
1851
2079
|
},
|
|
1852
2080
|
{
|
|
1853
|
-
"$ref": "#/definitions/esri.
|
|
2081
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.SimpleLineSymbolJson"
|
|
1854
2082
|
},
|
|
1855
2083
|
{
|
|
1856
|
-
"$ref": "#/definitions/esri.
|
|
2084
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.SimpleMarkerSymbolJson"
|
|
1857
2085
|
},
|
|
1858
2086
|
{
|
|
1859
|
-
"$ref": "#/definitions/esri.
|
|
2087
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.TextSymbolJson"
|
|
2088
|
+
},
|
|
2089
|
+
{
|
|
2090
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.LineSymbol3DJson"
|
|
2091
|
+
},
|
|
2092
|
+
{
|
|
2093
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.PointSymbol3DJson"
|
|
2094
|
+
},
|
|
2095
|
+
{
|
|
2096
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.PolygonSymbol3DJson"
|
|
1860
2097
|
}
|
|
1861
2098
|
],
|
|
1862
2099
|
"description": "The symbol that should be used to create the graphic. If null, a default is provided."
|
|
@@ -1910,7 +2147,7 @@
|
|
|
1910
2147
|
"type": "number"
|
|
1911
2148
|
},
|
|
1912
2149
|
"geometry": {
|
|
1913
|
-
"$ref": "#/definitions
|
|
2150
|
+
"$ref": "#/definitions/@arcgis.core.unionTypes.GeometryUnion",
|
|
1914
2151
|
"description": "The location of the Marker."
|
|
1915
2152
|
},
|
|
1916
2153
|
"heading": {
|
|
@@ -2050,6 +2287,23 @@
|
|
|
2050
2287
|
],
|
|
2051
2288
|
"type": "object"
|
|
2052
2289
|
},
|
|
2290
|
+
"DataSourceJson": {
|
|
2291
|
+
"anyOf": [
|
|
2292
|
+
{
|
|
2293
|
+
"$ref": "#/definitions/esri.rest-api.LayerDefinitionJson.JoinTableDataSourceJson"
|
|
2294
|
+
},
|
|
2295
|
+
{
|
|
2296
|
+
"$ref": "#/definitions/esri.rest-api.LayerDefinitionJson.QueryTableDataSourceJson"
|
|
2297
|
+
},
|
|
2298
|
+
{
|
|
2299
|
+
"$ref": "#/definitions/esri.rest-api.LayerDefinitionJson.RasterDataSourceJson"
|
|
2300
|
+
},
|
|
2301
|
+
{
|
|
2302
|
+
"$ref": "#/definitions/esri.rest-api.LayerDefinitionJson.TableDataSourceJson"
|
|
2303
|
+
}
|
|
2304
|
+
],
|
|
2305
|
+
"description": "This object applies if the layerDefinition source is set to DynamicDataLayer. See {@link https://developers.arcgis.com/web-map-specification/objects/dataSource/} {@link https://developers.arcgis.com/web-scene-specification/objects/dataSource/}."
|
|
2306
|
+
},
|
|
2053
2307
|
"DeactivateArgs": {
|
|
2054
2308
|
"anyOf": [
|
|
2055
2309
|
{
|
|
@@ -2094,7 +2348,7 @@
|
|
|
2094
2348
|
"description": "Arguments for the \"sketching.delete\" command.",
|
|
2095
2349
|
"properties": {
|
|
2096
2350
|
"geometry": {
|
|
2097
|
-
"$ref": "#/definitions
|
|
2351
|
+
"$ref": "#/definitions/@arcgis.core.unionTypes.GeometryUnion",
|
|
2098
2352
|
"description": "The geometry to remove a point from. If this property is not specified, any active vertices will be deleted."
|
|
2099
2353
|
},
|
|
2100
2354
|
"maps": {
|
|
@@ -2495,6 +2749,20 @@
|
|
|
2495
2749
|
},
|
|
2496
2750
|
"type": "object"
|
|
2497
2751
|
},
|
|
2752
|
+
"DomainJson": {
|
|
2753
|
+
"anyOf": [
|
|
2754
|
+
{
|
|
2755
|
+
"$ref": "#/definitions/esri.rest-api.DomainJson.CodedValueDomainJson"
|
|
2756
|
+
},
|
|
2757
|
+
{
|
|
2758
|
+
"$ref": "#/definitions/esri.rest-api.DomainJson.InheritedDomainJson"
|
|
2759
|
+
},
|
|
2760
|
+
{
|
|
2761
|
+
"$ref": "#/definitions/esri.rest-api.DomainJson.RangeDomainJson"
|
|
2762
|
+
}
|
|
2763
|
+
],
|
|
2764
|
+
"description": "A domain specifies the set of valid values for a field.\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/domain/} {@link https://developers.arcgis.com/web-scene-specification/objects/domain/}."
|
|
2765
|
+
},
|
|
2498
2766
|
"DownloadArgs": {
|
|
2499
2767
|
"additionalProperties": false,
|
|
2500
2768
|
"description": "Arguments for the system.download-file operation.",
|
|
@@ -2533,56 +2801,67 @@
|
|
|
2533
2801
|
"DrawingSymbolConfig": {
|
|
2534
2802
|
"anyOf": [
|
|
2535
2803
|
{
|
|
2536
|
-
"$ref": "#/definitions/esri.
|
|
2804
|
+
"$ref": "#/definitions/esri.PictureFillSymbol"
|
|
2537
2805
|
},
|
|
2538
2806
|
{
|
|
2539
|
-
"$ref": "#/definitions/esri.
|
|
2807
|
+
"$ref": "#/definitions/esri.PictureMarkerSymbol"
|
|
2540
2808
|
},
|
|
2541
2809
|
{
|
|
2542
|
-
"$ref": "#/definitions/esri.
|
|
2810
|
+
"$ref": "#/definitions/esri.SimpleFillSymbol"
|
|
2543
2811
|
},
|
|
2544
2812
|
{
|
|
2545
|
-
"$ref": "#/definitions/esri.
|
|
2813
|
+
"$ref": "#/definitions/esri.SimpleLineSymbol"
|
|
2546
2814
|
},
|
|
2547
2815
|
{
|
|
2548
|
-
"$ref": "#/definitions/esri.
|
|
2816
|
+
"$ref": "#/definitions/esri.SimpleMarkerSymbol"
|
|
2549
2817
|
},
|
|
2550
2818
|
{
|
|
2551
|
-
"$ref": "#/definitions/esri.
|
|
2819
|
+
"$ref": "#/definitions/esri.LineSymbol3D"
|
|
2552
2820
|
},
|
|
2553
2821
|
{
|
|
2554
|
-
"$ref": "#/definitions/esri.
|
|
2822
|
+
"$ref": "#/definitions/esri.PointSymbol3D"
|
|
2555
2823
|
},
|
|
2556
2824
|
{
|
|
2557
|
-
"$ref": "#/definitions/esri.
|
|
2825
|
+
"$ref": "#/definitions/esri.PolygonSymbol3D"
|
|
2558
2826
|
},
|
|
2559
2827
|
{
|
|
2560
|
-
"$ref": "#/definitions/esri.
|
|
2828
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.PictureFillSymbolJson"
|
|
2561
2829
|
},
|
|
2562
2830
|
{
|
|
2563
|
-
"$ref": "#/definitions/esri.
|
|
2831
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.PictureMarkerSymbolJson"
|
|
2564
2832
|
},
|
|
2565
2833
|
{
|
|
2566
|
-
"$ref": "#/definitions/esri.
|
|
2834
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.SimpleFillSymbolJson"
|
|
2567
2835
|
},
|
|
2568
2836
|
{
|
|
2569
|
-
"$ref": "#/definitions/esri.
|
|
2837
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.SimpleLineSymbolJson"
|
|
2570
2838
|
},
|
|
2571
2839
|
{
|
|
2572
|
-
"$ref": "#/definitions/esri.
|
|
2840
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.SimpleMarkerSymbolJson"
|
|
2573
2841
|
},
|
|
2574
2842
|
{
|
|
2575
|
-
"$ref": "#/definitions/esri.
|
|
2843
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.LineSymbol3DJson"
|
|
2576
2844
|
},
|
|
2577
2845
|
{
|
|
2578
|
-
"$ref": "#/definitions/esri.
|
|
2846
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.PointSymbol3DJson"
|
|
2579
2847
|
},
|
|
2580
2848
|
{
|
|
2581
|
-
"$ref": "#/definitions/esri.
|
|
2849
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.PolygonSymbol3DJson"
|
|
2582
2850
|
}
|
|
2583
2851
|
],
|
|
2584
2852
|
"description": "Symbols supported for drawing."
|
|
2585
2853
|
},
|
|
2854
|
+
"EdgesJson": {
|
|
2855
|
+
"anyOf": [
|
|
2856
|
+
{
|
|
2857
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.SketchEdgesJson"
|
|
2858
|
+
},
|
|
2859
|
+
{
|
|
2860
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.SolidEdgesJson"
|
|
2861
|
+
}
|
|
2862
|
+
],
|
|
2863
|
+
"description": "Edges describe additional styles applied to visually important edges of 3D objects."
|
|
2864
|
+
},
|
|
2586
2865
|
"EditCommandArgs": {
|
|
2587
2866
|
"additionalProperties": false,
|
|
2588
2867
|
"description": "Arguments for the \"edit.add-features\", \"edit.update-features\" and \"edit.delete-features\" commands. Web only.",
|
|
@@ -2632,25 +2911,25 @@
|
|
|
2632
2911
|
"symbol": {
|
|
2633
2912
|
"anyOf": [
|
|
2634
2913
|
{
|
|
2635
|
-
"$ref": "#/definitions/esri.
|
|
2914
|
+
"$ref": "#/definitions/esri.PictureFillSymbol"
|
|
2636
2915
|
},
|
|
2637
2916
|
{
|
|
2638
|
-
"$ref": "#/definitions/esri.
|
|
2917
|
+
"$ref": "#/definitions/esri.PictureMarkerSymbol"
|
|
2639
2918
|
},
|
|
2640
2919
|
{
|
|
2641
|
-
"$ref": "#/definitions/esri.
|
|
2920
|
+
"$ref": "#/definitions/esri.SimpleFillSymbol"
|
|
2642
2921
|
},
|
|
2643
2922
|
{
|
|
2644
2923
|
"$ref": "#/definitions/esri.SimpleLineSymbol"
|
|
2645
2924
|
},
|
|
2646
2925
|
{
|
|
2647
|
-
"$ref": "#/definitions/esri.
|
|
2926
|
+
"$ref": "#/definitions/esri.SimpleMarkerSymbol"
|
|
2648
2927
|
},
|
|
2649
2928
|
{
|
|
2650
|
-
"$ref": "#/definitions/esri.
|
|
2929
|
+
"$ref": "#/definitions/esri.TextSymbol"
|
|
2651
2930
|
},
|
|
2652
2931
|
{
|
|
2653
|
-
"$ref": "
|
|
2932
|
+
"$ref": "Symbol"
|
|
2654
2933
|
}
|
|
2655
2934
|
],
|
|
2656
2935
|
"description": "An optional symbol to use while editing."
|
|
@@ -2750,25 +3029,25 @@
|
|
|
2750
3029
|
"symbol": {
|
|
2751
3030
|
"anyOf": [
|
|
2752
3031
|
{
|
|
2753
|
-
"$ref": "#/definitions/esri.
|
|
3032
|
+
"$ref": "#/definitions/esri.PictureFillSymbol"
|
|
2754
3033
|
},
|
|
2755
3034
|
{
|
|
2756
|
-
"$ref": "#/definitions/esri.
|
|
3035
|
+
"$ref": "#/definitions/esri.PictureMarkerSymbol"
|
|
2757
3036
|
},
|
|
2758
3037
|
{
|
|
2759
|
-
"$ref": "#/definitions/esri.
|
|
3038
|
+
"$ref": "#/definitions/esri.SimpleFillSymbol"
|
|
2760
3039
|
},
|
|
2761
3040
|
{
|
|
2762
3041
|
"$ref": "#/definitions/esri.SimpleLineSymbol"
|
|
2763
3042
|
},
|
|
2764
3043
|
{
|
|
2765
|
-
"$ref": "#/definitions/esri.
|
|
3044
|
+
"$ref": "#/definitions/esri.SimpleMarkerSymbol"
|
|
2766
3045
|
},
|
|
2767
3046
|
{
|
|
2768
|
-
"$ref": "#/definitions/esri.
|
|
3047
|
+
"$ref": "#/definitions/esri.TextSymbol"
|
|
2769
3048
|
},
|
|
2770
3049
|
{
|
|
2771
|
-
"$ref": "
|
|
3050
|
+
"$ref": "Symbol"
|
|
2772
3051
|
}
|
|
2773
3052
|
],
|
|
2774
3053
|
"description": "An optional symbol to use while editing."
|
|
@@ -2849,75 +3128,75 @@
|
|
|
2849
3128
|
"type": "boolean"
|
|
2850
3129
|
},
|
|
2851
3130
|
"symbol": {
|
|
2852
|
-
"$ref": "
|
|
3131
|
+
"$ref": "SymbolLike",
|
|
2853
3132
|
"description": "The symbol to use for the command/operation."
|
|
2854
3133
|
},
|
|
2855
3134
|
"symbolPresets": {
|
|
2856
3135
|
"description": "Symbol presets that can be assigned to a graphic. If defined, these presets will override any that are configured in the DrawService.",
|
|
2857
3136
|
"items": {
|
|
2858
|
-
"$ref": "
|
|
3137
|
+
"$ref": "SymbolPresetProperties"
|
|
2859
3138
|
},
|
|
2860
3139
|
"type": "array"
|
|
2861
3140
|
},
|
|
2862
3141
|
"symbols": {
|
|
2863
3142
|
"anyOf": [
|
|
2864
3143
|
{
|
|
2865
|
-
"$ref": "#/definitions/esri.
|
|
3144
|
+
"$ref": "#/definitions/esri.PictureFillSymbol"
|
|
2866
3145
|
},
|
|
2867
3146
|
{
|
|
2868
|
-
"$ref": "#/definitions/esri.
|
|
3147
|
+
"$ref": "#/definitions/esri.PictureMarkerSymbol"
|
|
2869
3148
|
},
|
|
2870
3149
|
{
|
|
2871
|
-
"$ref": "#/definitions/esri.
|
|
3150
|
+
"$ref": "#/definitions/esri.SimpleFillSymbol"
|
|
2872
3151
|
},
|
|
2873
3152
|
{
|
|
2874
|
-
"$ref": "#/definitions/esri.
|
|
3153
|
+
"$ref": "#/definitions/esri.SimpleLineSymbol"
|
|
2875
3154
|
},
|
|
2876
3155
|
{
|
|
2877
|
-
"$ref": "#/definitions/esri.
|
|
3156
|
+
"$ref": "#/definitions/esri.SimpleMarkerSymbol"
|
|
2878
3157
|
},
|
|
2879
3158
|
{
|
|
2880
|
-
"$ref": "#/definitions/esri.
|
|
3159
|
+
"$ref": "#/definitions/esri.TextSymbol"
|
|
2881
3160
|
},
|
|
2882
3161
|
{
|
|
2883
|
-
"$ref": "#/definitions/esri.
|
|
3162
|
+
"$ref": "#/definitions/esri.LineSymbol3D"
|
|
2884
3163
|
},
|
|
2885
3164
|
{
|
|
2886
|
-
"$ref": "#/definitions/esri.
|
|
3165
|
+
"$ref": "#/definitions/esri.PointSymbol3D"
|
|
2887
3166
|
},
|
|
2888
3167
|
{
|
|
2889
|
-
"$ref": "#/definitions/esri.
|
|
3168
|
+
"$ref": "#/definitions/esri.PolygonSymbol3D"
|
|
2890
3169
|
},
|
|
2891
3170
|
{
|
|
2892
|
-
"$ref": "#/definitions/esri.
|
|
3171
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.PictureFillSymbolJson"
|
|
2893
3172
|
},
|
|
2894
3173
|
{
|
|
2895
|
-
"$ref": "#/definitions/esri.
|
|
3174
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.PictureMarkerSymbolJson"
|
|
2896
3175
|
},
|
|
2897
3176
|
{
|
|
2898
|
-
"$ref": "#/definitions/esri.
|
|
3177
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.SimpleFillSymbolJson"
|
|
2899
3178
|
},
|
|
2900
3179
|
{
|
|
2901
|
-
"$ref": "#/definitions/esri.
|
|
3180
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.SimpleLineSymbolJson"
|
|
2902
3181
|
},
|
|
2903
3182
|
{
|
|
2904
|
-
"$ref": "#/definitions/esri.
|
|
3183
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.SimpleMarkerSymbolJson"
|
|
2905
3184
|
},
|
|
2906
3185
|
{
|
|
2907
|
-
"$ref": "#/definitions/esri.
|
|
3186
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.TextSymbolJson"
|
|
2908
3187
|
},
|
|
2909
3188
|
{
|
|
2910
|
-
"$ref": "#/definitions/esri.
|
|
3189
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.LineSymbol3DJson"
|
|
2911
3190
|
},
|
|
2912
3191
|
{
|
|
2913
|
-
"$ref": "#/definitions/esri.
|
|
3192
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.PointSymbol3DJson"
|
|
2914
3193
|
},
|
|
2915
3194
|
{
|
|
2916
|
-
"$ref": "#/definitions/esri.
|
|
3195
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.PolygonSymbol3DJson"
|
|
2917
3196
|
},
|
|
2918
3197
|
{
|
|
2919
3198
|
"items": {
|
|
2920
|
-
"$ref": "
|
|
3199
|
+
"$ref": "SymbolLike"
|
|
2921
3200
|
},
|
|
2922
3201
|
"type": "array"
|
|
2923
3202
|
}
|
|
@@ -2948,68 +3227,68 @@
|
|
|
2948
3227
|
"description": "Map(s) to use for the command/operation."
|
|
2949
3228
|
},
|
|
2950
3229
|
"symbol": {
|
|
2951
|
-
"$ref": "
|
|
3230
|
+
"$ref": "SymbolLike",
|
|
2952
3231
|
"description": "The symbol to use for the command/operation."
|
|
2953
3232
|
},
|
|
2954
3233
|
"symbols": {
|
|
2955
3234
|
"anyOf": [
|
|
2956
3235
|
{
|
|
2957
|
-
"$ref": "#/definitions/esri.
|
|
3236
|
+
"$ref": "#/definitions/esri.PictureFillSymbol"
|
|
2958
3237
|
},
|
|
2959
3238
|
{
|
|
2960
|
-
"$ref": "#/definitions/esri.
|
|
3239
|
+
"$ref": "#/definitions/esri.PictureMarkerSymbol"
|
|
2961
3240
|
},
|
|
2962
3241
|
{
|
|
2963
|
-
"$ref": "#/definitions/esri.
|
|
3242
|
+
"$ref": "#/definitions/esri.SimpleFillSymbol"
|
|
2964
3243
|
},
|
|
2965
3244
|
{
|
|
2966
|
-
"$ref": "#/definitions/esri.
|
|
3245
|
+
"$ref": "#/definitions/esri.SimpleLineSymbol"
|
|
2967
3246
|
},
|
|
2968
3247
|
{
|
|
2969
|
-
"$ref": "#/definitions/esri.
|
|
3248
|
+
"$ref": "#/definitions/esri.SimpleMarkerSymbol"
|
|
2970
3249
|
},
|
|
2971
3250
|
{
|
|
2972
|
-
"$ref": "#/definitions/esri.
|
|
3251
|
+
"$ref": "#/definitions/esri.TextSymbol"
|
|
2973
3252
|
},
|
|
2974
3253
|
{
|
|
2975
|
-
"$ref": "#/definitions/esri.
|
|
3254
|
+
"$ref": "#/definitions/esri.LineSymbol3D"
|
|
2976
3255
|
},
|
|
2977
3256
|
{
|
|
2978
|
-
"$ref": "#/definitions/esri.
|
|
3257
|
+
"$ref": "#/definitions/esri.PointSymbol3D"
|
|
2979
3258
|
},
|
|
2980
3259
|
{
|
|
2981
|
-
"$ref": "#/definitions/esri.
|
|
3260
|
+
"$ref": "#/definitions/esri.PolygonSymbol3D"
|
|
2982
3261
|
},
|
|
2983
3262
|
{
|
|
2984
|
-
"$ref": "#/definitions/esri.
|
|
3263
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.PictureFillSymbolJson"
|
|
2985
3264
|
},
|
|
2986
3265
|
{
|
|
2987
|
-
"$ref": "#/definitions/esri.
|
|
3266
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.PictureMarkerSymbolJson"
|
|
2988
3267
|
},
|
|
2989
3268
|
{
|
|
2990
|
-
"$ref": "#/definitions/esri.
|
|
3269
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.SimpleFillSymbolJson"
|
|
2991
3270
|
},
|
|
2992
3271
|
{
|
|
2993
|
-
"$ref": "#/definitions/esri.
|
|
3272
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.SimpleLineSymbolJson"
|
|
2994
3273
|
},
|
|
2995
3274
|
{
|
|
2996
|
-
"$ref": "#/definitions/esri.
|
|
3275
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.SimpleMarkerSymbolJson"
|
|
2997
3276
|
},
|
|
2998
3277
|
{
|
|
2999
|
-
"$ref": "#/definitions/esri.
|
|
3278
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.TextSymbolJson"
|
|
3000
3279
|
},
|
|
3001
3280
|
{
|
|
3002
|
-
"$ref": "#/definitions/esri.
|
|
3281
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.LineSymbol3DJson"
|
|
3003
3282
|
},
|
|
3004
3283
|
{
|
|
3005
|
-
"$ref": "#/definitions/esri.
|
|
3284
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.PointSymbol3DJson"
|
|
3006
3285
|
},
|
|
3007
3286
|
{
|
|
3008
|
-
"$ref": "#/definitions/esri.
|
|
3287
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.PolygonSymbol3DJson"
|
|
3009
3288
|
},
|
|
3010
3289
|
{
|
|
3011
3290
|
"items": {
|
|
3012
|
-
"$ref": "
|
|
3291
|
+
"$ref": "SymbolLike"
|
|
3013
3292
|
},
|
|
3014
3293
|
"type": "array"
|
|
3015
3294
|
}
|
|
@@ -3068,10 +3347,27 @@
|
|
|
3068
3347
|
"$ref": "#/definitions/esri.rest-api.LayerJson.SaturateEffectFunctionJson"
|
|
3069
3348
|
},
|
|
3070
3349
|
{
|
|
3071
|
-
"$ref": "#/definitions/esri.rest-api.LayerJson.SepiaEffectFunctionJson"
|
|
3350
|
+
"$ref": "#/definitions/esri.rest-api.LayerJson.SepiaEffectFunctionJson"
|
|
3351
|
+
}
|
|
3352
|
+
],
|
|
3353
|
+
"description": "Effect functions that can be combined to build a layer effect."
|
|
3354
|
+
},
|
|
3355
|
+
"EffectJson": {
|
|
3356
|
+
"anyOf": [
|
|
3357
|
+
{
|
|
3358
|
+
"items": {
|
|
3359
|
+
"$ref": "#/definitions/esri.rest-api.LayerJson.ScaleDependentEffectJson"
|
|
3360
|
+
},
|
|
3361
|
+
"type": "array"
|
|
3362
|
+
},
|
|
3363
|
+
{
|
|
3364
|
+
"items": {
|
|
3365
|
+
"$ref": "#/definitions/EffectFunctionJson"
|
|
3366
|
+
},
|
|
3367
|
+
"type": "array"
|
|
3072
3368
|
}
|
|
3073
3369
|
],
|
|
3074
|
-
"description": "Effect functions
|
|
3370
|
+
"description": "Effect provides various filter functions to achieve different visual effects similar to how image filters (photo apps) work."
|
|
3075
3371
|
},
|
|
3076
3372
|
"EvaluateWorkflowArgs": {
|
|
3077
3373
|
"additionalProperties": false,
|
|
@@ -3124,6 +3420,17 @@
|
|
|
3124
3420
|
],
|
|
3125
3421
|
"type": "string"
|
|
3126
3422
|
},
|
|
3423
|
+
"FeatureReductionJson": {
|
|
3424
|
+
"anyOf": [
|
|
3425
|
+
{
|
|
3426
|
+
"$ref": "#/definitions/esri.rest-api.LayerDefinitionJson.FeatureReductionClusterJson"
|
|
3427
|
+
},
|
|
3428
|
+
{
|
|
3429
|
+
"$ref": "#/definitions/esri.rest-api.LayerDefinitionJson.FeatureReductionSelectionJson"
|
|
3430
|
+
}
|
|
3431
|
+
],
|
|
3432
|
+
"description": "Feature reductions declutter the screen by hiding features that would otherwise intersect with other features on screen."
|
|
3433
|
+
},
|
|
3127
3434
|
"Features": {
|
|
3128
3435
|
"anyOf": [
|
|
3129
3436
|
{
|
|
@@ -3272,6 +3579,17 @@
|
|
|
3272
3579
|
},
|
|
3273
3580
|
"type": "object"
|
|
3274
3581
|
},
|
|
3582
|
+
"FilterModeJson": {
|
|
3583
|
+
"anyOf": [
|
|
3584
|
+
{
|
|
3585
|
+
"$ref": "#/definitions/esri.rest-api.BuildingSceneLayerJson.FilterModeSolidJson"
|
|
3586
|
+
},
|
|
3587
|
+
{
|
|
3588
|
+
"$ref": "#/definitions/esri.rest-api.BuildingSceneLayerJson.FilterModeWireFrameJson"
|
|
3589
|
+
}
|
|
3590
|
+
],
|
|
3591
|
+
"description": "Filter mode represents the way elements draw when participating in a filter block."
|
|
3592
|
+
},
|
|
3275
3593
|
"FilterResultsArgs": {
|
|
3276
3594
|
"additionalProperties": false,
|
|
3277
3595
|
"description": "Arguments for the \"results.filter\" operation.",
|
|
@@ -3357,7 +3675,7 @@
|
|
|
3357
3675
|
"anyOf": [
|
|
3358
3676
|
{
|
|
3359
3677
|
"items": {
|
|
3360
|
-
"$ref": "
|
|
3678
|
+
"$ref": "esri.rest-api.GeometryJson.GeometryJsonType"
|
|
3361
3679
|
},
|
|
3362
3680
|
"type": "array"
|
|
3363
3681
|
},
|
|
@@ -3862,7 +4180,22 @@
|
|
|
3862
4180
|
"$ref": "#/definitions/HasFeatures"
|
|
3863
4181
|
},
|
|
3864
4182
|
{
|
|
3865
|
-
"$ref": "#/definitions/esri.
|
|
4183
|
+
"$ref": "#/definitions/esri.Extent"
|
|
4184
|
+
},
|
|
4185
|
+
{
|
|
4186
|
+
"$ref": "#/definitions/esri.Multipoint"
|
|
4187
|
+
},
|
|
4188
|
+
{
|
|
4189
|
+
"$ref": "#/definitions/esri.Point"
|
|
4190
|
+
},
|
|
4191
|
+
{
|
|
4192
|
+
"$ref": "#/definitions/esri.Polygon"
|
|
4193
|
+
},
|
|
4194
|
+
{
|
|
4195
|
+
"$ref": "#/definitions/esri.Polyline"
|
|
4196
|
+
},
|
|
4197
|
+
{
|
|
4198
|
+
"$ref": "#/definitions/esri.Mesh"
|
|
3866
4199
|
},
|
|
3867
4200
|
{
|
|
3868
4201
|
"$ref": "#/definitions/esri.rest-api.FeatureJson.FeatureJson"
|
|
@@ -3902,7 +4235,22 @@
|
|
|
3902
4235
|
"items": {
|
|
3903
4236
|
"anyOf": [
|
|
3904
4237
|
{
|
|
3905
|
-
"$ref": "#/definitions/esri.
|
|
4238
|
+
"$ref": "#/definitions/esri.Extent"
|
|
4239
|
+
},
|
|
4240
|
+
{
|
|
4241
|
+
"$ref": "#/definitions/esri.Multipoint"
|
|
4242
|
+
},
|
|
4243
|
+
{
|
|
4244
|
+
"$ref": "#/definitions/esri.Point"
|
|
4245
|
+
},
|
|
4246
|
+
{
|
|
4247
|
+
"$ref": "#/definitions/esri.Polygon"
|
|
4248
|
+
},
|
|
4249
|
+
{
|
|
4250
|
+
"$ref": "#/definitions/esri.Polyline"
|
|
4251
|
+
},
|
|
4252
|
+
{
|
|
4253
|
+
"$ref": "#/definitions/esri.Mesh"
|
|
3906
4254
|
},
|
|
3907
4255
|
{
|
|
3908
4256
|
"$ref": "#/definitions/esri.rest-api.GeometryJson.PointJson"
|
|
@@ -3964,6 +4312,26 @@
|
|
|
3964
4312
|
},
|
|
3965
4313
|
"type": "object"
|
|
3966
4314
|
},
|
|
4315
|
+
"GeometryJson": {
|
|
4316
|
+
"anyOf": [
|
|
4317
|
+
{
|
|
4318
|
+
"$ref": "#/definitions/esri.rest-api.GeometryJson.PointJson"
|
|
4319
|
+
},
|
|
4320
|
+
{
|
|
4321
|
+
"$ref": "#/definitions/esri.rest-api.GeometryJson.MultipointJson"
|
|
4322
|
+
},
|
|
4323
|
+
{
|
|
4324
|
+
"$ref": "#/definitions/esri.rest-api.GeometryJson.PolylineJson"
|
|
4325
|
+
},
|
|
4326
|
+
{
|
|
4327
|
+
"$ref": "#/definitions/esri.rest-api.GeometryJson.PolygonJson"
|
|
4328
|
+
},
|
|
4329
|
+
{
|
|
4330
|
+
"$ref": "#/definitions/esri.rest-api.GeometryJson.ExtentJson"
|
|
4331
|
+
}
|
|
4332
|
+
],
|
|
4333
|
+
"description": "A geometry as defined in the ArcGIS REST and web map specifications.\n\nSee {@link http://resources.arcgis.com/en/help/rest/apiref/geometry.html}. See {@link https://developers.arcgis.com/web-map-specification/objects/geometry/} {@link https://developers.arcgis.com/web-map-specification/objects/geometryType/}."
|
|
4334
|
+
},
|
|
3967
4335
|
"GeometryLike": {
|
|
3968
4336
|
"anyOf": [
|
|
3969
4337
|
{
|
|
@@ -3998,7 +4366,22 @@
|
|
|
3998
4366
|
"type": "array"
|
|
3999
4367
|
},
|
|
4000
4368
|
{
|
|
4001
|
-
"$ref": "#/definitions/esri.
|
|
4369
|
+
"$ref": "#/definitions/esri.Extent"
|
|
4370
|
+
},
|
|
4371
|
+
{
|
|
4372
|
+
"$ref": "#/definitions/esri.Multipoint"
|
|
4373
|
+
},
|
|
4374
|
+
{
|
|
4375
|
+
"$ref": "#/definitions/esri.Point"
|
|
4376
|
+
},
|
|
4377
|
+
{
|
|
4378
|
+
"$ref": "#/definitions/esri.Polygon"
|
|
4379
|
+
},
|
|
4380
|
+
{
|
|
4381
|
+
"$ref": "#/definitions/esri.Polyline"
|
|
4382
|
+
},
|
|
4383
|
+
{
|
|
4384
|
+
"$ref": "#/definitions/esri.Mesh"
|
|
4002
4385
|
},
|
|
4003
4386
|
{
|
|
4004
4387
|
"$ref": "#/definitions/esri.rest-api.FeatureJson.FeatureJson"
|
|
@@ -4038,7 +4421,22 @@
|
|
|
4038
4421
|
"items": {
|
|
4039
4422
|
"anyOf": [
|
|
4040
4423
|
{
|
|
4041
|
-
"$ref": "#/definitions/esri.
|
|
4424
|
+
"$ref": "#/definitions/esri.Extent"
|
|
4425
|
+
},
|
|
4426
|
+
{
|
|
4427
|
+
"$ref": "#/definitions/esri.Multipoint"
|
|
4428
|
+
},
|
|
4429
|
+
{
|
|
4430
|
+
"$ref": "#/definitions/esri.Point"
|
|
4431
|
+
},
|
|
4432
|
+
{
|
|
4433
|
+
"$ref": "#/definitions/esri.Polygon"
|
|
4434
|
+
},
|
|
4435
|
+
{
|
|
4436
|
+
"$ref": "#/definitions/esri.Polyline"
|
|
4437
|
+
},
|
|
4438
|
+
{
|
|
4439
|
+
"$ref": "#/definitions/esri.Mesh"
|
|
4042
4440
|
},
|
|
4043
4441
|
{
|
|
4044
4442
|
"$ref": "#/definitions/esri.rest-api.GeometryJson.PointJson"
|
|
@@ -4089,25 +4487,25 @@
|
|
|
4089
4487
|
"symbol": {
|
|
4090
4488
|
"anyOf": [
|
|
4091
4489
|
{
|
|
4092
|
-
"$ref": "#/definitions/esri.
|
|
4490
|
+
"$ref": "#/definitions/esri.PictureFillSymbol"
|
|
4093
4491
|
},
|
|
4094
4492
|
{
|
|
4095
|
-
"$ref": "#/definitions/esri.
|
|
4493
|
+
"$ref": "#/definitions/esri.PictureMarkerSymbol"
|
|
4096
4494
|
},
|
|
4097
4495
|
{
|
|
4098
|
-
"$ref": "#/definitions/esri.
|
|
4496
|
+
"$ref": "#/definitions/esri.SimpleFillSymbol"
|
|
4099
4497
|
},
|
|
4100
4498
|
{
|
|
4101
4499
|
"$ref": "#/definitions/esri.SimpleLineSymbol"
|
|
4102
4500
|
},
|
|
4103
4501
|
{
|
|
4104
|
-
"$ref": "#/definitions/esri.
|
|
4502
|
+
"$ref": "#/definitions/esri.SimpleMarkerSymbol"
|
|
4105
4503
|
},
|
|
4106
4504
|
{
|
|
4107
|
-
"$ref": "#/definitions/esri.
|
|
4505
|
+
"$ref": "#/definitions/esri.TextSymbol"
|
|
4108
4506
|
},
|
|
4109
4507
|
{
|
|
4110
|
-
"$ref": "
|
|
4508
|
+
"$ref": "Symbol"
|
|
4111
4509
|
}
|
|
4112
4510
|
],
|
|
4113
4511
|
"description": "An optional symbol to use while editing."
|
|
@@ -4261,7 +4659,7 @@
|
|
|
4261
4659
|
"description": "Result of the \"map.get-extent\" operation.",
|
|
4262
4660
|
"properties": {
|
|
4263
4661
|
"geometry": {
|
|
4264
|
-
"$ref": "#/definitions
|
|
4662
|
+
"$ref": "#/definitions/@arcgis.core.unionTypes.GeometryUnion",
|
|
4265
4663
|
"description": "The extent for the selected map."
|
|
4266
4664
|
},
|
|
4267
4665
|
"maps": {
|
|
@@ -4317,7 +4715,7 @@
|
|
|
4317
4715
|
"type": "string"
|
|
4318
4716
|
},
|
|
4319
4717
|
"geometry": {
|
|
4320
|
-
"$ref": "#/definitions
|
|
4718
|
+
"$ref": "#/definitions/@arcgis.core.unionTypes.GeometryUnion",
|
|
4321
4719
|
"description": "The geometry used to bound the retrieved markup. If not specified all markup in the selected collection will be returned."
|
|
4322
4720
|
},
|
|
4323
4721
|
"maps": {
|
|
@@ -4507,7 +4905,7 @@
|
|
|
4507
4905
|
"description": "An object that has a `symbol` property.",
|
|
4508
4906
|
"properties": {
|
|
4509
4907
|
"symbol": {
|
|
4510
|
-
"$ref": "
|
|
4908
|
+
"$ref": "SymbolLike",
|
|
4511
4909
|
"description": "The symbol to use for the command/operation."
|
|
4512
4910
|
}
|
|
4513
4911
|
},
|
|
@@ -4611,7 +5009,7 @@
|
|
|
4611
5009
|
"description": "Arguments for the \"sketching.insert-point\" command.",
|
|
4612
5010
|
"properties": {
|
|
4613
5011
|
"geometry": {
|
|
4614
|
-
"$ref": "#/definitions
|
|
5012
|
+
"$ref": "#/definitions/@arcgis.core.unionTypes.GeometryUnion",
|
|
4615
5013
|
"description": "The geometry to add the point to, if multiple are present in an active editing session. Not supported by Mobile."
|
|
4616
5014
|
},
|
|
4617
5015
|
"maps": {
|
|
@@ -4665,23 +5063,23 @@
|
|
|
4665
5063
|
"description": "The feature(s) to convert."
|
|
4666
5064
|
},
|
|
4667
5065
|
"meshSymbol": {
|
|
4668
|
-
"$ref": "#/definitions
|
|
5066
|
+
"$ref": "#/definitions/@arcgis.core.unionTypes.SymbolUnion",
|
|
4669
5067
|
"description": "Optionally a symbol to be used for mesh geometries."
|
|
4670
5068
|
},
|
|
4671
5069
|
"multipointSymbol": {
|
|
4672
|
-
"$ref": "#/definitions
|
|
5070
|
+
"$ref": "#/definitions/@arcgis.core.unionTypes.SymbolUnion",
|
|
4673
5071
|
"description": "Optionally a symbol to be used for multipoint geometries."
|
|
4674
5072
|
},
|
|
4675
5073
|
"pointSymbol": {
|
|
4676
|
-
"$ref": "#/definitions
|
|
5074
|
+
"$ref": "#/definitions/@arcgis.core.unionTypes.SymbolUnion",
|
|
4677
5075
|
"description": "Optionally a symbol to be used for point geometries."
|
|
4678
5076
|
},
|
|
4679
5077
|
"polygonSymbol": {
|
|
4680
|
-
"$ref": "#/definitions
|
|
5078
|
+
"$ref": "#/definitions/@arcgis.core.unionTypes.SymbolUnion",
|
|
4681
5079
|
"description": "Optionally a symbol to be used for polygon geometries."
|
|
4682
5080
|
},
|
|
4683
5081
|
"polylineSymbol": {
|
|
4684
|
-
"$ref": "#/definitions
|
|
5082
|
+
"$ref": "#/definitions/@arcgis.core.unionTypes.SymbolUnion",
|
|
4685
5083
|
"description": "Optionally a symbol to be used for polyline geometries."
|
|
4686
5084
|
}
|
|
4687
5085
|
},
|
|
@@ -4772,62 +5170,62 @@
|
|
|
4772
5170
|
"symbols": {
|
|
4773
5171
|
"anyOf": [
|
|
4774
5172
|
{
|
|
4775
|
-
"$ref": "#/definitions/esri.
|
|
5173
|
+
"$ref": "#/definitions/esri.PictureFillSymbol"
|
|
4776
5174
|
},
|
|
4777
5175
|
{
|
|
4778
|
-
"$ref": "#/definitions/esri.
|
|
5176
|
+
"$ref": "#/definitions/esri.PictureMarkerSymbol"
|
|
4779
5177
|
},
|
|
4780
5178
|
{
|
|
4781
|
-
"$ref": "#/definitions/esri.
|
|
5179
|
+
"$ref": "#/definitions/esri.SimpleFillSymbol"
|
|
4782
5180
|
},
|
|
4783
5181
|
{
|
|
4784
|
-
"$ref": "#/definitions/esri.
|
|
5182
|
+
"$ref": "#/definitions/esri.SimpleLineSymbol"
|
|
4785
5183
|
},
|
|
4786
5184
|
{
|
|
4787
|
-
"$ref": "#/definitions/esri.
|
|
5185
|
+
"$ref": "#/definitions/esri.SimpleMarkerSymbol"
|
|
4788
5186
|
},
|
|
4789
5187
|
{
|
|
4790
|
-
"$ref": "#/definitions/esri.
|
|
5188
|
+
"$ref": "#/definitions/esri.TextSymbol"
|
|
4791
5189
|
},
|
|
4792
5190
|
{
|
|
4793
|
-
"$ref": "#/definitions/esri.
|
|
5191
|
+
"$ref": "#/definitions/esri.LineSymbol3D"
|
|
4794
5192
|
},
|
|
4795
5193
|
{
|
|
4796
|
-
"$ref": "#/definitions/esri.
|
|
5194
|
+
"$ref": "#/definitions/esri.PointSymbol3D"
|
|
4797
5195
|
},
|
|
4798
5196
|
{
|
|
4799
|
-
"$ref": "#/definitions/esri.
|
|
5197
|
+
"$ref": "#/definitions/esri.PolygonSymbol3D"
|
|
4800
5198
|
},
|
|
4801
5199
|
{
|
|
4802
|
-
"$ref": "#/definitions/esri.
|
|
5200
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.PictureFillSymbolJson"
|
|
4803
5201
|
},
|
|
4804
5202
|
{
|
|
4805
|
-
"$ref": "#/definitions/esri.
|
|
5203
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.PictureMarkerSymbolJson"
|
|
4806
5204
|
},
|
|
4807
5205
|
{
|
|
4808
|
-
"$ref": "#/definitions/esri.
|
|
5206
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.SimpleFillSymbolJson"
|
|
4809
5207
|
},
|
|
4810
5208
|
{
|
|
4811
|
-
"$ref": "#/definitions/esri.
|
|
5209
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.SimpleLineSymbolJson"
|
|
4812
5210
|
},
|
|
4813
5211
|
{
|
|
4814
|
-
"$ref": "#/definitions/esri.
|
|
5212
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.SimpleMarkerSymbolJson"
|
|
4815
5213
|
},
|
|
4816
5214
|
{
|
|
4817
|
-
"$ref": "#/definitions/esri.
|
|
5215
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.TextSymbolJson"
|
|
4818
5216
|
},
|
|
4819
5217
|
{
|
|
4820
|
-
"$ref": "#/definitions/esri.
|
|
5218
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.LineSymbol3DJson"
|
|
4821
5219
|
},
|
|
4822
5220
|
{
|
|
4823
|
-
"$ref": "#/definitions/esri.
|
|
5221
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.PointSymbol3DJson"
|
|
4824
5222
|
},
|
|
4825
5223
|
{
|
|
4826
|
-
"$ref": "#/definitions/esri.
|
|
5224
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.PolygonSymbol3DJson"
|
|
4827
5225
|
},
|
|
4828
5226
|
{
|
|
4829
5227
|
"items": {
|
|
4830
|
-
"$ref": "
|
|
5228
|
+
"$ref": "SymbolLike"
|
|
4831
5229
|
},
|
|
4832
5230
|
"type": "array"
|
|
4833
5231
|
}
|
|
@@ -5059,22 +5457,22 @@
|
|
|
5059
5457
|
"MarkerSymbolConfig": {
|
|
5060
5458
|
"anyOf": [
|
|
5061
5459
|
{
|
|
5062
|
-
"$ref": "#/definitions/esri.
|
|
5460
|
+
"$ref": "#/definitions/esri.PictureMarkerSymbol"
|
|
5063
5461
|
},
|
|
5064
5462
|
{
|
|
5065
|
-
"$ref": "#/definitions/esri.
|
|
5463
|
+
"$ref": "#/definitions/esri.SimpleMarkerSymbol"
|
|
5066
5464
|
},
|
|
5067
5465
|
{
|
|
5068
|
-
"$ref": "#/definitions/esri.
|
|
5466
|
+
"$ref": "#/definitions/esri.TextSymbol"
|
|
5069
5467
|
},
|
|
5070
5468
|
{
|
|
5071
|
-
"$ref": "#/definitions/esri.
|
|
5469
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.PictureMarkerSymbolJson"
|
|
5072
5470
|
},
|
|
5073
5471
|
{
|
|
5074
|
-
"$ref": "#/definitions/esri.
|
|
5472
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.SimpleMarkerSymbolJson"
|
|
5075
5473
|
},
|
|
5076
5474
|
{
|
|
5077
|
-
"$ref": "#/definitions/esri.
|
|
5475
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.TextSymbolJson"
|
|
5078
5476
|
}
|
|
5079
5477
|
],
|
|
5080
5478
|
"description": "Symbols that can be used for location markers."
|
|
@@ -5175,25 +5573,25 @@
|
|
|
5175
5573
|
"symbol": {
|
|
5176
5574
|
"anyOf": [
|
|
5177
5575
|
{
|
|
5178
|
-
"$ref": "#/definitions/esri.
|
|
5576
|
+
"$ref": "#/definitions/esri.PictureFillSymbol"
|
|
5179
5577
|
},
|
|
5180
5578
|
{
|
|
5181
|
-
"$ref": "#/definitions/esri.
|
|
5579
|
+
"$ref": "#/definitions/esri.PictureMarkerSymbol"
|
|
5182
5580
|
},
|
|
5183
5581
|
{
|
|
5184
|
-
"$ref": "#/definitions/esri.
|
|
5582
|
+
"$ref": "#/definitions/esri.SimpleFillSymbol"
|
|
5185
5583
|
},
|
|
5186
5584
|
{
|
|
5187
5585
|
"$ref": "#/definitions/esri.SimpleLineSymbol"
|
|
5188
5586
|
},
|
|
5189
5587
|
{
|
|
5190
|
-
"$ref": "#/definitions/esri.
|
|
5588
|
+
"$ref": "#/definitions/esri.SimpleMarkerSymbol"
|
|
5191
5589
|
},
|
|
5192
5590
|
{
|
|
5193
|
-
"$ref": "#/definitions/esri.
|
|
5591
|
+
"$ref": "#/definitions/esri.TextSymbol"
|
|
5194
5592
|
},
|
|
5195
5593
|
{
|
|
5196
|
-
"$ref": "
|
|
5594
|
+
"$ref": "Symbol"
|
|
5197
5595
|
}
|
|
5198
5596
|
],
|
|
5199
5597
|
"description": "An optional symbol to use while editing."
|
|
@@ -5221,7 +5619,7 @@
|
|
|
5221
5619
|
"description": "The point to move, which must already exist within the active sketch. If not provided, the active point will be used."
|
|
5222
5620
|
},
|
|
5223
5621
|
"position": {
|
|
5224
|
-
"$ref": "#/definitions
|
|
5622
|
+
"$ref": "#/definitions/@arcgis.core.unionTypes.GeometryUnion",
|
|
5225
5623
|
"description": "The new position for the point."
|
|
5226
5624
|
}
|
|
5227
5625
|
},
|
|
@@ -5239,7 +5637,7 @@
|
|
|
5239
5637
|
"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."
|
|
5240
5638
|
},
|
|
5241
5639
|
"geometry": {
|
|
5242
|
-
"$ref": "#/definitions
|
|
5640
|
+
"$ref": "#/definitions/@arcgis.core.unionTypes.GeometryUnion",
|
|
5243
5641
|
"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."
|
|
5244
5642
|
},
|
|
5245
5643
|
"maps": {
|
|
@@ -5615,11 +6013,26 @@
|
|
|
5615
6013
|
"geometries": {
|
|
5616
6014
|
"anyOf": [
|
|
5617
6015
|
{
|
|
5618
|
-
"$ref": "#/definitions/esri.
|
|
6016
|
+
"$ref": "#/definitions/esri.Extent"
|
|
6017
|
+
},
|
|
6018
|
+
{
|
|
6019
|
+
"$ref": "#/definitions/esri.Multipoint"
|
|
6020
|
+
},
|
|
6021
|
+
{
|
|
6022
|
+
"$ref": "#/definitions/esri.Point"
|
|
6023
|
+
},
|
|
6024
|
+
{
|
|
6025
|
+
"$ref": "#/definitions/esri.Polygon"
|
|
6026
|
+
},
|
|
6027
|
+
{
|
|
6028
|
+
"$ref": "#/definitions/esri.Polyline"
|
|
6029
|
+
},
|
|
6030
|
+
{
|
|
6031
|
+
"$ref": "#/definitions/esri.Mesh"
|
|
5619
6032
|
},
|
|
5620
6033
|
{
|
|
5621
6034
|
"items": {
|
|
5622
|
-
"$ref": "#/definitions
|
|
6035
|
+
"$ref": "#/definitions/@arcgis.core.unionTypes.GeometryUnion"
|
|
5623
6036
|
},
|
|
5624
6037
|
"type": "array"
|
|
5625
6038
|
}
|
|
@@ -5631,7 +6044,7 @@
|
|
|
5631
6044
|
"description": "The target spatial reference."
|
|
5632
6045
|
},
|
|
5633
6046
|
"transformation": {
|
|
5634
|
-
"$ref": "
|
|
6047
|
+
"$ref": "esri.supportGeographicTransformation",
|
|
5635
6048
|
"description": "The geographic transformation which contains the steps to transform the input spatial reference to the output spatial reference."
|
|
5636
6049
|
}
|
|
5637
6050
|
},
|
|
@@ -5820,6 +6233,47 @@
|
|
|
5820
6233
|
},
|
|
5821
6234
|
"type": "object"
|
|
5822
6235
|
},
|
|
6236
|
+
"RendererJson": {
|
|
6237
|
+
"anyOf": [
|
|
6238
|
+
{
|
|
6239
|
+
"$ref": "#/definitions/esri.rest-api.RendererJson.ClassBreaksRendererJson"
|
|
6240
|
+
},
|
|
6241
|
+
{
|
|
6242
|
+
"$ref": "#/definitions/esri.rest-api.RendererJson.HeatmapRendererJson"
|
|
6243
|
+
},
|
|
6244
|
+
{
|
|
6245
|
+
"$ref": "#/definitions/esri.rest-api.RendererJson.PointCloudClassBreaksRendererJson"
|
|
6246
|
+
},
|
|
6247
|
+
{
|
|
6248
|
+
"$ref": "#/definitions/esri.rest-api.RendererJson.PointCloudRGBRendererJson"
|
|
6249
|
+
},
|
|
6250
|
+
{
|
|
6251
|
+
"$ref": "#/definitions/esri.rest-api.RendererJson.PointCloudStretchRendererJson"
|
|
6252
|
+
},
|
|
6253
|
+
{
|
|
6254
|
+
"$ref": "#/definitions/esri.rest-api.RendererJson.PointCloudUniqueValueRendererJson"
|
|
6255
|
+
},
|
|
6256
|
+
{
|
|
6257
|
+
"$ref": "#/definitions/esri.rest-api.RendererJson.PredominanceRendererJson"
|
|
6258
|
+
},
|
|
6259
|
+
{
|
|
6260
|
+
"$ref": "#/definitions/esri.rest-api.RendererJson.SimpleRendererJson"
|
|
6261
|
+
},
|
|
6262
|
+
{
|
|
6263
|
+
"$ref": "#/definitions/esri.rest-api.RendererJson.TemporalRendererJson"
|
|
6264
|
+
},
|
|
6265
|
+
{
|
|
6266
|
+
"$ref": "#/definitions/esri.rest-api.RendererJson.UniqueValueFromStyleRendererJson"
|
|
6267
|
+
},
|
|
6268
|
+
{
|
|
6269
|
+
"$ref": "#/definitions/esri.rest-api.RendererJson.UniqueValueRendererJson"
|
|
6270
|
+
},
|
|
6271
|
+
{
|
|
6272
|
+
"$ref": "#/definitions/esri.rest-api.RendererJson.VectorFieldRendererJson"
|
|
6273
|
+
}
|
|
6274
|
+
],
|
|
6275
|
+
"description": "A renderer.\n\nPart of the ArcGIS REST API (see http://resources.arcgis.com/en/help/rest/apiref/renderer.html)."
|
|
6276
|
+
},
|
|
5823
6277
|
"RepeatActionArgs": {
|
|
5824
6278
|
"additionalProperties": false,
|
|
5825
6279
|
"description": "Arguments for the system.repeat-action command.",
|
|
@@ -5873,7 +6327,7 @@
|
|
|
5873
6327
|
"description": "Arguments for the \"geocode.reverse-geocode\" operation.",
|
|
5874
6328
|
"properties": {
|
|
5875
6329
|
"geometry": {
|
|
5876
|
-
"$ref": "#/definitions
|
|
6330
|
+
"$ref": "#/definitions/@arcgis.core.unionTypes.GeometryUnion",
|
|
5877
6331
|
"description": "The location to look up."
|
|
5878
6332
|
},
|
|
5879
6333
|
"options": {
|
|
@@ -5922,25 +6376,25 @@
|
|
|
5922
6376
|
"symbol": {
|
|
5923
6377
|
"anyOf": [
|
|
5924
6378
|
{
|
|
5925
|
-
"$ref": "#/definitions/esri.
|
|
6379
|
+
"$ref": "#/definitions/esri.PictureFillSymbol"
|
|
5926
6380
|
},
|
|
5927
6381
|
{
|
|
5928
|
-
"$ref": "#/definitions/esri.
|
|
6382
|
+
"$ref": "#/definitions/esri.PictureMarkerSymbol"
|
|
5929
6383
|
},
|
|
5930
6384
|
{
|
|
5931
|
-
"$ref": "#/definitions/esri.
|
|
6385
|
+
"$ref": "#/definitions/esri.SimpleFillSymbol"
|
|
5932
6386
|
},
|
|
5933
6387
|
{
|
|
5934
6388
|
"$ref": "#/definitions/esri.SimpleLineSymbol"
|
|
5935
6389
|
},
|
|
5936
6390
|
{
|
|
5937
|
-
"$ref": "#/definitions/esri.
|
|
6391
|
+
"$ref": "#/definitions/esri.SimpleMarkerSymbol"
|
|
5938
6392
|
},
|
|
5939
6393
|
{
|
|
5940
|
-
"$ref": "#/definitions/esri.
|
|
6394
|
+
"$ref": "#/definitions/esri.TextSymbol"
|
|
5941
6395
|
},
|
|
5942
6396
|
{
|
|
5943
|
-
"$ref": "
|
|
6397
|
+
"$ref": "Symbol"
|
|
5944
6398
|
}
|
|
5945
6399
|
],
|
|
5946
6400
|
"description": "An optional symbol to use while editing."
|
|
@@ -6297,25 +6751,25 @@
|
|
|
6297
6751
|
"symbol": {
|
|
6298
6752
|
"anyOf": [
|
|
6299
6753
|
{
|
|
6300
|
-
"$ref": "#/definitions/esri.
|
|
6754
|
+
"$ref": "#/definitions/esri.PictureFillSymbol"
|
|
6301
6755
|
},
|
|
6302
6756
|
{
|
|
6303
|
-
"$ref": "#/definitions/esri.
|
|
6757
|
+
"$ref": "#/definitions/esri.PictureMarkerSymbol"
|
|
6304
6758
|
},
|
|
6305
6759
|
{
|
|
6306
|
-
"$ref": "#/definitions/esri.
|
|
6760
|
+
"$ref": "#/definitions/esri.SimpleFillSymbol"
|
|
6307
6761
|
},
|
|
6308
6762
|
{
|
|
6309
6763
|
"$ref": "#/definitions/esri.SimpleLineSymbol"
|
|
6310
6764
|
},
|
|
6311
6765
|
{
|
|
6312
|
-
"$ref": "#/definitions/esri.
|
|
6766
|
+
"$ref": "#/definitions/esri.SimpleMarkerSymbol"
|
|
6313
6767
|
},
|
|
6314
6768
|
{
|
|
6315
|
-
"$ref": "#/definitions/esri.
|
|
6769
|
+
"$ref": "#/definitions/esri.TextSymbol"
|
|
6316
6770
|
},
|
|
6317
6771
|
{
|
|
6318
|
-
"$ref": "
|
|
6772
|
+
"$ref": "Symbol"
|
|
6319
6773
|
}
|
|
6320
6774
|
],
|
|
6321
6775
|
"description": "An optional symbol to use while editing."
|
|
@@ -6359,7 +6813,7 @@
|
|
|
6359
6813
|
"description": "The spatial reference for the returned geometry. Not supported in VertiGIS Studio Mobile."
|
|
6360
6814
|
},
|
|
6361
6815
|
"searchArea": {
|
|
6362
|
-
"$ref": "#/definitions
|
|
6816
|
+
"$ref": "#/definitions/@arcgis.core.unionTypes.GeometryUnion",
|
|
6363
6817
|
"description": "If specified, results are limited to features that intersect the geometry. This property is required in VertiGIS Studio Mobile."
|
|
6364
6818
|
},
|
|
6365
6819
|
"searchText": {
|
|
@@ -6406,7 +6860,7 @@
|
|
|
6406
6860
|
"description": "The arguments for the \"sketching.set-active-points\" command.",
|
|
6407
6861
|
"properties": {
|
|
6408
6862
|
"geometry": {
|
|
6409
|
-
"$ref": "#/definitions
|
|
6863
|
+
"$ref": "#/definitions/@arcgis.core.unionTypes.GeometryUnion",
|
|
6410
6864
|
"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."
|
|
6411
6865
|
},
|
|
6412
6866
|
"maps": {
|
|
@@ -6733,68 +7187,68 @@
|
|
|
6733
7187
|
"description": "Map(s) to use for the command/operation."
|
|
6734
7188
|
},
|
|
6735
7189
|
"symbol": {
|
|
6736
|
-
"$ref": "
|
|
7190
|
+
"$ref": "SymbolLike",
|
|
6737
7191
|
"description": "The symbol to use for the command/operation."
|
|
6738
7192
|
},
|
|
6739
7193
|
"symbols": {
|
|
6740
7194
|
"anyOf": [
|
|
6741
7195
|
{
|
|
6742
|
-
"$ref": "#/definitions/esri.
|
|
7196
|
+
"$ref": "#/definitions/esri.PictureFillSymbol"
|
|
6743
7197
|
},
|
|
6744
7198
|
{
|
|
6745
|
-
"$ref": "#/definitions/esri.
|
|
7199
|
+
"$ref": "#/definitions/esri.PictureMarkerSymbol"
|
|
6746
7200
|
},
|
|
6747
7201
|
{
|
|
6748
|
-
"$ref": "#/definitions/esri.
|
|
7202
|
+
"$ref": "#/definitions/esri.SimpleFillSymbol"
|
|
6749
7203
|
},
|
|
6750
7204
|
{
|
|
6751
|
-
"$ref": "#/definitions/esri.
|
|
7205
|
+
"$ref": "#/definitions/esri.SimpleLineSymbol"
|
|
6752
7206
|
},
|
|
6753
7207
|
{
|
|
6754
|
-
"$ref": "#/definitions/esri.
|
|
7208
|
+
"$ref": "#/definitions/esri.SimpleMarkerSymbol"
|
|
6755
7209
|
},
|
|
6756
7210
|
{
|
|
6757
|
-
"$ref": "#/definitions/esri.
|
|
7211
|
+
"$ref": "#/definitions/esri.TextSymbol"
|
|
6758
7212
|
},
|
|
6759
7213
|
{
|
|
6760
|
-
"$ref": "#/definitions/esri.
|
|
7214
|
+
"$ref": "#/definitions/esri.LineSymbol3D"
|
|
6761
7215
|
},
|
|
6762
7216
|
{
|
|
6763
|
-
"$ref": "#/definitions/esri.
|
|
7217
|
+
"$ref": "#/definitions/esri.PointSymbol3D"
|
|
6764
7218
|
},
|
|
6765
7219
|
{
|
|
6766
|
-
"$ref": "#/definitions/esri.
|
|
7220
|
+
"$ref": "#/definitions/esri.PolygonSymbol3D"
|
|
6767
7221
|
},
|
|
6768
7222
|
{
|
|
6769
|
-
"$ref": "#/definitions/esri.
|
|
7223
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.PictureFillSymbolJson"
|
|
6770
7224
|
},
|
|
6771
7225
|
{
|
|
6772
|
-
"$ref": "#/definitions/esri.
|
|
7226
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.PictureMarkerSymbolJson"
|
|
6773
7227
|
},
|
|
6774
7228
|
{
|
|
6775
|
-
"$ref": "#/definitions/esri.
|
|
7229
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.SimpleFillSymbolJson"
|
|
6776
7230
|
},
|
|
6777
7231
|
{
|
|
6778
|
-
"$ref": "#/definitions/esri.
|
|
7232
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.SimpleLineSymbolJson"
|
|
6779
7233
|
},
|
|
6780
7234
|
{
|
|
6781
|
-
"$ref": "#/definitions/esri.
|
|
7235
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.SimpleMarkerSymbolJson"
|
|
6782
7236
|
},
|
|
6783
7237
|
{
|
|
6784
|
-
"$ref": "#/definitions/esri.
|
|
7238
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.TextSymbolJson"
|
|
6785
7239
|
},
|
|
6786
7240
|
{
|
|
6787
|
-
"$ref": "#/definitions/esri.
|
|
7241
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.LineSymbol3DJson"
|
|
6788
7242
|
},
|
|
6789
7243
|
{
|
|
6790
|
-
"$ref": "#/definitions/esri.
|
|
7244
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.PointSymbol3DJson"
|
|
6791
7245
|
},
|
|
6792
7246
|
{
|
|
6793
|
-
"$ref": "#/definitions/esri.
|
|
7247
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.PolygonSymbol3DJson"
|
|
6794
7248
|
},
|
|
6795
7249
|
{
|
|
6796
7250
|
"items": {
|
|
6797
|
-
"$ref": "
|
|
7251
|
+
"$ref": "SymbolLike"
|
|
6798
7252
|
},
|
|
6799
7253
|
"type": "array"
|
|
6800
7254
|
}
|
|
@@ -7287,7 +7741,7 @@
|
|
|
7287
7741
|
"description": "The arguments for the tasks.supports-identify operation.",
|
|
7288
7742
|
"properties": {
|
|
7289
7743
|
"geometry": {
|
|
7290
|
-
"$ref": "#/definitions
|
|
7744
|
+
"$ref": "#/definitions/@arcgis.core.unionTypes.GeometryUnion",
|
|
7291
7745
|
"description": "The geometry to identify by."
|
|
7292
7746
|
},
|
|
7293
7747
|
"options": {
|
|
@@ -7336,6 +7790,58 @@
|
|
|
7336
7790
|
],
|
|
7337
7791
|
"type": "object"
|
|
7338
7792
|
},
|
|
7793
|
+
"Symbol2DJson": {
|
|
7794
|
+
"anyOf": [
|
|
7795
|
+
{
|
|
7796
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.CIMSymbolJson"
|
|
7797
|
+
},
|
|
7798
|
+
{
|
|
7799
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.PictureFillSymbolJson"
|
|
7800
|
+
},
|
|
7801
|
+
{
|
|
7802
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.PictureMarkerSymbolJson"
|
|
7803
|
+
},
|
|
7804
|
+
{
|
|
7805
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.SimpleFillSymbolJson"
|
|
7806
|
+
},
|
|
7807
|
+
{
|
|
7808
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.SimpleLineSymbolJson"
|
|
7809
|
+
},
|
|
7810
|
+
{
|
|
7811
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.SimpleMarkerSymbolJson"
|
|
7812
|
+
},
|
|
7813
|
+
{
|
|
7814
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.TextSymbolJson"
|
|
7815
|
+
}
|
|
7816
|
+
],
|
|
7817
|
+
"description": "Symbol types used in web maps."
|
|
7818
|
+
},
|
|
7819
|
+
"Symbol3DJson": {
|
|
7820
|
+
"anyOf": [
|
|
7821
|
+
{
|
|
7822
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.CIMSymbolJson"
|
|
7823
|
+
},
|
|
7824
|
+
{
|
|
7825
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.LabelSymbol3DJson"
|
|
7826
|
+
},
|
|
7827
|
+
{
|
|
7828
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.LineSymbol3DJson"
|
|
7829
|
+
},
|
|
7830
|
+
{
|
|
7831
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.MeshSymbol3DJson"
|
|
7832
|
+
},
|
|
7833
|
+
{
|
|
7834
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.PointSymbol3DJson"
|
|
7835
|
+
},
|
|
7836
|
+
{
|
|
7837
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.PolygonSymbol3DJson"
|
|
7838
|
+
},
|
|
7839
|
+
{
|
|
7840
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.StyleSymbolReferenceJson"
|
|
7841
|
+
}
|
|
7842
|
+
],
|
|
7843
|
+
"description": "Symbol types used in web scenes."
|
|
7844
|
+
},
|
|
7339
7845
|
"SymbolGeometryType": {
|
|
7340
7846
|
"description": "The type of geometry that a given symbol can symbolize.",
|
|
7341
7847
|
"enum": [
|
|
@@ -7346,8 +7852,11 @@
|
|
|
7346
7852
|
],
|
|
7347
7853
|
"type": "string"
|
|
7348
7854
|
},
|
|
7349
|
-
"
|
|
7855
|
+
"SymbolJson": {
|
|
7350
7856
|
"anyOf": [
|
|
7857
|
+
{
|
|
7858
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.CIMSymbolJson"
|
|
7859
|
+
},
|
|
7351
7860
|
{
|
|
7352
7861
|
"$ref": "#/definitions/esri.rest-api.SymbolJson.PictureFillSymbolJson"
|
|
7353
7862
|
},
|
|
@@ -7366,9 +7875,15 @@
|
|
|
7366
7875
|
{
|
|
7367
7876
|
"$ref": "#/definitions/esri.rest-api.SymbolJson.TextSymbolJson"
|
|
7368
7877
|
},
|
|
7878
|
+
{
|
|
7879
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.LabelSymbol3DJson"
|
|
7880
|
+
},
|
|
7369
7881
|
{
|
|
7370
7882
|
"$ref": "#/definitions/esri.rest-api.SymbolJson.LineSymbol3DJson"
|
|
7371
7883
|
},
|
|
7884
|
+
{
|
|
7885
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.MeshSymbol3DJson"
|
|
7886
|
+
},
|
|
7372
7887
|
{
|
|
7373
7888
|
"$ref": "#/definitions/esri.rest-api.SymbolJson.PointSymbol3DJson"
|
|
7374
7889
|
},
|
|
@@ -7376,31 +7891,66 @@
|
|
|
7376
7891
|
"$ref": "#/definitions/esri.rest-api.SymbolJson.PolygonSymbol3DJson"
|
|
7377
7892
|
},
|
|
7378
7893
|
{
|
|
7379
|
-
"$ref": "#/definitions/esri.
|
|
7894
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.StyleSymbolReferenceJson"
|
|
7895
|
+
}
|
|
7896
|
+
],
|
|
7897
|
+
"description": "A symbol representing a feature on the map.\n\nPart of the Esri ArcGIS REST API (see http://resources.arcgis.com/en/help/rest/apiref/symbol.html). See {@link https://developers.arcgis.com/web-map-specification/objects/symbol/}."
|
|
7898
|
+
},
|
|
7899
|
+
"SymbolLike": {
|
|
7900
|
+
"anyOf": [
|
|
7901
|
+
{
|
|
7902
|
+
"$ref": "#/definitions/esri.PictureFillSymbol"
|
|
7380
7903
|
},
|
|
7381
7904
|
{
|
|
7382
7905
|
"$ref": "#/definitions/esri.PictureMarkerSymbol"
|
|
7383
7906
|
},
|
|
7384
7907
|
{
|
|
7385
|
-
"$ref": "#/definitions/esri.
|
|
7908
|
+
"$ref": "#/definitions/esri.SimpleFillSymbol"
|
|
7386
7909
|
},
|
|
7387
7910
|
{
|
|
7388
|
-
"$ref": "#/definitions/esri.
|
|
7911
|
+
"$ref": "#/definitions/esri.SimpleLineSymbol"
|
|
7389
7912
|
},
|
|
7390
7913
|
{
|
|
7391
|
-
"$ref": "#/definitions/esri.
|
|
7914
|
+
"$ref": "#/definitions/esri.SimpleMarkerSymbol"
|
|
7392
7915
|
},
|
|
7393
7916
|
{
|
|
7394
|
-
"$ref": "#/definitions/esri.
|
|
7917
|
+
"$ref": "#/definitions/esri.TextSymbol"
|
|
7395
7918
|
},
|
|
7396
7919
|
{
|
|
7397
7920
|
"$ref": "#/definitions/esri.LineSymbol3D"
|
|
7398
7921
|
},
|
|
7922
|
+
{
|
|
7923
|
+
"$ref": "#/definitions/esri.PointSymbol3D"
|
|
7924
|
+
},
|
|
7399
7925
|
{
|
|
7400
7926
|
"$ref": "#/definitions/esri.PolygonSymbol3D"
|
|
7401
7927
|
},
|
|
7402
7928
|
{
|
|
7403
|
-
"$ref": "#/definitions/esri.
|
|
7929
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.PictureFillSymbolJson"
|
|
7930
|
+
},
|
|
7931
|
+
{
|
|
7932
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.PictureMarkerSymbolJson"
|
|
7933
|
+
},
|
|
7934
|
+
{
|
|
7935
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.SimpleFillSymbolJson"
|
|
7936
|
+
},
|
|
7937
|
+
{
|
|
7938
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.SimpleLineSymbolJson"
|
|
7939
|
+
},
|
|
7940
|
+
{
|
|
7941
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.SimpleMarkerSymbolJson"
|
|
7942
|
+
},
|
|
7943
|
+
{
|
|
7944
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.TextSymbolJson"
|
|
7945
|
+
},
|
|
7946
|
+
{
|
|
7947
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.LineSymbol3DJson"
|
|
7948
|
+
},
|
|
7949
|
+
{
|
|
7950
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.PointSymbol3DJson"
|
|
7951
|
+
},
|
|
7952
|
+
{
|
|
7953
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.PolygonSymbol3DJson"
|
|
7404
7954
|
}
|
|
7405
7955
|
],
|
|
7406
7956
|
"description": "Symbols supported for drawing."
|
|
@@ -7414,7 +7964,7 @@
|
|
|
7414
7964
|
"type": "string"
|
|
7415
7965
|
},
|
|
7416
7966
|
"geometryType": {
|
|
7417
|
-
"$ref": "
|
|
7967
|
+
"$ref": "SymbolGeometryType",
|
|
7418
7968
|
"description": "The geometry type associated with the symbol."
|
|
7419
7969
|
},
|
|
7420
7970
|
"id": {
|
|
@@ -7422,7 +7972,7 @@
|
|
|
7422
7972
|
"type": "string"
|
|
7423
7973
|
},
|
|
7424
7974
|
"symbol": {
|
|
7425
|
-
"$ref": "
|
|
7975
|
+
"$ref": "SymbolLike",
|
|
7426
7976
|
"description": "The Symbol."
|
|
7427
7977
|
},
|
|
7428
7978
|
"title": {
|
|
@@ -7443,10 +7993,10 @@
|
|
|
7443
7993
|
"lineSymbol": {
|
|
7444
7994
|
"anyOf": [
|
|
7445
7995
|
{
|
|
7446
|
-
"$ref": "#/definitions/esri.
|
|
7996
|
+
"$ref": "#/definitions/esri.SimpleLineSymbol"
|
|
7447
7997
|
},
|
|
7448
7998
|
{
|
|
7449
|
-
"$ref": "#/definitions/esri.
|
|
7999
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.SimpleLineSymbolJson"
|
|
7450
8000
|
}
|
|
7451
8001
|
],
|
|
7452
8002
|
"description": "The symbol used to draw lines."
|
|
@@ -7454,10 +8004,10 @@
|
|
|
7454
8004
|
"lineSymbol3D": {
|
|
7455
8005
|
"anyOf": [
|
|
7456
8006
|
{
|
|
7457
|
-
"$ref": "#/definitions/esri.
|
|
8007
|
+
"$ref": "#/definitions/esri.LineSymbol3D"
|
|
7458
8008
|
},
|
|
7459
8009
|
{
|
|
7460
|
-
"$ref": "#/definitions/esri.
|
|
8010
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.LineSymbol3DJson"
|
|
7461
8011
|
}
|
|
7462
8012
|
],
|
|
7463
8013
|
"description": "The symbol used to draw 3D lines."
|
|
@@ -7465,16 +8015,16 @@
|
|
|
7465
8015
|
"pointSymbol": {
|
|
7466
8016
|
"anyOf": [
|
|
7467
8017
|
{
|
|
7468
|
-
"$ref": "#/definitions/esri.
|
|
8018
|
+
"$ref": "#/definitions/esri.PictureMarkerSymbol"
|
|
7469
8019
|
},
|
|
7470
8020
|
{
|
|
7471
|
-
"$ref": "#/definitions/esri.
|
|
8021
|
+
"$ref": "#/definitions/esri.SimpleMarkerSymbol"
|
|
7472
8022
|
},
|
|
7473
8023
|
{
|
|
7474
|
-
"$ref": "#/definitions/esri.
|
|
8024
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.PictureMarkerSymbolJson"
|
|
7475
8025
|
},
|
|
7476
8026
|
{
|
|
7477
|
-
"$ref": "#/definitions/esri.
|
|
8027
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.SimpleMarkerSymbolJson"
|
|
7478
8028
|
}
|
|
7479
8029
|
],
|
|
7480
8030
|
"description": "The symbol used to draw points."
|
|
@@ -7482,10 +8032,10 @@
|
|
|
7482
8032
|
"pointSymbol3D": {
|
|
7483
8033
|
"anyOf": [
|
|
7484
8034
|
{
|
|
7485
|
-
"$ref": "#/definitions/esri.
|
|
8035
|
+
"$ref": "#/definitions/esri.PointSymbol3D"
|
|
7486
8036
|
},
|
|
7487
8037
|
{
|
|
7488
|
-
"$ref": "#/definitions/esri.
|
|
8038
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.PointSymbol3DJson"
|
|
7489
8039
|
}
|
|
7490
8040
|
],
|
|
7491
8041
|
"description": "The symbol used to draw 3D points."
|
|
@@ -7493,16 +8043,16 @@
|
|
|
7493
8043
|
"polygonSymbol": {
|
|
7494
8044
|
"anyOf": [
|
|
7495
8045
|
{
|
|
7496
|
-
"$ref": "#/definitions/esri.
|
|
8046
|
+
"$ref": "#/definitions/esri.PictureFillSymbol"
|
|
7497
8047
|
},
|
|
7498
8048
|
{
|
|
7499
|
-
"$ref": "#/definitions/esri.
|
|
8049
|
+
"$ref": "#/definitions/esri.SimpleFillSymbol"
|
|
7500
8050
|
},
|
|
7501
8051
|
{
|
|
7502
|
-
"$ref": "#/definitions/esri.
|
|
8052
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.PictureFillSymbolJson"
|
|
7503
8053
|
},
|
|
7504
8054
|
{
|
|
7505
|
-
"$ref": "#/definitions/esri.
|
|
8055
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.SimpleFillSymbolJson"
|
|
7506
8056
|
}
|
|
7507
8057
|
],
|
|
7508
8058
|
"description": "The symbol used to draw polygons."
|
|
@@ -7510,10 +8060,10 @@
|
|
|
7510
8060
|
"polygonSymbol3D": {
|
|
7511
8061
|
"anyOf": [
|
|
7512
8062
|
{
|
|
7513
|
-
"$ref": "#/definitions/esri.
|
|
8063
|
+
"$ref": "#/definitions/esri.PolygonSymbol3D"
|
|
7514
8064
|
},
|
|
7515
8065
|
{
|
|
7516
|
-
"$ref": "#/definitions/esri.
|
|
8066
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.PolygonSymbol3DJson"
|
|
7517
8067
|
}
|
|
7518
8068
|
],
|
|
7519
8069
|
"description": "The symbol used to draw 3D polygons."
|
|
@@ -8072,7 +8622,7 @@
|
|
|
8072
8622
|
"type": "number"
|
|
8073
8623
|
},
|
|
8074
8624
|
"geometry": {
|
|
8075
|
-
"$ref": "#/definitions
|
|
8625
|
+
"$ref": "#/definitions/@arcgis.core.unionTypes.GeometryUnion",
|
|
8076
8626
|
"description": "The location of the Marker."
|
|
8077
8627
|
},
|
|
8078
8628
|
"heading": {
|
|
@@ -8328,6 +8878,23 @@
|
|
|
8328
8878
|
"description": "A component's visual state. The values will vary based on the component type.",
|
|
8329
8879
|
"type": "string"
|
|
8330
8880
|
},
|
|
8881
|
+
"VisualVariableJson": {
|
|
8882
|
+
"anyOf": [
|
|
8883
|
+
{
|
|
8884
|
+
"$ref": "#/definitions/esri.rest-api.RendererJson.ColorInfoJson"
|
|
8885
|
+
},
|
|
8886
|
+
{
|
|
8887
|
+
"$ref": "#/definitions/esri.rest-api.RendererJson.SizeInfoJson"
|
|
8888
|
+
},
|
|
8889
|
+
{
|
|
8890
|
+
"$ref": "#/definitions/esri.rest-api.RendererJson.TransparencyInfoJson"
|
|
8891
|
+
},
|
|
8892
|
+
{
|
|
8893
|
+
"$ref": "#/definitions/esri.rest-api.RendererJson.RotationInfoJson"
|
|
8894
|
+
}
|
|
8895
|
+
],
|
|
8896
|
+
"description": "A visualVariable is an object containing the type of drawing property, the axis the variable is applied to, and additional properties for the variable. There are three types of visual variables, 'colorInfo', 'sizeInfo', and 'transparencyInfo'.\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/visualVariable/} {@link https://developers.arcgis.com/web-scene-specification/objects/visualVariable/}."
|
|
8897
|
+
},
|
|
8331
8898
|
"WatchEventHandleProperties": {
|
|
8332
8899
|
"additionalProperties": false,
|
|
8333
8900
|
"description": "Properties used to set a series of watch handles and/or event listeners on an item.",
|
|
@@ -8902,7 +9469,22 @@
|
|
|
8902
9469
|
"type": "array"
|
|
8903
9470
|
},
|
|
8904
9471
|
{
|
|
8905
|
-
"$ref": "#/definitions/esri.
|
|
9472
|
+
"$ref": "#/definitions/esri.Extent"
|
|
9473
|
+
},
|
|
9474
|
+
{
|
|
9475
|
+
"$ref": "#/definitions/esri.Multipoint"
|
|
9476
|
+
},
|
|
9477
|
+
{
|
|
9478
|
+
"$ref": "#/definitions/esri.Point"
|
|
9479
|
+
},
|
|
9480
|
+
{
|
|
9481
|
+
"$ref": "#/definitions/esri.Polygon"
|
|
9482
|
+
},
|
|
9483
|
+
{
|
|
9484
|
+
"$ref": "#/definitions/esri.Polyline"
|
|
9485
|
+
},
|
|
9486
|
+
{
|
|
9487
|
+
"$ref": "#/definitions/esri.Mesh"
|
|
8906
9488
|
},
|
|
8907
9489
|
{
|
|
8908
9490
|
"$ref": "#/definitions/esri.rest-api.FeatureJson.FeatureJson"
|
|
@@ -8942,7 +9524,22 @@
|
|
|
8942
9524
|
"items": {
|
|
8943
9525
|
"anyOf": [
|
|
8944
9526
|
{
|
|
8945
|
-
"$ref": "#/definitions/esri.
|
|
9527
|
+
"$ref": "#/definitions/esri.Extent"
|
|
9528
|
+
},
|
|
9529
|
+
{
|
|
9530
|
+
"$ref": "#/definitions/esri.Multipoint"
|
|
9531
|
+
},
|
|
9532
|
+
{
|
|
9533
|
+
"$ref": "#/definitions/esri.Point"
|
|
9534
|
+
},
|
|
9535
|
+
{
|
|
9536
|
+
"$ref": "#/definitions/esri.Polygon"
|
|
9537
|
+
},
|
|
9538
|
+
{
|
|
9539
|
+
"$ref": "#/definitions/esri.Polyline"
|
|
9540
|
+
},
|
|
9541
|
+
{
|
|
9542
|
+
"$ref": "#/definitions/esri.Mesh"
|
|
8946
9543
|
},
|
|
8947
9544
|
{
|
|
8948
9545
|
"$ref": "#/definitions/esri.rest-api.GeometryJson.PointJson"
|
|
@@ -8986,10 +9583,10 @@
|
|
|
8986
9583
|
"drawing.edit-symbol:input": {
|
|
8987
9584
|
"anyOf": [
|
|
8988
9585
|
{
|
|
8989
|
-
"$ref": "#/definitions/
|
|
9586
|
+
"$ref": "#/definitions/EditSymbolArgs"
|
|
8990
9587
|
},
|
|
8991
9588
|
{
|
|
8992
|
-
"$ref": "
|
|
9589
|
+
"$ref": "Symbol"
|
|
8993
9590
|
}
|
|
8994
9591
|
]
|
|
8995
9592
|
},
|
|
@@ -9061,58 +9658,58 @@
|
|
|
9061
9658
|
"drawing.set-default-symbol:input": {
|
|
9062
9659
|
"anyOf": [
|
|
9063
9660
|
{
|
|
9064
|
-
"$ref": "#/definitions/esri.
|
|
9661
|
+
"$ref": "#/definitions/esri.PictureFillSymbol"
|
|
9065
9662
|
},
|
|
9066
9663
|
{
|
|
9067
|
-
"$ref": "#/definitions/esri.
|
|
9664
|
+
"$ref": "#/definitions/esri.PictureMarkerSymbol"
|
|
9068
9665
|
},
|
|
9069
9666
|
{
|
|
9070
|
-
"$ref": "#/definitions/esri.
|
|
9667
|
+
"$ref": "#/definitions/esri.SimpleFillSymbol"
|
|
9071
9668
|
},
|
|
9072
9669
|
{
|
|
9073
|
-
"$ref": "#/definitions/esri.
|
|
9670
|
+
"$ref": "#/definitions/esri.SimpleLineSymbol"
|
|
9074
9671
|
},
|
|
9075
9672
|
{
|
|
9076
|
-
"$ref": "#/definitions/esri.
|
|
9673
|
+
"$ref": "#/definitions/esri.SimpleMarkerSymbol"
|
|
9077
9674
|
},
|
|
9078
9675
|
{
|
|
9079
|
-
"$ref": "#/definitions/esri.
|
|
9676
|
+
"$ref": "#/definitions/esri.TextSymbol"
|
|
9080
9677
|
},
|
|
9081
9678
|
{
|
|
9082
|
-
"$ref": "#/definitions/esri.
|
|
9679
|
+
"$ref": "#/definitions/esri.LineSymbol3D"
|
|
9083
9680
|
},
|
|
9084
9681
|
{
|
|
9085
|
-
"$ref": "#/definitions/esri.
|
|
9682
|
+
"$ref": "#/definitions/esri.PointSymbol3D"
|
|
9086
9683
|
},
|
|
9087
9684
|
{
|
|
9088
|
-
"$ref": "#/definitions/esri.
|
|
9685
|
+
"$ref": "#/definitions/esri.PolygonSymbol3D"
|
|
9089
9686
|
},
|
|
9090
9687
|
{
|
|
9091
|
-
"$ref": "#/definitions/esri.
|
|
9688
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.PictureFillSymbolJson"
|
|
9092
9689
|
},
|
|
9093
9690
|
{
|
|
9094
|
-
"$ref": "#/definitions/esri.
|
|
9691
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.PictureMarkerSymbolJson"
|
|
9095
9692
|
},
|
|
9096
9693
|
{
|
|
9097
|
-
"$ref": "#/definitions/esri.
|
|
9694
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.SimpleFillSymbolJson"
|
|
9098
9695
|
},
|
|
9099
9696
|
{
|
|
9100
|
-
"$ref": "#/definitions/esri.
|
|
9697
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.SimpleLineSymbolJson"
|
|
9101
9698
|
},
|
|
9102
9699
|
{
|
|
9103
|
-
"$ref": "#/definitions/esri.
|
|
9700
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.SimpleMarkerSymbolJson"
|
|
9104
9701
|
},
|
|
9105
9702
|
{
|
|
9106
|
-
"$ref": "#/definitions/esri.
|
|
9703
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.TextSymbolJson"
|
|
9107
9704
|
},
|
|
9108
9705
|
{
|
|
9109
|
-
"$ref": "#/definitions/esri.
|
|
9706
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.LineSymbol3DJson"
|
|
9110
9707
|
},
|
|
9111
9708
|
{
|
|
9112
|
-
"$ref": "#/definitions/esri.
|
|
9709
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.PointSymbol3DJson"
|
|
9113
9710
|
},
|
|
9114
9711
|
{
|
|
9115
|
-
"$ref": "#/definitions/esri.
|
|
9712
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.PolygonSymbol3DJson"
|
|
9116
9713
|
},
|
|
9117
9714
|
{
|
|
9118
9715
|
"$ref": "#/definitions/HasSymbol"
|
|
@@ -9133,7 +9730,7 @@
|
|
|
9133
9730
|
"description": "Graphics to use for the command/operation."
|
|
9134
9731
|
},
|
|
9135
9732
|
"symbol": {
|
|
9136
|
-
"$ref": "
|
|
9733
|
+
"$ref": "SymbolLike",
|
|
9137
9734
|
"description": "The symbol to use for the command/operation."
|
|
9138
9735
|
}
|
|
9139
9736
|
},
|
|
@@ -9394,9 +9991,6 @@
|
|
|
9394
9991
|
"esri.Field": {
|
|
9395
9992
|
"$ref": "esri/layers/support/Field"
|
|
9396
9993
|
},
|
|
9397
|
-
"esri.GeographicTransformation": {
|
|
9398
|
-
"$ref": "esri/geometry/support/GeographicTransformation"
|
|
9399
|
-
},
|
|
9400
9994
|
"esri.Geometry": {
|
|
9401
9995
|
"$ref": "esri/geometry/Geometry"
|
|
9402
9996
|
},
|
|
@@ -9409,6 +10003,12 @@
|
|
|
9409
10003
|
"esri.LineSymbol3D": {
|
|
9410
10004
|
"$ref": "esri/symbols/LineSymbol3D"
|
|
9411
10005
|
},
|
|
10006
|
+
"esri.Mesh": {
|
|
10007
|
+
"$ref": "esri/geometry/Mesh"
|
|
10008
|
+
},
|
|
10009
|
+
"esri.Multipoint": {
|
|
10010
|
+
"$ref": "esri/geometry/Multipoint"
|
|
10011
|
+
},
|
|
9412
10012
|
"esri.PictureFillSymbol": {
|
|
9413
10013
|
"$ref": "esri/symbols/PictureFillSymbol"
|
|
9414
10014
|
},
|
|
@@ -9421,9 +10021,15 @@
|
|
|
9421
10021
|
"esri.PointSymbol3D": {
|
|
9422
10022
|
"$ref": "esri/symbols/PointSymbol3D"
|
|
9423
10023
|
},
|
|
10024
|
+
"esri.Polygon": {
|
|
10025
|
+
"$ref": "esri/geometry/Polygon"
|
|
10026
|
+
},
|
|
9424
10027
|
"esri.PolygonSymbol3D": {
|
|
9425
10028
|
"$ref": "esri/symbols/PolygonSymbol3D"
|
|
9426
10029
|
},
|
|
10030
|
+
"esri.Polyline": {
|
|
10031
|
+
"$ref": "esri/geometry/Polyline"
|
|
10032
|
+
},
|
|
9427
10033
|
"esri.PopupTemplate": {
|
|
9428
10034
|
"$ref": "esri/PopupTemplate"
|
|
9429
10035
|
},
|
|
@@ -9445,9 +10051,6 @@
|
|
|
9445
10051
|
"esri.Sublayer": {
|
|
9446
10052
|
"$ref": "esri/layers/buildingSublayers/BuildingComponentSublayer"
|
|
9447
10053
|
},
|
|
9448
|
-
"esri.Symbol": {
|
|
9449
|
-
"$ref": "esri/symbols/Symbol"
|
|
9450
|
-
},
|
|
9451
10054
|
"esri.TextSymbol": {
|
|
9452
10055
|
"$ref": "esri/symbols/TextSymbol"
|
|
9453
10056
|
},
|
|
@@ -9503,7 +10106,7 @@
|
|
|
9503
10106
|
"type": "boolean"
|
|
9504
10107
|
},
|
|
9505
10108
|
"effect": {
|
|
9506
|
-
"$ref": "#/definitions/
|
|
10109
|
+
"$ref": "#/definitions/EffectJson",
|
|
9507
10110
|
"description": "Effect provides various filter functions to achieve different visual effects similar to how image filters (photo apps) work."
|
|
9508
10111
|
},
|
|
9509
10112
|
"enableEditing": {
|
|
@@ -9524,8 +10127,13 @@
|
|
|
9524
10127
|
"type": "string"
|
|
9525
10128
|
},
|
|
9526
10129
|
"listMode": {
|
|
9527
|
-
"
|
|
9528
|
-
"
|
|
10130
|
+
"description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}.",
|
|
10131
|
+
"enum": [
|
|
10132
|
+
"hide",
|
|
10133
|
+
"hide-children",
|
|
10134
|
+
"show"
|
|
10135
|
+
],
|
|
10136
|
+
"type": "string"
|
|
9529
10137
|
},
|
|
9530
10138
|
"maxScale": {
|
|
9531
10139
|
"description": "A number representing the maximum scale at which the layer will be visible. The number is the scale's denominator; thus, a value of 2400 represents a scale of 1/2,400. A value of 0 indicates that the layer will be visible no matter how far you zoom in.",
|
|
@@ -9668,7 +10276,7 @@
|
|
|
9668
10276
|
"type": "string"
|
|
9669
10277
|
},
|
|
9670
10278
|
"effect": {
|
|
9671
|
-
"$ref": "#/definitions/
|
|
10279
|
+
"$ref": "#/definitions/EffectJson",
|
|
9672
10280
|
"description": "Effect provides various filter functions to achieve different visual effects similar to how image filters (photo apps) work."
|
|
9673
10281
|
},
|
|
9674
10282
|
"filters": {
|
|
@@ -9696,8 +10304,13 @@
|
|
|
9696
10304
|
"type": "string"
|
|
9697
10305
|
},
|
|
9698
10306
|
"listMode": {
|
|
9699
|
-
"
|
|
9700
|
-
"
|
|
10307
|
+
"description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}.",
|
|
10308
|
+
"enum": [
|
|
10309
|
+
"hide",
|
|
10310
|
+
"hide-children",
|
|
10311
|
+
"show"
|
|
10312
|
+
],
|
|
10313
|
+
"type": "string"
|
|
9701
10314
|
},
|
|
9702
10315
|
"maxScale": {
|
|
9703
10316
|
"description": "A number representing the maximum scale at which the layer will be visible. The number is the scale's denominator; thus, a value of 2400 represents a scale of 1/2,400. A value of 0 indicates that the layer will be visible no matter how far you zoom in.",
|
|
@@ -9789,7 +10402,7 @@
|
|
|
9789
10402
|
"type": "string"
|
|
9790
10403
|
},
|
|
9791
10404
|
"filterMode": {
|
|
9792
|
-
"$ref": "#/definitions/
|
|
10405
|
+
"$ref": "#/definitions/FilterModeJson",
|
|
9793
10406
|
"description": "Filter mode defines how features are drawn. For example, the filter mode of a filter can be solid or wire frame."
|
|
9794
10407
|
},
|
|
9795
10408
|
"title": {
|
|
@@ -9828,20 +10441,9 @@
|
|
|
9828
10441
|
}
|
|
9829
10442
|
},
|
|
9830
10443
|
"required": [
|
|
9831
|
-
"filterBlocks"
|
|
9832
|
-
],
|
|
9833
|
-
"type": "object"
|
|
9834
|
-
},
|
|
9835
|
-
"esri.rest-api.BuildingSceneLayerJson.FilterModeJson": {
|
|
9836
|
-
"anyOf": [
|
|
9837
|
-
{
|
|
9838
|
-
"$ref": "#/definitions/esri.rest-api.BuildingSceneLayerJson.FilterModeSolidJson"
|
|
9839
|
-
},
|
|
9840
|
-
{
|
|
9841
|
-
"$ref": "#/definitions/esri.rest-api.BuildingSceneLayerJson.FilterModeWireFrameJson"
|
|
9842
|
-
}
|
|
10444
|
+
"filterBlocks"
|
|
9843
10445
|
],
|
|
9844
|
-
"
|
|
10446
|
+
"type": "object"
|
|
9845
10447
|
},
|
|
9846
10448
|
"esri.rest-api.BuildingSceneLayerJson.FilterModeSolidJson": {
|
|
9847
10449
|
"additionalProperties": false,
|
|
@@ -9863,7 +10465,7 @@
|
|
|
9863
10465
|
"description": "Draw elements of this filter block in wireframe mode. This mode draws only the edges of the features with the specified edge style.",
|
|
9864
10466
|
"properties": {
|
|
9865
10467
|
"edges": {
|
|
9866
|
-
"$ref": "#/definitions/
|
|
10468
|
+
"$ref": "#/definitions/EdgesJson",
|
|
9867
10469
|
"description": "A size in points by which to extend edges beyond their original end points."
|
|
9868
10470
|
},
|
|
9869
10471
|
"type": {
|
|
@@ -9894,8 +10496,13 @@
|
|
|
9894
10496
|
"description": "Additional properties that can define drawing information and a definition expression for the sublayer. See layerDefinition properties table."
|
|
9895
10497
|
},
|
|
9896
10498
|
"listMode": {
|
|
9897
|
-
"
|
|
9898
|
-
"
|
|
10499
|
+
"description": "To show or hide the sublayer in the layer list. If property is present, must be one of the following values: show, hide.",
|
|
10500
|
+
"enum": [
|
|
10501
|
+
"hide",
|
|
10502
|
+
"hide-children",
|
|
10503
|
+
"show"
|
|
10504
|
+
],
|
|
10505
|
+
"type": "string"
|
|
9899
10506
|
},
|
|
9900
10507
|
"opacity": {
|
|
9901
10508
|
"description": "The degree of transparency applied to the sublayer on the client side, where 0 is full transparency and 1 is no transparency. This is multiplied with the opacity of the containing layers.",
|
|
@@ -9966,7 +10573,7 @@
|
|
|
9966
10573
|
"type": "boolean"
|
|
9967
10574
|
},
|
|
9968
10575
|
"effect": {
|
|
9969
|
-
"$ref": "#/definitions/
|
|
10576
|
+
"$ref": "#/definitions/EffectJson",
|
|
9970
10577
|
"description": "Effect provides various filter functions to achieve different visual effects similar to how image filters (photo apps) work."
|
|
9971
10578
|
},
|
|
9972
10579
|
"id": {
|
|
@@ -9987,8 +10594,13 @@
|
|
|
9987
10594
|
"type": "string"
|
|
9988
10595
|
},
|
|
9989
10596
|
"listMode": {
|
|
9990
|
-
"
|
|
9991
|
-
"
|
|
10597
|
+
"description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}.",
|
|
10598
|
+
"enum": [
|
|
10599
|
+
"hide",
|
|
10600
|
+
"hide-children",
|
|
10601
|
+
"show"
|
|
10602
|
+
],
|
|
10603
|
+
"type": "string"
|
|
9992
10604
|
},
|
|
9993
10605
|
"locationInfo": {
|
|
9994
10606
|
"$ref": "#/definitions/esri.rest-api.CSVLayerJson.LocationInfoJson",
|
|
@@ -10193,20 +10805,6 @@
|
|
|
10193
10805
|
],
|
|
10194
10806
|
"type": "object"
|
|
10195
10807
|
},
|
|
10196
|
-
"esri.rest-api.DomainJson.DomainJson": {
|
|
10197
|
-
"anyOf": [
|
|
10198
|
-
{
|
|
10199
|
-
"$ref": "#/definitions/esri.rest-api.DomainJson.CodedValueDomainJson"
|
|
10200
|
-
},
|
|
10201
|
-
{
|
|
10202
|
-
"$ref": "#/definitions/esri.rest-api.DomainJson.InheritedDomainJson"
|
|
10203
|
-
},
|
|
10204
|
-
{
|
|
10205
|
-
"$ref": "#/definitions/esri.rest-api.DomainJson.RangeDomainJson"
|
|
10206
|
-
}
|
|
10207
|
-
],
|
|
10208
|
-
"description": "A domain specifies the set of valid values for a field.\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/domain/} {@link https://developers.arcgis.com/web-scene-specification/objects/domain/}."
|
|
10209
|
-
},
|
|
10210
10808
|
"esri.rest-api.DomainJson.InheritedDomainJson": {
|
|
10211
10809
|
"additionalProperties": false,
|
|
10212
10810
|
"description": "This domain applies to domains on subtypes. It implies that the domain for a field at the subtype level is the same as the domain for the field at the layer level. See {@link https://developers.arcgis.com/web-map-specification/objects/inherited_domain/} {@link https://developers.arcgis.com/web-scene-specification/objects/inherited_domain/}.",
|
|
@@ -10273,7 +10871,7 @@
|
|
|
10273
10871
|
"type": "array"
|
|
10274
10872
|
},
|
|
10275
10873
|
"renderer": {
|
|
10276
|
-
"$ref": "#/definitions/
|
|
10874
|
+
"$ref": "#/definitions/RendererJson",
|
|
10277
10875
|
"description": "A renderer object that provides the symbology for the layer."
|
|
10278
10876
|
},
|
|
10279
10877
|
"scaleSymbols": {
|
|
@@ -10494,7 +11092,7 @@
|
|
|
10494
11092
|
"description": "The feature attributes. It is a JSON object that contains a dictionary of name-value pairs. The names are the feature field names. The values are the field values and they can be any of the standard JSON types - string, number and boolean. Note that date values are encoded as numbers. The number represents the number of milliseconds since epoch (January 1,\n1970) in UTC."
|
|
10495
11093
|
},
|
|
10496
11094
|
"geometry": {
|
|
10497
|
-
"$ref": "#/definitions/
|
|
11095
|
+
"$ref": "#/definitions/GeometryJson",
|
|
10498
11096
|
"description": "The feature geometry."
|
|
10499
11097
|
},
|
|
10500
11098
|
"popupInfo": {
|
|
@@ -10502,7 +11100,7 @@
|
|
|
10502
11100
|
"description": "A popupInfo object defining the content of popup window when you click a feature on the map. Applicable to features in a map notes feature layer only."
|
|
10503
11101
|
},
|
|
10504
11102
|
"symbol": {
|
|
10505
|
-
"$ref": "
|
|
11103
|
+
"$ref": "SymbolJson",
|
|
10506
11104
|
"description": "Symbol used for drawing the feature."
|
|
10507
11105
|
}
|
|
10508
11106
|
},
|
|
@@ -10565,7 +11163,7 @@
|
|
|
10565
11163
|
"type": "boolean"
|
|
10566
11164
|
},
|
|
10567
11165
|
"effect": {
|
|
10568
|
-
"$ref": "#/definitions/
|
|
11166
|
+
"$ref": "#/definitions/EffectJson",
|
|
10569
11167
|
"description": "Effect provides various filter functions to achieve different visual effects similar to how image filters (photo apps) work."
|
|
10570
11168
|
},
|
|
10571
11169
|
"featureCollection": {
|
|
@@ -10603,8 +11201,13 @@
|
|
|
10603
11201
|
"type": "string"
|
|
10604
11202
|
},
|
|
10605
11203
|
"listMode": {
|
|
10606
|
-
"
|
|
10607
|
-
"
|
|
11204
|
+
"description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}.",
|
|
11205
|
+
"enum": [
|
|
11206
|
+
"hide",
|
|
11207
|
+
"hide-children",
|
|
11208
|
+
"show"
|
|
11209
|
+
],
|
|
11210
|
+
"type": "string"
|
|
10608
11211
|
},
|
|
10609
11212
|
"maxScale": {
|
|
10610
11213
|
"description": "A number representing the maximum scale at which the layer will be visible. The number is the scale's denominator; thus, a value of 2400 represents a scale of 1/2,400. A value of 0 indicates that the layer will be visible no matter how far you zoom in.",
|
|
@@ -10655,6 +11258,10 @@
|
|
|
10655
11258
|
"number"
|
|
10656
11259
|
]
|
|
10657
11260
|
},
|
|
11261
|
+
"timeAnimation": {
|
|
11262
|
+
"description": "Indicates whether to disable time animation if the layer supports it.",
|
|
11263
|
+
"type": "boolean"
|
|
11264
|
+
},
|
|
10658
11265
|
"title": {
|
|
10659
11266
|
"description": "A user-friendly title for the layer that can be used in a table of contents. If this is not included, then a title is derived from the service.",
|
|
10660
11267
|
"type": "string"
|
|
@@ -10706,8 +11313,12 @@
|
|
|
10706
11313
|
"type": "array"
|
|
10707
11314
|
},
|
|
10708
11315
|
"geometryType": {
|
|
10709
|
-
"$ref": "
|
|
11316
|
+
"$ref": "esri.rest-api.GeometryJson.GeometryJsonType",
|
|
10710
11317
|
"description": "One of the GeometryType constants. See Geometry.GeometryJsonType."
|
|
11318
|
+
},
|
|
11319
|
+
"spatialReference": {
|
|
11320
|
+
"$ref": "#/definitions/esri.rest-api.SpatialReferenceJson.SpatialReferenceJson",
|
|
11321
|
+
"description": "<not in spec>."
|
|
10711
11322
|
}
|
|
10712
11323
|
},
|
|
10713
11324
|
"required": [
|
|
@@ -10725,7 +11336,7 @@
|
|
|
10725
11336
|
"type": "string"
|
|
10726
11337
|
},
|
|
10727
11338
|
"domain": {
|
|
10728
|
-
"$ref": "#/definitions/
|
|
11339
|
+
"$ref": "#/definitions/DomainJson",
|
|
10729
11340
|
"description": "A domain object that provides the attribute domain information for the field, if a domain exists."
|
|
10730
11341
|
},
|
|
10731
11342
|
"editable": {
|
|
@@ -10749,8 +11360,12 @@
|
|
|
10749
11360
|
"type": "boolean"
|
|
10750
11361
|
},
|
|
10751
11362
|
"type": {
|
|
10752
|
-
"$ref": "
|
|
11363
|
+
"$ref": "FieldJsonType",
|
|
10753
11364
|
"description": "Type of the Field. See {@link FieldJsonType}."
|
|
11365
|
+
},
|
|
11366
|
+
"visible": {
|
|
11367
|
+
"description": "<not in spec>.",
|
|
11368
|
+
"type": "boolean"
|
|
10754
11369
|
}
|
|
10755
11370
|
},
|
|
10756
11371
|
"required": [
|
|
@@ -10758,29 +11373,6 @@
|
|
|
10758
11373
|
],
|
|
10759
11374
|
"type": "object"
|
|
10760
11375
|
},
|
|
10761
|
-
"esri.rest-api.FieldJson.FieldJsonType": {
|
|
10762
|
-
"description": "The type of the Field.",
|
|
10763
|
-
"enum": [
|
|
10764
|
-
"esriFieldTypeBigInteger",
|
|
10765
|
-
"esriFieldTypeBlob",
|
|
10766
|
-
"esriFieldTypeDate",
|
|
10767
|
-
"esriFieldTypeDateOnly",
|
|
10768
|
-
"esriFieldTypeDouble",
|
|
10769
|
-
"esriFieldTypeGUID",
|
|
10770
|
-
"esriFieldTypeGeometry",
|
|
10771
|
-
"esriFieldTypeGlobalID",
|
|
10772
|
-
"esriFieldTypeInteger",
|
|
10773
|
-
"esriFieldTypeOID",
|
|
10774
|
-
"esriFieldTypeRaster",
|
|
10775
|
-
"esriFieldTypeSingle",
|
|
10776
|
-
"esriFieldTypeSmallInteger",
|
|
10777
|
-
"esriFieldTypeString",
|
|
10778
|
-
"esriFieldTypeTimeOnly",
|
|
10779
|
-
"esriFieldTypeTimestampOffset",
|
|
10780
|
-
"esriFieldTypeXML"
|
|
10781
|
-
],
|
|
10782
|
-
"type": "string"
|
|
10783
|
-
},
|
|
10784
11376
|
"esri.rest-api.FormInfoJson.FormAttachmentElementJson": {
|
|
10785
11377
|
"additionalProperties": false,
|
|
10786
11378
|
"description": "Defines how one or more attachments can participate in the form. When present in the form, the user has the ability to upload an attachment specific to the form element. See {@link https://developers.arcgis.com/web-map-specification/objects/formAttachmentElement/}.",
|
|
@@ -10926,7 +11518,7 @@
|
|
|
10926
11518
|
"type": "string"
|
|
10927
11519
|
},
|
|
10928
11520
|
"domain": {
|
|
10929
|
-
"$ref": "#/definitions/
|
|
11521
|
+
"$ref": "#/definitions/DomainJson",
|
|
10930
11522
|
"description": "The domain to apply to this field. If defined, it takes precedence over domains defined in field, type, or subtype."
|
|
10931
11523
|
},
|
|
10932
11524
|
"editable": {
|
|
@@ -11264,7 +11856,7 @@
|
|
|
11264
11856
|
"type": "boolean"
|
|
11265
11857
|
},
|
|
11266
11858
|
"effect": {
|
|
11267
|
-
"$ref": "#/definitions/
|
|
11859
|
+
"$ref": "#/definitions/EffectJson",
|
|
11268
11860
|
"description": "Effect provides various filter functions to achieve different visual effects similar to how image filters (photo apps) work."
|
|
11269
11861
|
},
|
|
11270
11862
|
"id": {
|
|
@@ -11281,8 +11873,13 @@
|
|
|
11281
11873
|
"type": "string"
|
|
11282
11874
|
},
|
|
11283
11875
|
"listMode": {
|
|
11284
|
-
"
|
|
11285
|
-
"
|
|
11876
|
+
"description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}.",
|
|
11877
|
+
"enum": [
|
|
11878
|
+
"hide",
|
|
11879
|
+
"hide-children",
|
|
11880
|
+
"show"
|
|
11881
|
+
],
|
|
11882
|
+
"type": "string"
|
|
11286
11883
|
},
|
|
11287
11884
|
"maxScale": {
|
|
11288
11885
|
"description": "A number representing the maximum scale at which the layer will be visible. The number is the scale's denominator; thus, a value of 2400 represents a scale of 1/2,400. A value of 0 indicates that the layer will be visible no matter how far you zoom in.",
|
|
@@ -11390,7 +11987,7 @@
|
|
|
11390
11987
|
"type": "string"
|
|
11391
11988
|
},
|
|
11392
11989
|
"effect": {
|
|
11393
|
-
"$ref": "#/definitions/
|
|
11990
|
+
"$ref": "#/definitions/EffectJson",
|
|
11394
11991
|
"description": "Effect provides various filter functions to achieve different visual effects similar to how image filters (photo apps) work."
|
|
11395
11992
|
},
|
|
11396
11993
|
"id": {
|
|
@@ -11407,8 +12004,13 @@
|
|
|
11407
12004
|
"description": "Defined by the GeoRSS to JSON request service. If the GeoRSS feed does not have lines, this property is not added to the layer JSON."
|
|
11408
12005
|
},
|
|
11409
12006
|
"listMode": {
|
|
11410
|
-
"
|
|
11411
|
-
"
|
|
12007
|
+
"description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}.",
|
|
12008
|
+
"enum": [
|
|
12009
|
+
"hide",
|
|
12010
|
+
"hide-children",
|
|
12011
|
+
"show"
|
|
12012
|
+
],
|
|
12013
|
+
"type": "string"
|
|
11412
12014
|
},
|
|
11413
12015
|
"maxScale": {
|
|
11414
12016
|
"description": "A number representing the maximum scale at which the layer will be visible. The number is the scale's denominator; thus, a value of 2400 represents a scale of 1/2,400. A value of 0 indicates that the layer will be visible no matter how far you zoom in.",
|
|
@@ -11497,37 +12099,6 @@
|
|
|
11497
12099
|
},
|
|
11498
12100
|
"type": "object"
|
|
11499
12101
|
},
|
|
11500
|
-
"esri.rest-api.GeometryJson.GeometryJson": {
|
|
11501
|
-
"anyOf": [
|
|
11502
|
-
{
|
|
11503
|
-
"$ref": "#/definitions/esri.rest-api.GeometryJson.PointJson"
|
|
11504
|
-
},
|
|
11505
|
-
{
|
|
11506
|
-
"$ref": "#/definitions/esri.rest-api.GeometryJson.MultipointJson"
|
|
11507
|
-
},
|
|
11508
|
-
{
|
|
11509
|
-
"$ref": "#/definitions/esri.rest-api.GeometryJson.PolylineJson"
|
|
11510
|
-
},
|
|
11511
|
-
{
|
|
11512
|
-
"$ref": "#/definitions/esri.rest-api.GeometryJson.PolygonJson"
|
|
11513
|
-
},
|
|
11514
|
-
{
|
|
11515
|
-
"$ref": "#/definitions/esri.rest-api.GeometryJson.ExtentJson"
|
|
11516
|
-
}
|
|
11517
|
-
],
|
|
11518
|
-
"description": "A geometry as defined in the ArcGIS REST and web map specifications.\n\nSee {@link http://resources.arcgis.com/en/help/rest/apiref/geometry.html}. See {@link https://developers.arcgis.com/web-map-specification/objects/geometry/} {@link https://developers.arcgis.com/web-map-specification/objects/geometryType/}."
|
|
11519
|
-
},
|
|
11520
|
-
"esri.rest-api.GeometryJson.GeometryJsonType": {
|
|
11521
|
-
"description": "Types of geometry. Geometry JSON objects don't reference these types, but they appear within services to describe the type of geometries in layers.",
|
|
11522
|
-
"enum": [
|
|
11523
|
-
"esriGeometryEnvelope",
|
|
11524
|
-
"esriGeometryMultipoint",
|
|
11525
|
-
"esriGeometryPoint",
|
|
11526
|
-
"esriGeometryPolygon",
|
|
11527
|
-
"esriGeometryPolyline"
|
|
11528
|
-
],
|
|
11529
|
-
"type": "string"
|
|
11530
|
-
},
|
|
11531
12102
|
"esri.rest-api.GeometryJson.MultipointJson": {
|
|
11532
12103
|
"additionalProperties": false,
|
|
11533
12104
|
"description": "Contains an array of points, along with a spatial reference field. See {@link https://developers.arcgis.com/web-map-specification/objects/multipoint_geometry/} {@link https://developers.arcgis.com/web-scene-specification/objects/multipoint_geometry/}.",
|
|
@@ -11712,7 +12283,7 @@
|
|
|
11712
12283
|
"type": "string"
|
|
11713
12284
|
},
|
|
11714
12285
|
"effect": {
|
|
11715
|
-
"$ref": "#/definitions/
|
|
12286
|
+
"$ref": "#/definitions/EffectJson",
|
|
11716
12287
|
"description": "Effect provides various filter functions to achieve different visual effects similar to how image filters (photo apps) work."
|
|
11717
12288
|
},
|
|
11718
12289
|
"id": {
|
|
@@ -11732,8 +12303,13 @@
|
|
|
11732
12303
|
"type": "array"
|
|
11733
12304
|
},
|
|
11734
12305
|
"listMode": {
|
|
11735
|
-
"
|
|
11736
|
-
"
|
|
12306
|
+
"description": "To show or hide the group layer in the layer list. See {@link support /esri!ListMode}.",
|
|
12307
|
+
"enum": [
|
|
12308
|
+
"hide",
|
|
12309
|
+
"hide-children",
|
|
12310
|
+
"show"
|
|
12311
|
+
],
|
|
12312
|
+
"type": "string"
|
|
11737
12313
|
},
|
|
11738
12314
|
"maxScale": {
|
|
11739
12315
|
"description": "A number representing the maximum scale at which the layer will be visible. The number is the scale's denominator; thus, a value of 2400 represents a scale of 1/2,400. A value of 0 indicates that the layer will be visible no matter how far you zoom in.",
|
|
@@ -11856,7 +12432,7 @@
|
|
|
11856
12432
|
"description": "Stores interactive filters."
|
|
11857
12433
|
},
|
|
11858
12434
|
"effect": {
|
|
11859
|
-
"$ref": "#/definitions/
|
|
12435
|
+
"$ref": "#/definitions/EffectJson",
|
|
11860
12436
|
"description": "Effect provides various filter functions to achieve different visual effects similar to how image filters (photo apps) work."
|
|
11861
12437
|
},
|
|
11862
12438
|
"format": {
|
|
@@ -11905,8 +12481,13 @@
|
|
|
11905
12481
|
"type": "string"
|
|
11906
12482
|
},
|
|
11907
12483
|
"listMode": {
|
|
11908
|
-
"
|
|
11909
|
-
"
|
|
12484
|
+
"description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}.",
|
|
12485
|
+
"enum": [
|
|
12486
|
+
"hide",
|
|
12487
|
+
"hide-children",
|
|
12488
|
+
"show"
|
|
12489
|
+
],
|
|
12490
|
+
"type": "string"
|
|
11910
12491
|
},
|
|
11911
12492
|
"maxScale": {
|
|
11912
12493
|
"description": "A number representing the maximum scale at which the layer will be visible. The number is the scale's denominator; thus, a value of 2400 represents a scale of 1/2,400. A value of 0 indicates that the layer will be visible no matter how far you zoom in.",
|
|
@@ -12079,7 +12660,7 @@
|
|
|
12079
12660
|
"type": "boolean"
|
|
12080
12661
|
},
|
|
12081
12662
|
"effect": {
|
|
12082
|
-
"$ref": "#/definitions/
|
|
12663
|
+
"$ref": "#/definitions/EffectJson",
|
|
12083
12664
|
"description": "Effect provides various filter functions to achieve different visual effects similar to how image filters (photo apps) work."
|
|
12084
12665
|
},
|
|
12085
12666
|
"id": {
|
|
@@ -12104,8 +12685,13 @@
|
|
|
12104
12685
|
"type": "string"
|
|
12105
12686
|
},
|
|
12106
12687
|
"listMode": {
|
|
12107
|
-
"
|
|
12108
|
-
"
|
|
12688
|
+
"description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}.",
|
|
12689
|
+
"enum": [
|
|
12690
|
+
"hide",
|
|
12691
|
+
"hide-children",
|
|
12692
|
+
"show"
|
|
12693
|
+
],
|
|
12694
|
+
"type": "string"
|
|
12109
12695
|
},
|
|
12110
12696
|
"maxScale": {
|
|
12111
12697
|
"description": "A number representing the maximum scale at which the layer will be visible. The number is the scale's denominator; thus, a value of 2400 represents a scale of 1/2,400. A value of 0 indicates that the layer will be visible no matter how far you zoom in.",
|
|
@@ -12211,7 +12797,7 @@
|
|
|
12211
12797
|
"type": "string"
|
|
12212
12798
|
},
|
|
12213
12799
|
"effect": {
|
|
12214
|
-
"$ref": "#/definitions/
|
|
12800
|
+
"$ref": "#/definitions/EffectJson",
|
|
12215
12801
|
"description": "Effect provides various filter functions to achieve different visual effects similar to how image filters (photo apps) work."
|
|
12216
12802
|
},
|
|
12217
12803
|
"id": {
|
|
@@ -12228,8 +12814,13 @@
|
|
|
12228
12814
|
"type": "string"
|
|
12229
12815
|
},
|
|
12230
12816
|
"listMode": {
|
|
12231
|
-
"
|
|
12232
|
-
"
|
|
12817
|
+
"description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}.",
|
|
12818
|
+
"enum": [
|
|
12819
|
+
"hide",
|
|
12820
|
+
"hide-children",
|
|
12821
|
+
"show"
|
|
12822
|
+
],
|
|
12823
|
+
"type": "string"
|
|
12233
12824
|
},
|
|
12234
12825
|
"maxScale": {
|
|
12235
12826
|
"description": "A number representing the maximum scale at which the layer will be visible. The number is the scale's denominator; thus, a value of 2400 represents a scale of 1/2,400. A value of 0 indicates that the layer will be visible no matter how far you zoom in.",
|
|
@@ -12394,6 +12985,10 @@
|
|
|
12394
12985
|
"description": "Primarily applies to thumbnails associated with an application. The URL to the thumbnail used for the application.",
|
|
12395
12986
|
"type": "string"
|
|
12396
12987
|
},
|
|
12988
|
+
"lastViewed": {
|
|
12989
|
+
"description": "The date/time the item was last accessed in UNIX format (in milliseconds).",
|
|
12990
|
+
"type": "number"
|
|
12991
|
+
},
|
|
12397
12992
|
"licenseInfo": {
|
|
12398
12993
|
"description": "Any license information or restrictions.",
|
|
12399
12994
|
"type": "string"
|
|
@@ -12550,7 +13145,7 @@
|
|
|
12550
13145
|
"type": "string"
|
|
12551
13146
|
},
|
|
12552
13147
|
"effect": {
|
|
12553
|
-
"$ref": "#/definitions/
|
|
13148
|
+
"$ref": "#/definitions/EffectJson",
|
|
12554
13149
|
"description": "Effect provides various filter functions to achieve different visual effects similar to how image filters (photo apps) work."
|
|
12555
13150
|
},
|
|
12556
13151
|
"id": {
|
|
@@ -12567,8 +13162,13 @@
|
|
|
12567
13162
|
"type": "string"
|
|
12568
13163
|
},
|
|
12569
13164
|
"listMode": {
|
|
12570
|
-
"
|
|
12571
|
-
"
|
|
13165
|
+
"description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}.",
|
|
13166
|
+
"enum": [
|
|
13167
|
+
"hide",
|
|
13168
|
+
"hide-children",
|
|
13169
|
+
"show"
|
|
13170
|
+
],
|
|
13171
|
+
"type": "string"
|
|
12572
13172
|
},
|
|
12573
13173
|
"maxScale": {
|
|
12574
13174
|
"description": "A number representing the maximum scale at which the layer will be visible. The number is the scale's denominator; thus, a value of 2400 represents a scale of 1/2,400. A value of 0 indicates that the layer will be visible no matter how far you zoom in.",
|
|
@@ -12629,29 +13229,12 @@
|
|
|
12629
13229
|
],
|
|
12630
13230
|
"type": "object"
|
|
12631
13231
|
},
|
|
12632
|
-
"esri.rest-api.LayerDefinitionJson.DataSourceJson": {
|
|
12633
|
-
"anyOf": [
|
|
12634
|
-
{
|
|
12635
|
-
"$ref": "#/definitions/esri.rest-api.LayerDefinitionJson.JoinTableDataSourceJson"
|
|
12636
|
-
},
|
|
12637
|
-
{
|
|
12638
|
-
"$ref": "#/definitions/esri.rest-api.LayerDefinitionJson.QueryTableDataSourceJson"
|
|
12639
|
-
},
|
|
12640
|
-
{
|
|
12641
|
-
"$ref": "#/definitions/esri.rest-api.LayerDefinitionJson.RasterDataSourceJson"
|
|
12642
|
-
},
|
|
12643
|
-
{
|
|
12644
|
-
"$ref": "#/definitions/esri.rest-api.LayerDefinitionJson.TableDataSourceJson"
|
|
12645
|
-
}
|
|
12646
|
-
],
|
|
12647
|
-
"description": "This object applies if the layerDefinition source is set to DynamicDataLayer. See {@link https://developers.arcgis.com/web-map-specification/objects/dataSource/} {@link https://developers.arcgis.com/web-scene-specification/objects/dataSource/}."
|
|
12648
|
-
},
|
|
12649
13232
|
"esri.rest-api.LayerDefinitionJson.DynamicDataLayerJson": {
|
|
12650
13233
|
"additionalProperties": false,
|
|
12651
13234
|
"description": "A dynamic data layer derived from a registered workspace. More information on this can be found in the ArcGIS REST API help. See {@link https://developers.arcgis.com/web-map-specification/objects/dynamicDataLayer_source/} {@link https://developers.arcgis.com/web-scene-specification/objects/dynamicDataLayer_source/}.",
|
|
12652
13235
|
"properties": {
|
|
12653
13236
|
"dataSource": {
|
|
12654
|
-
"$ref": "#/definitions/
|
|
13237
|
+
"$ref": "#/definitions/DataSourceJson",
|
|
12655
13238
|
"description": "This object applies if the layerDefinition source is set to DynamicDataLayer. See {@link https://developers.arcgis.com/web-map-specification/objects/dataSource/} {@link https://developers.arcgis.com/web-scene-specification/objects/dataSource/}."
|
|
12656
13239
|
},
|
|
12657
13240
|
"fields": {
|
|
@@ -12707,7 +13290,7 @@
|
|
|
12707
13290
|
"description": "Sets the offset distance, type and other parameters."
|
|
12708
13291
|
},
|
|
12709
13292
|
"mode": {
|
|
12710
|
-
"$ref": "
|
|
13293
|
+
"$ref": "ElevationModeJsonType",
|
|
12711
13294
|
"description": "Determines how the service elevation values are combined with the basemap elevation."
|
|
12712
13295
|
},
|
|
12713
13296
|
"offset": {
|
|
@@ -12721,16 +13304,6 @@
|
|
|
12721
13304
|
},
|
|
12722
13305
|
"type": "object"
|
|
12723
13306
|
},
|
|
12724
|
-
"esri.rest-api.LayerDefinitionJson.ElevationModeJsonType": {
|
|
12725
|
-
"description": "Defines how the graphic is placed with respect to the terrain surface.",
|
|
12726
|
-
"enum": [
|
|
12727
|
-
"absoluteHeight",
|
|
12728
|
-
"onTheGround",
|
|
12729
|
-
"relativeToGround",
|
|
12730
|
-
"relativeToScene"
|
|
12731
|
-
],
|
|
12732
|
-
"type": "string"
|
|
12733
|
-
},
|
|
12734
13307
|
"esri.rest-api.LayerDefinitionJson.FeatureExpressionInfoJson": {
|
|
12735
13308
|
"additionalProperties": false,
|
|
12736
13309
|
"description": "An object that defines an expression for per-feature elevation. If not set, geometry.z values are used for elevation. Unit is applied to the resulting expression value.",
|
|
@@ -12789,17 +13362,6 @@
|
|
|
12789
13362
|
],
|
|
12790
13363
|
"type": "object"
|
|
12791
13364
|
},
|
|
12792
|
-
"esri.rest-api.LayerDefinitionJson.FeatureReductionJson": {
|
|
12793
|
-
"anyOf": [
|
|
12794
|
-
{
|
|
12795
|
-
"$ref": "#/definitions/esri.rest-api.LayerDefinitionJson.FeatureReductionClusterJson"
|
|
12796
|
-
},
|
|
12797
|
-
{
|
|
12798
|
-
"$ref": "#/definitions/esri.rest-api.LayerDefinitionJson.FeatureReductionSelectionJson"
|
|
12799
|
-
}
|
|
12800
|
-
],
|
|
12801
|
-
"description": "Feature reductions declutter the screen by hiding features that would otherwise intersect with other features on screen."
|
|
12802
|
-
},
|
|
12803
13365
|
"esri.rest-api.LayerDefinitionJson.FeatureReductionSelectionJson": {
|
|
12804
13366
|
"additionalProperties": false,
|
|
12805
13367
|
"description": "Feature reduction of type selection declutters the screen by hiding features that would otherwise intersect with other features on screen. The default behavior of this feature reduction type is to select features by depth order, i.e. hide all features that would otherwise be overlapped by at least one other feature which is closer to the viewer.",
|
|
@@ -12834,20 +13396,12 @@
|
|
|
12834
13396
|
},
|
|
12835
13397
|
"type": "object"
|
|
12836
13398
|
},
|
|
12837
|
-
"esri.rest-api.LayerDefinitionJson.JoinJsonType": {
|
|
12838
|
-
"description": "The type of the JoinTableDataSource.",
|
|
12839
|
-
"enum": [
|
|
12840
|
-
"esriLeftInnerJoin",
|
|
12841
|
-
"esriLeftOuterJoin"
|
|
12842
|
-
],
|
|
12843
|
-
"type": "string"
|
|
12844
|
-
},
|
|
12845
13399
|
"esri.rest-api.LayerDefinitionJson.JoinTableDataSourceJson": {
|
|
12846
13400
|
"additionalProperties": false,
|
|
12847
13401
|
"description": "Join Table data source is the result of a join operation. Nested joins are supported. To use nested joins, set either leftTableSource or rightTableSource to be a joinTable. See {@link https://developers.arcgis.com/web-map-specification/objects/joinTableDataSource/} {@link https://developers.arcgis.com/web-scene-specification/objects/joinTableDataSource/}.",
|
|
12848
13402
|
"properties": {
|
|
12849
13403
|
"joinType": {
|
|
12850
|
-
"$ref": "
|
|
13404
|
+
"$ref": "JoinJsonType",
|
|
12851
13405
|
"description": "The type of join (left outer or left inner)."
|
|
12852
13406
|
},
|
|
12853
13407
|
"leftTableKey": {
|
|
@@ -12948,7 +13502,7 @@
|
|
|
12948
13502
|
"description": "The rectangular map extent that should be requested from the service, given in the format [[xmin, ymin],[xmax,ymax]]."
|
|
12949
13503
|
},
|
|
12950
13504
|
"featureReduction": {
|
|
12951
|
-
"$ref": "#/definitions/
|
|
13505
|
+
"$ref": "#/definitions/FeatureReductionJson",
|
|
12952
13506
|
"description": "Feature reductions declutter the screen by hiding features that would otherwise intersect with other features on screen."
|
|
12953
13507
|
},
|
|
12954
13508
|
"fieldOverrides": {
|
|
@@ -13004,7 +13558,10 @@
|
|
|
13004
13558
|
},
|
|
13005
13559
|
"id": {
|
|
13006
13560
|
"description": "The identifier assigned to the layer.",
|
|
13007
|
-
"type":
|
|
13561
|
+
"type": [
|
|
13562
|
+
"string",
|
|
13563
|
+
"number"
|
|
13564
|
+
]
|
|
13008
13565
|
},
|
|
13009
13566
|
"isDataVersioned": {
|
|
13010
13567
|
"description": "Boolean value indicating whether the data is versioned.",
|
|
@@ -13163,7 +13720,7 @@
|
|
|
13163
13720
|
"type": "number"
|
|
13164
13721
|
},
|
|
13165
13722
|
"timeIntervalUnits": {
|
|
13166
|
-
"$ref": "
|
|
13723
|
+
"$ref": "TemporalUnitJsonType",
|
|
13167
13724
|
"description": "Temporal unit in which the time interval is measured."
|
|
13168
13725
|
},
|
|
13169
13726
|
"timeReference": {
|
|
@@ -13345,23 +13902,6 @@
|
|
|
13345
13902
|
],
|
|
13346
13903
|
"type": "object"
|
|
13347
13904
|
},
|
|
13348
|
-
"esri.rest-api.LayerDefinitionJson.TemporalUnitJsonType": {
|
|
13349
|
-
"description": "Temporal units in which a time value can be measured.",
|
|
13350
|
-
"enum": [
|
|
13351
|
-
"esriTimeUnitsCenturies",
|
|
13352
|
-
"esriTimeUnitsDays",
|
|
13353
|
-
"esriTimeUnitsDecades",
|
|
13354
|
-
"esriTimeUnitsHours",
|
|
13355
|
-
"esriTimeUnitsMilliseconds",
|
|
13356
|
-
"esriTimeUnitsMinutes",
|
|
13357
|
-
"esriTimeUnitsMonths",
|
|
13358
|
-
"esriTimeUnitsSeconds",
|
|
13359
|
-
"esriTimeUnitsUnknown",
|
|
13360
|
-
"esriTimeUnitsWeeks",
|
|
13361
|
-
"esriTimeUnitsYears"
|
|
13362
|
-
],
|
|
13363
|
-
"type": "string"
|
|
13364
|
-
},
|
|
13365
13905
|
"esri.rest-api.LayerDefinitionJson.TimeInfoExportOptionsJson": {
|
|
13366
13906
|
"additionalProperties": false,
|
|
13367
13907
|
"description": "The default time-related export options for a layer. See https://developers.arcgis.com/web-map-specification/objects/timeInfoExportOptions/.",
|
|
@@ -13375,7 +13915,7 @@
|
|
|
13375
13915
|
"type": "number"
|
|
13376
13916
|
},
|
|
13377
13917
|
"timeOffsetUnits": {
|
|
13378
|
-
"$ref": "
|
|
13918
|
+
"$ref": "TemporalUnitJsonType",
|
|
13379
13919
|
"description": "Temporal unit in which the time offset is measured."
|
|
13380
13920
|
},
|
|
13381
13921
|
"useTime": {
|
|
@@ -13500,23 +14040,6 @@
|
|
|
13500
14040
|
],
|
|
13501
14041
|
"type": "object"
|
|
13502
14042
|
},
|
|
13503
|
-
"esri.rest-api.LayerJson.EffectJson": {
|
|
13504
|
-
"anyOf": [
|
|
13505
|
-
{
|
|
13506
|
-
"items": {
|
|
13507
|
-
"$ref": "#/definitions/esri.rest-api.LayerJson.ScaleDependentEffectJson"
|
|
13508
|
-
},
|
|
13509
|
-
"type": "array"
|
|
13510
|
-
},
|
|
13511
|
-
{
|
|
13512
|
-
"items": {
|
|
13513
|
-
"$ref": "#/definitions/EffectFunctionJson"
|
|
13514
|
-
},
|
|
13515
|
-
"type": "array"
|
|
13516
|
-
}
|
|
13517
|
-
],
|
|
13518
|
-
"description": "Effect provides various filter functions to achieve different visual effects similar to how image filters (photo apps) work."
|
|
13519
|
-
},
|
|
13520
14043
|
"esri.rest-api.LayerJson.GrayscaleEffectFunctionJson": {
|
|
13521
14044
|
"additionalProperties": false,
|
|
13522
14045
|
"description": "An Effect Function for the grayscale effect.",
|
|
@@ -13698,7 +14221,7 @@
|
|
|
13698
14221
|
"description": "A sequence of custom parameters appended to the URL of all requests related to supporting ArcGIS layer types."
|
|
13699
14222
|
},
|
|
13700
14223
|
"effect": {
|
|
13701
|
-
"$ref": "#/definitions/
|
|
14224
|
+
"$ref": "#/definitions/EffectJson",
|
|
13702
14225
|
"description": "Effect provides various filter functions to achieve different visual effects similar to how image filters (photo apps) work."
|
|
13703
14226
|
},
|
|
13704
14227
|
"id": {
|
|
@@ -13726,8 +14249,13 @@
|
|
|
13726
14249
|
"type": "array"
|
|
13727
14250
|
},
|
|
13728
14251
|
"listMode": {
|
|
13729
|
-
"
|
|
13730
|
-
"
|
|
14252
|
+
"description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}.",
|
|
14253
|
+
"enum": [
|
|
14254
|
+
"hide",
|
|
14255
|
+
"hide-children",
|
|
14256
|
+
"show"
|
|
14257
|
+
],
|
|
14258
|
+
"type": "string"
|
|
13731
14259
|
},
|
|
13732
14260
|
"maxScale": {
|
|
13733
14261
|
"description": "A number representing the maximum scale at which the layer will be visible. The number is the scale's denominator; thus, a value of 2400 represents a scale of 1/2,400. A value of 0 indicates that the layer will be visible no matter how far you zoom in.",
|
|
@@ -13991,7 +14519,7 @@
|
|
|
13991
14519
|
"type": "boolean"
|
|
13992
14520
|
},
|
|
13993
14521
|
"effect": {
|
|
13994
|
-
"$ref": "#/definitions/
|
|
14522
|
+
"$ref": "#/definitions/EffectJson",
|
|
13995
14523
|
"description": "Effect provides various filter functions to achieve different visual effects similar to how image filters (photo apps) work."
|
|
13996
14524
|
},
|
|
13997
14525
|
"id": {
|
|
@@ -14008,8 +14536,13 @@
|
|
|
14008
14536
|
"type": "string"
|
|
14009
14537
|
},
|
|
14010
14538
|
"listMode": {
|
|
14011
|
-
"
|
|
14012
|
-
"
|
|
14539
|
+
"description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}.",
|
|
14540
|
+
"enum": [
|
|
14541
|
+
"hide",
|
|
14542
|
+
"hide-children",
|
|
14543
|
+
"show"
|
|
14544
|
+
],
|
|
14545
|
+
"type": "string"
|
|
14013
14546
|
},
|
|
14014
14547
|
"maxScale": {
|
|
14015
14548
|
"description": "A number representing the maximum scale at which the layer will be visible. The number is the scale's denominator; thus, a value of 2400 represents a scale of 1/2,400. A value of 0 indicates that the layer will be visible no matter how far you zoom in.",
|
|
@@ -14067,40 +14600,6 @@
|
|
|
14067
14600
|
],
|
|
14068
14601
|
"type": "object"
|
|
14069
14602
|
},
|
|
14070
|
-
"esri.rest-api.PopupInfoJson.DateFormatJsonType": {
|
|
14071
|
-
"description": "Possible date formats for {@link FormatJson.dateFormat}.",
|
|
14072
|
-
"enum": [
|
|
14073
|
-
"dayShortMonthYear",
|
|
14074
|
-
"dayShortMonthYearLongTime",
|
|
14075
|
-
"dayShortMonthYearLongTime24",
|
|
14076
|
-
"dayShortMonthYearShortTime",
|
|
14077
|
-
"dayShortMonthYearShortTime24",
|
|
14078
|
-
"longDate",
|
|
14079
|
-
"longDateLongTime",
|
|
14080
|
-
"longDateLongTime24",
|
|
14081
|
-
"longDateShortTime",
|
|
14082
|
-
"longDateShortTime24",
|
|
14083
|
-
"longMonthDayYear",
|
|
14084
|
-
"longMonthDayYearLongTime",
|
|
14085
|
-
"longMonthDayYearLongTime24",
|
|
14086
|
-
"longMonthDayYearShortTime",
|
|
14087
|
-
"longMonthDayYearShortTime24",
|
|
14088
|
-
"longMonthYear",
|
|
14089
|
-
"shortDate",
|
|
14090
|
-
"shortDateLE",
|
|
14091
|
-
"shortDateLELongTime",
|
|
14092
|
-
"shortDateLELongTime24",
|
|
14093
|
-
"shortDateLEShortTime",
|
|
14094
|
-
"shortDateLEShortTime24",
|
|
14095
|
-
"shortDateLongTime",
|
|
14096
|
-
"shortDateLongTime24",
|
|
14097
|
-
"shortDateShortTime",
|
|
14098
|
-
"shortDateShortTime24",
|
|
14099
|
-
"shortMonthYear",
|
|
14100
|
-
"year"
|
|
14101
|
-
],
|
|
14102
|
-
"type": "string"
|
|
14103
|
-
},
|
|
14104
14603
|
"esri.rest-api.PopupInfoJson.FieldInfoJson": {
|
|
14105
14604
|
"additionalProperties": false,
|
|
14106
14605
|
"description": "Defines how a field in the dataset participates (or does not participate) in a pop-up window.\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/fieldInfo/} {@link https://developers.arcgis.com/web-scene-specification/objects/fieldInfo/}.",
|
|
@@ -14149,7 +14648,7 @@
|
|
|
14149
14648
|
"description": "The format object can be used with numerical or date fields to provide more detail about how values should be displayed in web map pop-up windows.\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/format/} {@link https://developers.arcgis.com/web-scene-specification/objects/format/}.",
|
|
14150
14649
|
"properties": {
|
|
14151
14650
|
"dateFormat": {
|
|
14152
|
-
"$ref": "
|
|
14651
|
+
"$ref": "DateFormatJsonType",
|
|
14153
14652
|
"description": "A string used with date fields to specify how the date should appear in pop-up windows."
|
|
14154
14653
|
},
|
|
14155
14654
|
"digitSeparator": {
|
|
@@ -14414,7 +14913,7 @@
|
|
|
14414
14913
|
"description": "The authoringInfo is an object containing metadata about the authoring process for creating a renderer object. This allows the authoring clients to save specific overridable settings so that next time it is accessed via the UI, their selections are remembered. Non-authoring clients should ignore it. In order to support the slider with color/size/transparency information, the selection of the various themes, classification, and additional properties are saved within this object.\n\nNote: The authoringInfo object is not required with a renderer. It is only used if rendering was generated using Map Viewer rendering tools.\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/authoringInfo/} {@link https://developers.arcgis.com/web-scene-specification/objects/authoringInfo/}.",
|
|
14415
14914
|
"properties": {
|
|
14416
14915
|
"classificationMethod": {
|
|
14417
|
-
"$ref": "
|
|
14916
|
+
"$ref": "esri.rest-api.RendererJson.ClassificationMethodJsonType",
|
|
14418
14917
|
"description": "Used for classed color or size. The default value is esriClassifyManual."
|
|
14419
14918
|
},
|
|
14420
14919
|
"colorRamp": {
|
|
@@ -14434,25 +14933,16 @@
|
|
|
14434
14933
|
"type": "number"
|
|
14435
14934
|
},
|
|
14436
14935
|
"type": {
|
|
14437
|
-
"$ref": "
|
|
14936
|
+
"$ref": "AuthoringInfoJsonType",
|
|
14438
14937
|
"description": "In case of classed renderers this is set to either classedSize or classedColor."
|
|
14439
14938
|
},
|
|
14440
14939
|
"visualVariables": {
|
|
14441
|
-
"$ref": "#/definitions/
|
|
14940
|
+
"$ref": "#/definitions/VisualVariableJson",
|
|
14442
14941
|
"description": "An array of visualVariable objects used for continuous color or size, simple, and unique values with feature opacity."
|
|
14443
14942
|
}
|
|
14444
14943
|
},
|
|
14445
14944
|
"type": "object"
|
|
14446
14945
|
},
|
|
14447
|
-
"esri.rest-api.RendererJson.AuthoringInfoJsonType": {
|
|
14448
|
-
"description": "The type of the AuthoringInfo.",
|
|
14449
|
-
"enum": [
|
|
14450
|
-
"classedColor",
|
|
14451
|
-
"classedSize",
|
|
14452
|
-
"predominance"
|
|
14453
|
-
],
|
|
14454
|
-
"type": "string"
|
|
14455
|
-
},
|
|
14456
14946
|
"esri.rest-api.RendererJson.ClassBreakInfoJson": {
|
|
14457
14947
|
"additionalProperties": false,
|
|
14458
14948
|
"description": "The classBreaksInfo object provides information about the class breaks associated with the renderer.\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/classBreakInfo/} {@link https://developers.arcgis.com/web-scene-specification/objects/classBreakInfo/}.",
|
|
@@ -14511,7 +15001,7 @@
|
|
|
14511
15001
|
"type": "array"
|
|
14512
15002
|
},
|
|
14513
15003
|
"classificationMethod": {
|
|
14514
|
-
"$ref": "
|
|
15004
|
+
"$ref": "esri.rest-api.RendererJson.ClassificationMethodJsonType",
|
|
14515
15005
|
"description": "Determines the classification method that was used to generate class breaks."
|
|
14516
15006
|
},
|
|
14517
15007
|
"defaultLabel": {
|
|
@@ -14552,7 +15042,7 @@
|
|
|
14552
15042
|
"type": "string"
|
|
14553
15043
|
},
|
|
14554
15044
|
"rotationType": {
|
|
14555
|
-
"$ref": "
|
|
15045
|
+
"$ref": "RotationJsonType",
|
|
14556
15046
|
"description": "String value (either geographic or arithmetic) which controls the origin and direction of rotation on point features. If the rotationType is defined as 'arithmetic', the symbol is rotated from East in a counter-clockwise direction where East is the 0� axis. If the rotationType is defined as 'geographic', the symbol is rotated from North in a clockwise direction where North is the 0� axis."
|
|
14557
15047
|
},
|
|
14558
15048
|
"type": {
|
|
@@ -14563,7 +15053,7 @@
|
|
|
14563
15053
|
"visualVariables": {
|
|
14564
15054
|
"description": "An array of visualVariable objects used for continuous color or size, simple, and unique values with feature opacity.",
|
|
14565
15055
|
"items": {
|
|
14566
|
-
"$ref": "#/definitions/
|
|
15056
|
+
"$ref": "#/definitions/VisualVariableJson"
|
|
14567
15057
|
},
|
|
14568
15058
|
"type": "array"
|
|
14569
15059
|
}
|
|
@@ -14576,18 +15066,6 @@
|
|
|
14576
15066
|
],
|
|
14577
15067
|
"type": "object"
|
|
14578
15068
|
},
|
|
14579
|
-
"esri.rest-api.RendererJson.ClassificationMethodJsonType": {
|
|
14580
|
-
"description": "The classification method for ClassBreaksRenderer.",
|
|
14581
|
-
"enum": [
|
|
14582
|
-
"esriClassifyEqualInterval",
|
|
14583
|
-
"esriClassifyGeometricalInterval",
|
|
14584
|
-
"esriClassifyManual",
|
|
14585
|
-
"esriClassifyNaturalBreaks",
|
|
14586
|
-
"esriClassifyQuantile",
|
|
14587
|
-
"esriClassifyStandardDeviation"
|
|
14588
|
-
],
|
|
14589
|
-
"type": "string"
|
|
14590
|
-
},
|
|
14591
15069
|
"esri.rest-api.RendererJson.ColorClassBreakInfoJson": {
|
|
14592
15070
|
"additionalProperties": false,
|
|
14593
15071
|
"description": "The classBreaksInfo object provides information about the class breaks associated with the renderer.\n\nSee {@link https://developers.arcgis.com/web-scene-specification/objects/colorClassBreakInfo/}.",
|
|
@@ -14622,8 +15100,11 @@
|
|
|
14622
15100
|
"colors": {
|
|
14623
15101
|
"description": "An array of colors that define the color ramp. Either colors or stops must be specified to construct the color ramp.",
|
|
14624
15102
|
"items": {
|
|
14625
|
-
"
|
|
14626
|
-
"
|
|
15103
|
+
"description": "Color is represented as a four-element array. The four elements represent values for red, green, blue, and alpha in that order. Values range from 0 through 255. If color is undefined for a symbol, the color value is null. See {@link https://developers.arcgis.com/web-map-specification/objects/color/} {@link https://developers.arcgis.com/web-scene-specification/objects/color/}.",
|
|
15104
|
+
"items": {
|
|
15105
|
+
"type": "number"
|
|
15106
|
+
},
|
|
15107
|
+
"type": "array"
|
|
14627
15108
|
},
|
|
14628
15109
|
"type": "array"
|
|
14629
15110
|
},
|
|
@@ -14829,7 +15310,7 @@
|
|
|
14829
15310
|
"type": "string"
|
|
14830
15311
|
},
|
|
14831
15312
|
"rotationType": {
|
|
14832
|
-
"$ref": "
|
|
15313
|
+
"$ref": "RotationJsonType",
|
|
14833
15314
|
"description": "String value (either geographic or arithmetic) which controls the origin and direction of rotation on point features. If the rotationType is defined as 'arithmetic', the symbol is rotated from East in a counter-clockwise direction where East is the 0� axis. If the rotationType is defined as 'geographic', the symbol is rotated from North in a clockwise direction where North is the 0� axis."
|
|
14834
15315
|
},
|
|
14835
15316
|
"type": {
|
|
@@ -14840,7 +15321,7 @@
|
|
|
14840
15321
|
"visualVariables": {
|
|
14841
15322
|
"description": "An array of visualVariable objects used for continuous color or size, simple, and unique values with feature opacity.",
|
|
14842
15323
|
"items": {
|
|
14843
|
-
"$ref": "#/definitions/
|
|
15324
|
+
"$ref": "#/definitions/VisualVariableJson"
|
|
14844
15325
|
},
|
|
14845
15326
|
"type": "array"
|
|
14846
15327
|
}
|
|
@@ -14850,17 +15331,6 @@
|
|
|
14850
15331
|
],
|
|
14851
15332
|
"type": "object"
|
|
14852
15333
|
},
|
|
14853
|
-
"esri.rest-api.RendererJson.MagnitudeUnitJsonType": {
|
|
14854
|
-
"description": "Units of magnitude.",
|
|
14855
|
-
"enum": [
|
|
14856
|
-
"esriFeetPerSecond",
|
|
14857
|
-
"esriKilometersPerHour",
|
|
14858
|
-
"esriKnots",
|
|
14859
|
-
"esriMetersPerSecond",
|
|
14860
|
-
"esriMilesPerHour"
|
|
14861
|
-
],
|
|
14862
|
-
"type": "string"
|
|
14863
|
-
},
|
|
14864
15334
|
"esri.rest-api.RendererJson.PointCloudClassBreaksRendererJson": {
|
|
14865
15335
|
"additionalProperties": false,
|
|
14866
15336
|
"description": "PointCloudClassBreaksRenderer defines the color of each point in a PointCloudLayer based on the value of a numeric attribute. Colors are assigned based on classes or ranges of data. Each point is assigned a symbol based on the class break in which the value of the attribute falls.\n\nSee {@link https://developers.arcgis.com/web-scene-specification/objects/pointCloudClassBreaksRenderer/}.",
|
|
@@ -14915,7 +15385,7 @@
|
|
|
14915
15385
|
"type": "string"
|
|
14916
15386
|
},
|
|
14917
15387
|
"rotationType": {
|
|
14918
|
-
"$ref": "
|
|
15388
|
+
"$ref": "RotationJsonType",
|
|
14919
15389
|
"description": "String value (either geographic or arithmetic) which controls the origin and direction of rotation on point features. If the rotationType is defined as 'arithmetic', the symbol is rotated from East in a counter-clockwise direction where East is the 0� axis. If the rotationType is defined as 'geographic', the symbol is rotated from North in a clockwise direction where North is the 0� axis."
|
|
14920
15390
|
},
|
|
14921
15391
|
"type": {
|
|
@@ -14926,7 +15396,7 @@
|
|
|
14926
15396
|
"visualVariables": {
|
|
14927
15397
|
"description": "An array of visualVariable objects used for continuous color or size, simple, and unique values with feature opacity.",
|
|
14928
15398
|
"items": {
|
|
14929
|
-
"$ref": "#/definitions/
|
|
15399
|
+
"$ref": "#/definitions/VisualVariableJson"
|
|
14930
15400
|
},
|
|
14931
15401
|
"type": "array"
|
|
14932
15402
|
}
|
|
@@ -15006,7 +15476,7 @@
|
|
|
15006
15476
|
"type": "string"
|
|
15007
15477
|
},
|
|
15008
15478
|
"rotationType": {
|
|
15009
|
-
"$ref": "
|
|
15479
|
+
"$ref": "RotationJsonType",
|
|
15010
15480
|
"description": "String value (either geographic or arithmetic) which controls the origin and direction of rotation on point features. If the rotationType is defined as 'arithmetic', the symbol is rotated from East in a counter-clockwise direction where East is the 0� axis. If the rotationType is defined as 'geographic', the symbol is rotated from North in a clockwise direction where North is the 0� axis."
|
|
15011
15481
|
},
|
|
15012
15482
|
"type": {
|
|
@@ -15017,7 +15487,7 @@
|
|
|
15017
15487
|
"visualVariables": {
|
|
15018
15488
|
"description": "An array of visualVariable objects used for continuous color or size, simple, and unique values with feature opacity.",
|
|
15019
15489
|
"items": {
|
|
15020
|
-
"$ref": "#/definitions/
|
|
15490
|
+
"$ref": "#/definitions/VisualVariableJson"
|
|
15021
15491
|
},
|
|
15022
15492
|
"type": "array"
|
|
15023
15493
|
}
|
|
@@ -15097,7 +15567,7 @@
|
|
|
15097
15567
|
"type": "string"
|
|
15098
15568
|
},
|
|
15099
15569
|
"rotationType": {
|
|
15100
|
-
"$ref": "
|
|
15570
|
+
"$ref": "RotationJsonType",
|
|
15101
15571
|
"description": "String value (either geographic or arithmetic) which controls the origin and direction of rotation on point features. If the rotationType is defined as 'arithmetic', the symbol is rotated from East in a counter-clockwise direction where East is the 0� axis. If the rotationType is defined as 'geographic', the symbol is rotated from North in a clockwise direction where North is the 0� axis."
|
|
15102
15572
|
},
|
|
15103
15573
|
"type": {
|
|
@@ -15108,7 +15578,7 @@
|
|
|
15108
15578
|
"visualVariables": {
|
|
15109
15579
|
"description": "An array of visualVariable objects used for continuous color or size, simple, and unique values with feature opacity.",
|
|
15110
15580
|
"items": {
|
|
15111
|
-
"$ref": "#/definitions/
|
|
15581
|
+
"$ref": "#/definitions/VisualVariableJson"
|
|
15112
15582
|
},
|
|
15113
15583
|
"type": "array"
|
|
15114
15584
|
}
|
|
@@ -15172,7 +15642,7 @@
|
|
|
15172
15642
|
"type": "string"
|
|
15173
15643
|
},
|
|
15174
15644
|
"rotationType": {
|
|
15175
|
-
"$ref": "
|
|
15645
|
+
"$ref": "RotationJsonType",
|
|
15176
15646
|
"description": "String value (either geographic or arithmetic) which controls the origin and direction of rotation on point features. If the rotationType is defined as 'arithmetic', the symbol is rotated from East in a counter-clockwise direction where East is the 0� axis. If the rotationType is defined as 'geographic', the symbol is rotated from North in a clockwise direction where North is the 0� axis."
|
|
15177
15647
|
},
|
|
15178
15648
|
"type": {
|
|
@@ -15183,7 +15653,7 @@
|
|
|
15183
15653
|
"visualVariables": {
|
|
15184
15654
|
"description": "An array of visualVariable objects used for continuous color or size, simple, and unique values with feature opacity.",
|
|
15185
15655
|
"items": {
|
|
15186
|
-
"$ref": "#/definitions/
|
|
15656
|
+
"$ref": "#/definitions/VisualVariableJson"
|
|
15187
15657
|
},
|
|
15188
15658
|
"type": "array"
|
|
15189
15659
|
}
|
|
@@ -15210,7 +15680,7 @@
|
|
|
15210
15680
|
"type": "string"
|
|
15211
15681
|
},
|
|
15212
15682
|
"defaultSymbol": {
|
|
15213
|
-
"$ref": "
|
|
15683
|
+
"$ref": "Symbol2DJson",
|
|
15214
15684
|
"description": "Symbol used when a value cannot be classified."
|
|
15215
15685
|
},
|
|
15216
15686
|
"rotationExpression": {
|
|
@@ -15218,7 +15688,7 @@
|
|
|
15218
15688
|
"type": "string"
|
|
15219
15689
|
},
|
|
15220
15690
|
"rotationType": {
|
|
15221
|
-
"$ref": "
|
|
15691
|
+
"$ref": "RotationJsonType",
|
|
15222
15692
|
"description": "String value (either geographic or arithmetic) which controls the origin and direction of rotation on point features. If the rotationType is defined as 'arithmetic', the symbol is rotated from East in a counter-clockwise direction where East is the 0� axis. If the rotationType is defined as 'geographic', the symbol is rotated from North in a clockwise direction where North is the 0� axis."
|
|
15223
15693
|
},
|
|
15224
15694
|
"type": {
|
|
@@ -15236,7 +15706,7 @@
|
|
|
15236
15706
|
"visualVariables": {
|
|
15237
15707
|
"description": "An array of visualVariable objects used for continuous color or size, simple, and unique values with feature opacity.",
|
|
15238
15708
|
"items": {
|
|
15239
|
-
"$ref": "#/definitions/
|
|
15709
|
+
"$ref": "#/definitions/VisualVariableJson"
|
|
15240
15710
|
},
|
|
15241
15711
|
"type": "array"
|
|
15242
15712
|
}
|
|
@@ -15248,47 +15718,6 @@
|
|
|
15248
15718
|
],
|
|
15249
15719
|
"type": "object"
|
|
15250
15720
|
},
|
|
15251
|
-
"esri.rest-api.RendererJson.RendererJson": {
|
|
15252
|
-
"anyOf": [
|
|
15253
|
-
{
|
|
15254
|
-
"$ref": "#/definitions/esri.rest-api.RendererJson.ClassBreaksRendererJson"
|
|
15255
|
-
},
|
|
15256
|
-
{
|
|
15257
|
-
"$ref": "#/definitions/esri.rest-api.RendererJson.HeatmapRendererJson"
|
|
15258
|
-
},
|
|
15259
|
-
{
|
|
15260
|
-
"$ref": "#/definitions/esri.rest-api.RendererJson.PointCloudClassBreaksRendererJson"
|
|
15261
|
-
},
|
|
15262
|
-
{
|
|
15263
|
-
"$ref": "#/definitions/esri.rest-api.RendererJson.PointCloudRGBRendererJson"
|
|
15264
|
-
},
|
|
15265
|
-
{
|
|
15266
|
-
"$ref": "#/definitions/esri.rest-api.RendererJson.PointCloudStretchRendererJson"
|
|
15267
|
-
},
|
|
15268
|
-
{
|
|
15269
|
-
"$ref": "#/definitions/esri.rest-api.RendererJson.PointCloudUniqueValueRendererJson"
|
|
15270
|
-
},
|
|
15271
|
-
{
|
|
15272
|
-
"$ref": "#/definitions/esri.rest-api.RendererJson.PredominanceRendererJson"
|
|
15273
|
-
},
|
|
15274
|
-
{
|
|
15275
|
-
"$ref": "#/definitions/esri.rest-api.RendererJson.SimpleRendererJson"
|
|
15276
|
-
},
|
|
15277
|
-
{
|
|
15278
|
-
"$ref": "#/definitions/esri.rest-api.RendererJson.TemporalRendererJson"
|
|
15279
|
-
},
|
|
15280
|
-
{
|
|
15281
|
-
"$ref": "#/definitions/esri.rest-api.RendererJson.UniqueValueFromStyleRendererJson"
|
|
15282
|
-
},
|
|
15283
|
-
{
|
|
15284
|
-
"$ref": "#/definitions/esri.rest-api.RendererJson.UniqueValueRendererJson"
|
|
15285
|
-
},
|
|
15286
|
-
{
|
|
15287
|
-
"$ref": "#/definitions/esri.rest-api.RendererJson.VectorFieldRendererJson"
|
|
15288
|
-
}
|
|
15289
|
-
],
|
|
15290
|
-
"description": "A renderer.\n\nPart of the ArcGIS REST API (see http://resources.arcgis.com/en/help/rest/apiref/renderer.html)."
|
|
15291
|
-
},
|
|
15292
15721
|
"esri.rest-api.RendererJson.RotationInfoJson": {
|
|
15293
15722
|
"additionalProperties": false,
|
|
15294
15723
|
"description": "The rotation visual variable defines how features rendered with marker symbols are rotated. The rotation value is determined by mapping the values to data in a field, or by other arithmetic means with a function.\n\nSee {@link https://developers.arcgis.com/web-scene-specification/objects/rotationInfo_visualVariable/} {@link https://developers.arcgis.com/web-map-specification/objects/rotationInfo_visualVariable/}.",
|
|
@@ -15306,7 +15735,7 @@
|
|
|
15306
15735
|
"type": "string"
|
|
15307
15736
|
},
|
|
15308
15737
|
"rotationType": {
|
|
15309
|
-
"$ref": "
|
|
15738
|
+
"$ref": "RotationJsonType",
|
|
15310
15739
|
"description": "Defines the origin and direction of rotation depending on how the angle of rotation was measured. Possible values are geographic which rotates the symbol from the north in a clockwise direction and arithmetic which rotates the symbol from the east in a counter-clockwise direction.\n\nMust be one of the following values: geographic, arithmetic."
|
|
15311
15740
|
},
|
|
15312
15741
|
"type": {
|
|
@@ -15325,14 +15754,6 @@
|
|
|
15325
15754
|
],
|
|
15326
15755
|
"type": "object"
|
|
15327
15756
|
},
|
|
15328
|
-
"esri.rest-api.RendererJson.RotationJsonType": {
|
|
15329
|
-
"description": "The type of rotation for RendererBase.",
|
|
15330
|
-
"enum": [
|
|
15331
|
-
"arithmetic",
|
|
15332
|
-
"geographic"
|
|
15333
|
-
],
|
|
15334
|
-
"type": "string"
|
|
15335
|
-
},
|
|
15336
15757
|
"esri.rest-api.RendererJson.SimpleRendererJson": {
|
|
15337
15758
|
"additionalProperties": false,
|
|
15338
15759
|
"description": "A simple renderer is a renderer that uses one symbol only.\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/simple_renderer/} {@link https://developers.arcgis.com/web-scene-specification/objects/simpleRenderer/}.",
|
|
@@ -15354,7 +15775,7 @@
|
|
|
15354
15775
|
"type": "string"
|
|
15355
15776
|
},
|
|
15356
15777
|
"rotationType": {
|
|
15357
|
-
"$ref": "
|
|
15778
|
+
"$ref": "RotationJsonType",
|
|
15358
15779
|
"description": "String value (either geographic or arithmetic) which controls the origin and direction of rotation on point features. If the rotationType is defined as 'arithmetic', the symbol is rotated from East in a counter-clockwise direction where East is the 0� axis. If the rotationType is defined as 'geographic', the symbol is rotated from North in a clockwise direction where North is the 0� axis."
|
|
15359
15780
|
},
|
|
15360
15781
|
"symbol": {
|
|
@@ -15369,7 +15790,7 @@
|
|
|
15369
15790
|
"visualVariables": {
|
|
15370
15791
|
"description": "An array of visualVariable objects used for continuous color or size, simple, and unique values with feature opacity.",
|
|
15371
15792
|
"items": {
|
|
15372
|
-
"$ref": "#/definitions/
|
|
15793
|
+
"$ref": "#/definitions/VisualVariableJson"
|
|
15373
15794
|
},
|
|
15374
15795
|
"type": "array"
|
|
15375
15796
|
}
|
|
@@ -15546,7 +15967,7 @@
|
|
|
15546
15967
|
"type": "string"
|
|
15547
15968
|
},
|
|
15548
15969
|
"rotationType": {
|
|
15549
|
-
"$ref": "
|
|
15970
|
+
"$ref": "RotationJsonType",
|
|
15550
15971
|
"description": "String value (either geographic or arithmetic) which controls the origin and direction of rotation on point features. If the rotationType is defined as 'arithmetic', the symbol is rotated from East in a counter-clockwise direction where East is the 0� axis. If the rotationType is defined as 'geographic', the symbol is rotated from North in a clockwise direction where North is the 0� axis."
|
|
15551
15972
|
},
|
|
15552
15973
|
"trackRenderer": {
|
|
@@ -15561,7 +15982,7 @@
|
|
|
15561
15982
|
"visualVariables": {
|
|
15562
15983
|
"description": "An array of visualVariable objects used for continuous color or size, simple, and unique values with feature opacity.",
|
|
15563
15984
|
"items": {
|
|
15564
|
-
"$ref": "#/definitions/
|
|
15985
|
+
"$ref": "#/definitions/VisualVariableJson"
|
|
15565
15986
|
},
|
|
15566
15987
|
"type": "array"
|
|
15567
15988
|
}
|
|
@@ -15676,7 +16097,7 @@
|
|
|
15676
16097
|
"type": "string"
|
|
15677
16098
|
},
|
|
15678
16099
|
"defaultSymbol": {
|
|
15679
|
-
"$ref": "
|
|
16100
|
+
"$ref": "Symbol3DJson",
|
|
15680
16101
|
"description": "The defaultSymbol on the renderer that get assigned to features with no value or features that do not fall within the configured data."
|
|
15681
16102
|
},
|
|
15682
16103
|
"field1": {
|
|
@@ -15688,7 +16109,7 @@
|
|
|
15688
16109
|
"type": "string"
|
|
15689
16110
|
},
|
|
15690
16111
|
"rotationType": {
|
|
15691
|
-
"$ref": "
|
|
16112
|
+
"$ref": "RotationJsonType",
|
|
15692
16113
|
"description": "String value (either geographic or arithmetic) which controls the origin and direction of rotation on point features. If the rotationType is defined as 'arithmetic', the symbol is rotated from East in a counter-clockwise direction where East is the 0� axis. If the rotationType is defined as 'geographic', the symbol is rotated from North in a clockwise direction where North is the 0� axis."
|
|
15693
16114
|
},
|
|
15694
16115
|
"styleName": {
|
|
@@ -15707,7 +16128,7 @@
|
|
|
15707
16128
|
"visualVariables": {
|
|
15708
16129
|
"description": "An array of visualVariable objects used for continuous color or size, simple, and unique values with feature opacity.",
|
|
15709
16130
|
"items": {
|
|
15710
|
-
"$ref": "#/definitions/
|
|
16131
|
+
"$ref": "#/definitions/VisualVariableJson"
|
|
15711
16132
|
},
|
|
15712
16133
|
"type": "array"
|
|
15713
16134
|
}
|
|
@@ -15804,7 +16225,7 @@
|
|
|
15804
16225
|
"type": "string"
|
|
15805
16226
|
},
|
|
15806
16227
|
"rotationType": {
|
|
15807
|
-
"$ref": "
|
|
16228
|
+
"$ref": "RotationJsonType",
|
|
15808
16229
|
"description": "String value (either geographic or arithmetic) which controls the origin and direction of rotation on point features. If the rotationType is defined as 'arithmetic', the symbol is rotated from East in a counter-clockwise direction where East is the 0� axis. If the rotationType is defined as 'geographic', the symbol is rotated from North in a clockwise direction where North is the 0� axis."
|
|
15809
16230
|
},
|
|
15810
16231
|
"type": {
|
|
@@ -15829,7 +16250,7 @@
|
|
|
15829
16250
|
"visualVariables": {
|
|
15830
16251
|
"description": "An array of visualVariable objects used for continuous color or size, simple, and unique values with feature opacity.",
|
|
15831
16252
|
"items": {
|
|
15832
|
-
"$ref": "#/definitions/
|
|
16253
|
+
"$ref": "#/definitions/VisualVariableJson"
|
|
15833
16254
|
},
|
|
15834
16255
|
"type": "array"
|
|
15835
16256
|
}
|
|
@@ -15862,11 +16283,11 @@
|
|
|
15862
16283
|
"type": "string"
|
|
15863
16284
|
},
|
|
15864
16285
|
"inputUnit": {
|
|
15865
|
-
"$ref": "
|
|
16286
|
+
"$ref": "MagnitudeUnitJsonType",
|
|
15866
16287
|
"description": "Input unit for Magnitude."
|
|
15867
16288
|
},
|
|
15868
16289
|
"outputUnit": {
|
|
15869
|
-
"$ref": "
|
|
16290
|
+
"$ref": "MagnitudeUnitJsonType",
|
|
15870
16291
|
"description": "Output unit for Magnitude."
|
|
15871
16292
|
},
|
|
15872
16293
|
"rotationExpression": {
|
|
@@ -15874,7 +16295,7 @@
|
|
|
15874
16295
|
"type": "string"
|
|
15875
16296
|
},
|
|
15876
16297
|
"rotationType": {
|
|
15877
|
-
"$ref": "
|
|
16298
|
+
"$ref": "RotationJsonType",
|
|
15878
16299
|
"description": "String value (either geographic or arithmetic) which controls the origin and direction of rotation on point features. If the rotationType is defined as 'arithmetic', the symbol is rotated from East in a counter-clockwise direction where East is the 0� axis. If the rotationType is defined as 'geographic', the symbol is rotated from North in a clockwise direction where North is the 0� axis."
|
|
15879
16300
|
},
|
|
15880
16301
|
"style": {
|
|
@@ -15906,7 +16327,7 @@
|
|
|
15906
16327
|
"visualVariables": {
|
|
15907
16328
|
"description": "An array of visualVariable objects used for continuous color or size, simple, and unique values with feature opacity.",
|
|
15908
16329
|
"items": {
|
|
15909
|
-
"$ref": "#/definitions/
|
|
16330
|
+
"$ref": "#/definitions/VisualVariableJson"
|
|
15910
16331
|
},
|
|
15911
16332
|
"type": "array"
|
|
15912
16333
|
}
|
|
@@ -15919,23 +16340,6 @@
|
|
|
15919
16340
|
],
|
|
15920
16341
|
"type": "object"
|
|
15921
16342
|
},
|
|
15922
|
-
"esri.rest-api.RendererJson.VisualVariableJson": {
|
|
15923
|
-
"anyOf": [
|
|
15924
|
-
{
|
|
15925
|
-
"$ref": "#/definitions/esri.rest-api.RendererJson.ColorInfoJson"
|
|
15926
|
-
},
|
|
15927
|
-
{
|
|
15928
|
-
"$ref": "#/definitions/esri.rest-api.RendererJson.SizeInfoJson"
|
|
15929
|
-
},
|
|
15930
|
-
{
|
|
15931
|
-
"$ref": "#/definitions/esri.rest-api.RendererJson.TransparencyInfoJson"
|
|
15932
|
-
},
|
|
15933
|
-
{
|
|
15934
|
-
"$ref": "#/definitions/esri.rest-api.RendererJson.RotationInfoJson"
|
|
15935
|
-
}
|
|
15936
|
-
],
|
|
15937
|
-
"description": "A visualVariable is an object containing the type of drawing property, the axis the variable is applied to, and additional properties for the variable. There are three types of visual variables, 'colorInfo', 'sizeInfo', and 'transparencyInfo'.\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/visualVariable/} {@link https://developers.arcgis.com/web-scene-specification/objects/visualVariable/}."
|
|
15938
|
-
},
|
|
15939
16343
|
"esri.rest-api.SceneLayerJson.SceneLayerJson": {
|
|
15940
16344
|
"additionalProperties": false,
|
|
15941
16345
|
"description": "The SceneLayer is a layer type designed for on-demand streaming and displaying large amounts of data in a SceneView. SceneLayers support two geometry types: Point and 3D Objects (e.g. Buildings).\n\nSee {@link https://developers.arcgis.com/web-scene-specification/objects/sceneLayer/}.",
|
|
@@ -15982,7 +16386,7 @@
|
|
|
15982
16386
|
"type": "boolean"
|
|
15983
16387
|
},
|
|
15984
16388
|
"effect": {
|
|
15985
|
-
"$ref": "#/definitions/
|
|
16389
|
+
"$ref": "#/definitions/EffectJson",
|
|
15986
16390
|
"description": "Effect provides various filter functions to achieve different visual effects similar to how image filters (photo apps) work."
|
|
15987
16391
|
},
|
|
15988
16392
|
"id": {
|
|
@@ -16003,8 +16407,13 @@
|
|
|
16003
16407
|
"type": "string"
|
|
16004
16408
|
},
|
|
16005
16409
|
"listMode": {
|
|
16006
|
-
"
|
|
16007
|
-
"
|
|
16410
|
+
"description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}.",
|
|
16411
|
+
"enum": [
|
|
16412
|
+
"hide",
|
|
16413
|
+
"hide-children",
|
|
16414
|
+
"show"
|
|
16415
|
+
],
|
|
16416
|
+
"type": "string"
|
|
16008
16417
|
},
|
|
16009
16418
|
"maxScale": {
|
|
16010
16419
|
"description": "A number representing the maximum scale at which the layer will be visible. The number is the scale's denominator; thus, a value of 2400 represents a scale of 1/2,400. A value of 0 indicates that the layer will be visible no matter how far you zoom in.",
|
|
@@ -16154,7 +16563,7 @@
|
|
|
16154
16563
|
"type": "boolean"
|
|
16155
16564
|
},
|
|
16156
16565
|
"effect": {
|
|
16157
|
-
"$ref": "#/definitions/
|
|
16566
|
+
"$ref": "#/definitions/EffectJson",
|
|
16158
16567
|
"description": "Effect provides various filter functions to achieve different visual effects similar to how image filters (photo apps) work."
|
|
16159
16568
|
},
|
|
16160
16569
|
"featureCollection": {
|
|
@@ -16192,8 +16601,13 @@
|
|
|
16192
16601
|
"type": "string"
|
|
16193
16602
|
},
|
|
16194
16603
|
"listMode": {
|
|
16195
|
-
"
|
|
16196
|
-
"
|
|
16604
|
+
"description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}.",
|
|
16605
|
+
"enum": [
|
|
16606
|
+
"hide",
|
|
16607
|
+
"hide-children",
|
|
16608
|
+
"show"
|
|
16609
|
+
],
|
|
16610
|
+
"type": "string"
|
|
16197
16611
|
},
|
|
16198
16612
|
"maxScale": {
|
|
16199
16613
|
"description": "A number representing the maximum scale at which the layer will be visible. The number is the scale's denominator; thus, a value of 2400 represents a scale of 1/2,400. A value of 0 indicates that the layer will be visible no matter how far you zoom in.",
|
|
@@ -16244,6 +16658,10 @@
|
|
|
16244
16658
|
"number"
|
|
16245
16659
|
]
|
|
16246
16660
|
},
|
|
16661
|
+
"timeAnimation": {
|
|
16662
|
+
"description": "Indicates whether to disable time animation if the layer supports it.",
|
|
16663
|
+
"type": "boolean"
|
|
16664
|
+
},
|
|
16247
16665
|
"title": {
|
|
16248
16666
|
"description": "A user-friendly title for the layer that can be used in a table of contents. If this is not included, then a title is derived from the service.",
|
|
16249
16667
|
"type": "string"
|
|
@@ -16409,13 +16827,17 @@
|
|
|
16409
16827
|
"description": "A sequence of custom parameters appended to the URL of all requests related to supporting ArcGIS layer types."
|
|
16410
16828
|
},
|
|
16411
16829
|
"effect": {
|
|
16412
|
-
"$ref": "#/definitions/
|
|
16830
|
+
"$ref": "#/definitions/EffectJson",
|
|
16413
16831
|
"description": "Effect provides various filter functions to achieve different visual effects similar to how image filters (photo apps) work."
|
|
16414
16832
|
},
|
|
16415
16833
|
"id": {
|
|
16416
16834
|
"description": "A unique identifying string for the layer.",
|
|
16417
16835
|
"type": "string"
|
|
16418
16836
|
},
|
|
16837
|
+
"itemId": {
|
|
16838
|
+
"description": "Optional string containing the item ID of the service if it's registered on ArcGIS Online or your organization's portal.",
|
|
16839
|
+
"type": "string"
|
|
16840
|
+
},
|
|
16419
16841
|
"layerDefinition": {
|
|
16420
16842
|
"$ref": "#/definitions/esri.rest-api.LayerDefinitionJson.LayerDefinitionJson",
|
|
16421
16843
|
"description": "A layerDefinition object defining the attribute schema and drawing information for the layer."
|
|
@@ -16433,8 +16855,13 @@
|
|
|
16433
16855
|
"type": "array"
|
|
16434
16856
|
},
|
|
16435
16857
|
"listMode": {
|
|
16436
|
-
"
|
|
16437
|
-
"
|
|
16858
|
+
"description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}.",
|
|
16859
|
+
"enum": [
|
|
16860
|
+
"hide",
|
|
16861
|
+
"hide-children",
|
|
16862
|
+
"show"
|
|
16863
|
+
],
|
|
16864
|
+
"type": "string"
|
|
16438
16865
|
},
|
|
16439
16866
|
"maxScale": {
|
|
16440
16867
|
"description": "A number representing the maximum scale at which the layer will be visible. The number is the scale's denominator; thus, a value of 2400 represents a scale of 1/2,400. A value of 0 indicates that the layer will be visible no matter how far you zoom in.",
|
|
@@ -16456,6 +16883,10 @@
|
|
|
16456
16883
|
"description": "Indicates whether to allow map authors the ability to control what layers should be shown in a client's legend.",
|
|
16457
16884
|
"type": "boolean"
|
|
16458
16885
|
},
|
|
16886
|
+
"timeAnimation": {
|
|
16887
|
+
"description": "Indicates whether to disable time animation if the layer supports it.",
|
|
16888
|
+
"type": "boolean"
|
|
16889
|
+
},
|
|
16459
16890
|
"title": {
|
|
16460
16891
|
"description": "A user-friendly title for the layer that can be used in a table of contents. If this is not included, then a title is derived from the service.",
|
|
16461
16892
|
"type": "string"
|
|
@@ -16490,7 +16921,7 @@
|
|
|
16490
16921
|
},
|
|
16491
16922
|
"esri.rest-api.SubtypeSublayerJson.SubtypeSublayerJson": {
|
|
16492
16923
|
"additionalProperties": false,
|
|
16493
|
-
"description": "Feature layers can be created by referencing a sublayer from either a map service or a feature service or by specifying a feature collection object. Use a map service if you just want to retrieve geometries and attributes from the server and symbolize them yourself. Use a feature service if you want to take advantage of symbols from the service's source map document. Also, use a feature service if you plan on doing editing with the feature sublayer. Feature layers honor any feature templates configured in the source map document. Feature collection objects are used to create a feature sublayer based on the supplied definition.\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/
|
|
16924
|
+
"description": "Feature layers can be created by referencing a sublayer from either a map service or a feature service or by specifying a feature collection object. Use a map service if you just want to retrieve geometries and attributes from the server and symbolize them yourself. Use a feature service if you want to take advantage of symbols from the service's source map document. Also, use a feature service if you plan on doing editing with the feature sublayer. Feature layers honor any feature templates configured in the source map document. Feature collection objects are used to create a feature sublayer based on the supplied definition.\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/subtypeLayer/} {@link https://developers.arcgis.com/web-scene-specification/objects/subtypeLayer/}.",
|
|
16494
16925
|
"properties": {
|
|
16495
16926
|
"blendMode": {
|
|
16496
16927
|
"description": "Blend modes are used to blend layers together to create an interesting effect in a layer, or even to produce what seems like a new layer.",
|
|
@@ -16537,9 +16968,13 @@
|
|
|
16537
16968
|
"type": "boolean"
|
|
16538
16969
|
},
|
|
16539
16970
|
"effect": {
|
|
16540
|
-
"$ref": "#/definitions/
|
|
16971
|
+
"$ref": "#/definitions/EffectJson",
|
|
16541
16972
|
"description": "Effect provides various filter functions to achieve different visual effects similar to how image filters (photo apps) work."
|
|
16542
16973
|
},
|
|
16974
|
+
"enableEditing": {
|
|
16975
|
+
"description": "Indicates whether a client should allow feature editing for this layer. Applicable only if the layer has editing capability.",
|
|
16976
|
+
"type": "boolean"
|
|
16977
|
+
},
|
|
16543
16978
|
"id": {
|
|
16544
16979
|
"description": "A unique identifying string for the layer.",
|
|
16545
16980
|
"type": "string"
|
|
@@ -16554,8 +16989,13 @@
|
|
|
16554
16989
|
"type": "string"
|
|
16555
16990
|
},
|
|
16556
16991
|
"listMode": {
|
|
16557
|
-
"
|
|
16558
|
-
"
|
|
16992
|
+
"description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}.",
|
|
16993
|
+
"enum": [
|
|
16994
|
+
"hide",
|
|
16995
|
+
"hide-children",
|
|
16996
|
+
"show"
|
|
16997
|
+
],
|
|
16998
|
+
"type": "string"
|
|
16559
16999
|
},
|
|
16560
17000
|
"maxScale": {
|
|
16561
17001
|
"description": "A number representing the maximum scale at which the layer will be visible. The number is the scale's denominator; thus, a value of 2400 represents a scale of 1/2,400. A value of 0 indicates that the layer will be visible no matter how far you zoom in.",
|
|
@@ -16625,8 +17065,11 @@
|
|
|
16625
17065
|
"description": "Optional border on the line that is used to improve the contrast of the line color against various background colors.",
|
|
16626
17066
|
"properties": {
|
|
16627
17067
|
"color": {
|
|
16628
|
-
"
|
|
16629
|
-
"
|
|
17068
|
+
"description": "The color of the border.",
|
|
17069
|
+
"items": {
|
|
17070
|
+
"type": "number"
|
|
17071
|
+
},
|
|
17072
|
+
"type": "array"
|
|
16630
17073
|
},
|
|
16631
17074
|
"transparency": {
|
|
16632
17075
|
"description": "A value between 100 (full transparency) and 0 (full opacity).",
|
|
@@ -16659,8 +17102,11 @@
|
|
|
16659
17102
|
"description": "Optional border on the line that is used to improve the contrast of the line color against various background colors."
|
|
16660
17103
|
},
|
|
16661
17104
|
"color": {
|
|
16662
|
-
"
|
|
16663
|
-
"
|
|
17105
|
+
"description": "The color of the line.",
|
|
17106
|
+
"items": {
|
|
17107
|
+
"type": "number"
|
|
17108
|
+
},
|
|
17109
|
+
"type": "array"
|
|
16664
17110
|
},
|
|
16665
17111
|
"size": {
|
|
16666
17112
|
"description": "The width of the line in points.",
|
|
@@ -16688,17 +17134,6 @@
|
|
|
16688
17134
|
},
|
|
16689
17135
|
"type": "array"
|
|
16690
17136
|
},
|
|
16691
|
-
"esri.rest-api.SymbolJson.EdgesJson": {
|
|
16692
|
-
"anyOf": [
|
|
16693
|
-
{
|
|
16694
|
-
"$ref": "#/definitions/esri.rest-api.SymbolJson.SketchEdgesJson"
|
|
16695
|
-
},
|
|
16696
|
-
{
|
|
16697
|
-
"$ref": "#/definitions/esri.rest-api.SymbolJson.SolidEdgesJson"
|
|
16698
|
-
}
|
|
16699
|
-
],
|
|
16700
|
-
"description": "Edges describe additional styles applied to visually important edges of 3D objects."
|
|
16701
|
-
},
|
|
16702
17137
|
"esri.rest-api.SymbolJson.ExtrudeSymbol3DLayerJson": {
|
|
16703
17138
|
"additionalProperties": false,
|
|
16704
17139
|
"description": "ExtrudeSymbol3DLayer is used to render Polygon geometries by extruding them upward from the ground, creating a 3D volumetric object.\n\nSee {@link https://developers.arcgis.com/web-scene-specification/objects/extrudeSymbol3DLayer/}.",
|
|
@@ -16735,7 +17170,7 @@
|
|
|
16735
17170
|
"type": "boolean"
|
|
16736
17171
|
},
|
|
16737
17172
|
"edges": {
|
|
16738
|
-
"$ref": "#/definitions/
|
|
17173
|
+
"$ref": "#/definitions/EdgesJson",
|
|
16739
17174
|
"description": "Specifies an edge visualization style. Only affects MeshSymbol3D."
|
|
16740
17175
|
},
|
|
16741
17176
|
"enable": {
|
|
@@ -16947,8 +17382,11 @@
|
|
|
16947
17382
|
"description": "The material used to shade the geometry.\n\nSee {@link https://developers.arcgis.com/web-scene-specification/objects/material/}.",
|
|
16948
17383
|
"properties": {
|
|
16949
17384
|
"color": {
|
|
16950
|
-
"
|
|
16951
|
-
"
|
|
17385
|
+
"description": "Color is represented as a three or four-element array.",
|
|
17386
|
+
"items": {
|
|
17387
|
+
"type": "number"
|
|
17388
|
+
},
|
|
17389
|
+
"type": "array"
|
|
16952
17390
|
},
|
|
16953
17391
|
"colorMixMode": {
|
|
16954
17392
|
"description": "Controls how symbolLayer or visualVariable color is applied onto the underlying geometry color/texture. This property only applies to FillSymbol3DLayer within MeshSymbol3D.\n\n- Tint: the feature's appearance (in terms of color) should be altered to match the symbol / visual variable color.\n- Replace: the feature's color is replaced with the symbol / visual variable color.\n- Multiply: the feature's color is multiplied with the symbol color.",
|
|
@@ -17063,8 +17501,11 @@
|
|
|
17063
17501
|
"description": "The outline of the point, line or polygon.\n\nSee {@link https://developers.arcgis.com/web-scene-specification/objects/outline/}.",
|
|
17064
17502
|
"properties": {
|
|
17065
17503
|
"color": {
|
|
17066
|
-
"
|
|
17067
|
-
"
|
|
17504
|
+
"description": "Color is represented as a three or four-element array.",
|
|
17505
|
+
"items": {
|
|
17506
|
+
"type": "number"
|
|
17507
|
+
},
|
|
17508
|
+
"type": "array"
|
|
17068
17509
|
},
|
|
17069
17510
|
"size": {
|
|
17070
17511
|
"description": "Outline size in points, positive only.",
|
|
@@ -17339,8 +17780,11 @@
|
|
|
17339
17780
|
"description": "Simple fill symbols can be used to symbolize polygon geometries.\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/esriSFS_symbol/}.",
|
|
17340
17781
|
"properties": {
|
|
17341
17782
|
"color": {
|
|
17342
|
-
"
|
|
17343
|
-
"
|
|
17783
|
+
"description": "Color is represented as a four-element array. The four elements represent values for red, green, blue, and alpha in that order. Values range from 0 through 255. If color is undefined for a symbol, the color value is null.",
|
|
17784
|
+
"items": {
|
|
17785
|
+
"type": "number"
|
|
17786
|
+
},
|
|
17787
|
+
"type": "array"
|
|
17344
17788
|
},
|
|
17345
17789
|
"outline": {
|
|
17346
17790
|
"$ref": "#/definitions/esri.rest-api.SymbolJson.SimpleLineSymbolJson",
|
|
@@ -17376,8 +17820,11 @@
|
|
|
17376
17820
|
"description": "Simple line symbols can be used to symbolize polyline geometries or outlines for polygon fills.\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/esriSLS_symbol/}.",
|
|
17377
17821
|
"properties": {
|
|
17378
17822
|
"color": {
|
|
17379
|
-
"
|
|
17380
|
-
"
|
|
17823
|
+
"description": "Color is represented as a four-element array. The four elements represent values for red, green, blue, and alpha in that order. Values range from 0 through 255. If color is undefined for a symbol, the color value is null.",
|
|
17824
|
+
"items": {
|
|
17825
|
+
"type": "number"
|
|
17826
|
+
},
|
|
17827
|
+
"type": "array"
|
|
17381
17828
|
},
|
|
17382
17829
|
"style": {
|
|
17383
17830
|
"description": "The line style.",
|
|
@@ -17415,8 +17862,11 @@
|
|
|
17415
17862
|
"type": "number"
|
|
17416
17863
|
},
|
|
17417
17864
|
"color": {
|
|
17418
|
-
"
|
|
17419
|
-
"
|
|
17865
|
+
"description": "Color is represented as a four-element array. The four elements represent values for red, green, blue, and alpha in that order. Values range from 0 through 255. If color is undefined for a symbol, the color value is null.",
|
|
17866
|
+
"items": {
|
|
17867
|
+
"type": "number"
|
|
17868
|
+
},
|
|
17869
|
+
"type": "array"
|
|
17420
17870
|
},
|
|
17421
17871
|
"outline": {
|
|
17422
17872
|
"$ref": "#/definitions/esri.rest-api.SymbolJson.SimpleLineSymbolJson",
|
|
@@ -17552,58 +18002,6 @@
|
|
|
17552
18002
|
],
|
|
17553
18003
|
"type": "object"
|
|
17554
18004
|
},
|
|
17555
|
-
"esri.rest-api.SymbolJson.Symbol2DJson": {
|
|
17556
|
-
"anyOf": [
|
|
17557
|
-
{
|
|
17558
|
-
"$ref": "#/definitions/esri.rest-api.SymbolJson.CIMSymbolJson"
|
|
17559
|
-
},
|
|
17560
|
-
{
|
|
17561
|
-
"$ref": "#/definitions/esri.rest-api.SymbolJson.PictureFillSymbolJson"
|
|
17562
|
-
},
|
|
17563
|
-
{
|
|
17564
|
-
"$ref": "#/definitions/esri.rest-api.SymbolJson.PictureMarkerSymbolJson"
|
|
17565
|
-
},
|
|
17566
|
-
{
|
|
17567
|
-
"$ref": "#/definitions/esri.rest-api.SymbolJson.SimpleFillSymbolJson"
|
|
17568
|
-
},
|
|
17569
|
-
{
|
|
17570
|
-
"$ref": "#/definitions/esri.rest-api.SymbolJson.SimpleLineSymbolJson"
|
|
17571
|
-
},
|
|
17572
|
-
{
|
|
17573
|
-
"$ref": "#/definitions/esri.rest-api.SymbolJson.SimpleMarkerSymbolJson"
|
|
17574
|
-
},
|
|
17575
|
-
{
|
|
17576
|
-
"$ref": "#/definitions/esri.rest-api.SymbolJson.TextSymbolJson"
|
|
17577
|
-
}
|
|
17578
|
-
],
|
|
17579
|
-
"description": "Symbol types used in web maps."
|
|
17580
|
-
},
|
|
17581
|
-
"esri.rest-api.SymbolJson.Symbol3DJson": {
|
|
17582
|
-
"anyOf": [
|
|
17583
|
-
{
|
|
17584
|
-
"$ref": "#/definitions/esri.rest-api.SymbolJson.CIMSymbolJson"
|
|
17585
|
-
},
|
|
17586
|
-
{
|
|
17587
|
-
"$ref": "#/definitions/esri.rest-api.SymbolJson.LabelSymbol3DJson"
|
|
17588
|
-
},
|
|
17589
|
-
{
|
|
17590
|
-
"$ref": "#/definitions/esri.rest-api.SymbolJson.LineSymbol3DJson"
|
|
17591
|
-
},
|
|
17592
|
-
{
|
|
17593
|
-
"$ref": "#/definitions/esri.rest-api.SymbolJson.MeshSymbol3DJson"
|
|
17594
|
-
},
|
|
17595
|
-
{
|
|
17596
|
-
"$ref": "#/definitions/esri.rest-api.SymbolJson.PointSymbol3DJson"
|
|
17597
|
-
},
|
|
17598
|
-
{
|
|
17599
|
-
"$ref": "#/definitions/esri.rest-api.SymbolJson.PolygonSymbol3DJson"
|
|
17600
|
-
},
|
|
17601
|
-
{
|
|
17602
|
-
"$ref": "#/definitions/esri.rest-api.SymbolJson.StyleSymbolReferenceJson"
|
|
17603
|
-
}
|
|
17604
|
-
],
|
|
17605
|
-
"description": "Symbol types used in web scenes."
|
|
17606
|
-
},
|
|
17607
18005
|
"esri.rest-api.SymbolJson.SymbolJson": {
|
|
17608
18006
|
"anyOf": [
|
|
17609
18007
|
{
|
|
@@ -17688,28 +18086,40 @@
|
|
|
17688
18086
|
"type": "number"
|
|
17689
18087
|
},
|
|
17690
18088
|
"backgroundColor": {
|
|
17691
|
-
"
|
|
17692
|
-
"
|
|
18089
|
+
"description": "Background color of the text.",
|
|
18090
|
+
"items": {
|
|
18091
|
+
"type": "number"
|
|
18092
|
+
},
|
|
18093
|
+
"type": "array"
|
|
17693
18094
|
},
|
|
17694
18095
|
"borderLineColor": {
|
|
17695
|
-
"
|
|
17696
|
-
"
|
|
18096
|
+
"description": "Value indicating the the color of the border line.",
|
|
18097
|
+
"items": {
|
|
18098
|
+
"type": "number"
|
|
18099
|
+
},
|
|
18100
|
+
"type": "array"
|
|
17697
18101
|
},
|
|
17698
18102
|
"borderLineSize": {
|
|
17699
18103
|
"description": "Numeric value indicating the the size of the border line in points.",
|
|
17700
18104
|
"type": "number"
|
|
17701
18105
|
},
|
|
17702
18106
|
"color": {
|
|
17703
|
-
"
|
|
17704
|
-
"
|
|
18107
|
+
"description": "Color is represented as a four-element array. The four elements represent values for red, green, blue, and alpha in that order. Values range from 0 through 255. If color is undefined for a symbol, the color value is null.",
|
|
18108
|
+
"items": {
|
|
18109
|
+
"type": "number"
|
|
18110
|
+
},
|
|
18111
|
+
"type": "array"
|
|
17705
18112
|
},
|
|
17706
18113
|
"font": {
|
|
17707
18114
|
"$ref": "#/definitions/esri.rest-api.SymbolJson.FontJson",
|
|
17708
18115
|
"description": "Font used for text symbols."
|
|
17709
18116
|
},
|
|
17710
18117
|
"haloColor": {
|
|
17711
|
-
"
|
|
17712
|
-
"
|
|
18118
|
+
"description": "Color of the halo around the text.",
|
|
18119
|
+
"items": {
|
|
18120
|
+
"type": "number"
|
|
18121
|
+
},
|
|
18122
|
+
"type": "array"
|
|
17713
18123
|
},
|
|
17714
18124
|
"haloSize": {
|
|
17715
18125
|
"description": "Numeric value indicating the point size of a halo around the text symbol.",
|
|
@@ -17875,7 +18285,7 @@
|
|
|
17875
18285
|
"description": "A sequence of custom parameters appended to the URL of all requests related to supporting ArcGIS layer types."
|
|
17876
18286
|
},
|
|
17877
18287
|
"effect": {
|
|
17878
|
-
"$ref": "#/definitions/
|
|
18288
|
+
"$ref": "#/definitions/EffectJson",
|
|
17879
18289
|
"description": "Effect provides various filter functions to achieve different visual effects similar to how image filters (photo apps) work."
|
|
17880
18290
|
},
|
|
17881
18291
|
"id": {
|
|
@@ -17896,8 +18306,13 @@
|
|
|
17896
18306
|
"type": "string"
|
|
17897
18307
|
},
|
|
17898
18308
|
"listMode": {
|
|
17899
|
-
"
|
|
17900
|
-
"
|
|
18309
|
+
"description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}.",
|
|
18310
|
+
"enum": [
|
|
18311
|
+
"hide",
|
|
18312
|
+
"hide-children",
|
|
18313
|
+
"show"
|
|
18314
|
+
],
|
|
18315
|
+
"type": "string"
|
|
17901
18316
|
},
|
|
17902
18317
|
"maxScale": {
|
|
17903
18318
|
"description": "A number representing the maximum scale at which the layer will be visible. The number is the scale's denominator; thus, a value of 2400 represents a scale of 1/2,400. A value of 0 indicates that the layer will be visible no matter how far you zoom in.",
|
|
@@ -18003,7 +18418,7 @@
|
|
|
18003
18418
|
"type": "array"
|
|
18004
18419
|
},
|
|
18005
18420
|
"effect": {
|
|
18006
|
-
"$ref": "#/definitions/
|
|
18421
|
+
"$ref": "#/definitions/EffectJson",
|
|
18007
18422
|
"description": "Effect provides various filter functions to achieve different visual effects similar to how image filters (photo apps) work."
|
|
18008
18423
|
},
|
|
18009
18424
|
"exclusionAreas": {
|
|
@@ -18035,8 +18450,13 @@
|
|
|
18035
18450
|
"type": "array"
|
|
18036
18451
|
},
|
|
18037
18452
|
"listMode": {
|
|
18038
|
-
"
|
|
18039
|
-
"
|
|
18453
|
+
"description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}.",
|
|
18454
|
+
"enum": [
|
|
18455
|
+
"hide",
|
|
18456
|
+
"hide-children",
|
|
18457
|
+
"show"
|
|
18458
|
+
],
|
|
18459
|
+
"type": "string"
|
|
18040
18460
|
},
|
|
18041
18461
|
"maxScale": {
|
|
18042
18462
|
"description": "A number representing the maximum scale at which the layer will be visible. The number is the scale's denominator; thus, a value of 2400 represents a scale of 1/2,400. A value of 0 indicates that the layer will be visible no matter how far you zoom in.",
|
|
@@ -18167,7 +18587,7 @@
|
|
|
18167
18587
|
"description": "A sequence of custom parameters appended to the URL of all requests related to supporting ArcGIS layer types."
|
|
18168
18588
|
},
|
|
18169
18589
|
"effect": {
|
|
18170
|
-
"$ref": "#/definitions/
|
|
18590
|
+
"$ref": "#/definitions/EffectJson",
|
|
18171
18591
|
"description": "Effect provides various filter functions to achieve different visual effects similar to how image filters (photo apps) work."
|
|
18172
18592
|
},
|
|
18173
18593
|
"id": {
|
|
@@ -18188,8 +18608,13 @@
|
|
|
18188
18608
|
"type": "string"
|
|
18189
18609
|
},
|
|
18190
18610
|
"listMode": {
|
|
18191
|
-
"
|
|
18192
|
-
"
|
|
18611
|
+
"description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}.",
|
|
18612
|
+
"enum": [
|
|
18613
|
+
"hide",
|
|
18614
|
+
"hide-children",
|
|
18615
|
+
"show"
|
|
18616
|
+
],
|
|
18617
|
+
"type": "string"
|
|
18193
18618
|
},
|
|
18194
18619
|
"maxScale": {
|
|
18195
18620
|
"description": "A number representing the maximum scale at which the layer will be visible. The number is the scale's denominator; thus, a value of 2400 represents a scale of 1/2,400. A value of 0 indicates that the layer will be visible no matter how far you zoom in.",
|
|
@@ -18286,7 +18711,7 @@
|
|
|
18286
18711
|
"type": "number"
|
|
18287
18712
|
},
|
|
18288
18713
|
"targetGeometry": {
|
|
18289
|
-
"$ref": "#/definitions/
|
|
18714
|
+
"$ref": "#/definitions/GeometryJson",
|
|
18290
18715
|
"description": "The target geometry framed by the viewpoint."
|
|
18291
18716
|
}
|
|
18292
18717
|
},
|
|
@@ -18379,7 +18804,7 @@
|
|
|
18379
18804
|
"type": "boolean"
|
|
18380
18805
|
},
|
|
18381
18806
|
"effect": {
|
|
18382
|
-
"$ref": "#/definitions/
|
|
18807
|
+
"$ref": "#/definitions/EffectJson",
|
|
18383
18808
|
"description": "Effect provides various filter functions to achieve different visual effects similar to how image filters (photo apps) work."
|
|
18384
18809
|
},
|
|
18385
18810
|
"id": {
|
|
@@ -18400,8 +18825,13 @@
|
|
|
18400
18825
|
"type": "string"
|
|
18401
18826
|
},
|
|
18402
18827
|
"listMode": {
|
|
18403
|
-
"
|
|
18404
|
-
"
|
|
18828
|
+
"description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}.",
|
|
18829
|
+
"enum": [
|
|
18830
|
+
"hide",
|
|
18831
|
+
"hide-children",
|
|
18832
|
+
"show"
|
|
18833
|
+
],
|
|
18834
|
+
"type": "string"
|
|
18405
18835
|
},
|
|
18406
18836
|
"maxScale": {
|
|
18407
18837
|
"description": "A number representing the maximum scale at which the layer will be visible. The number is the scale's denominator; thus, a value of 2400 represents a scale of 1/2,400. A value of 0 indicates that the layer will be visible no matter how far you zoom in.",
|
|
@@ -18527,7 +18957,7 @@
|
|
|
18527
18957
|
"description": "A sequence of custom parameters to all WMS requests. These parameters are applied to GetCapabilities, GetMap, and GetFeatureInfo requests. If used with the customLayerParameters property, customParameters will not take precedence."
|
|
18528
18958
|
},
|
|
18529
18959
|
"effect": {
|
|
18530
|
-
"$ref": "#/definitions/
|
|
18960
|
+
"$ref": "#/definitions/EffectJson",
|
|
18531
18961
|
"description": "Effect provides various filter functions to achieve different visual effects similar to how image filters (photo apps) work."
|
|
18532
18962
|
},
|
|
18533
18963
|
"extent": {
|
|
@@ -18585,8 +19015,13 @@
|
|
|
18585
19015
|
"type": "string"
|
|
18586
19016
|
},
|
|
18587
19017
|
"listMode": {
|
|
18588
|
-
"
|
|
18589
|
-
"
|
|
19018
|
+
"description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}.",
|
|
19019
|
+
"enum": [
|
|
19020
|
+
"hide",
|
|
19021
|
+
"hide-children",
|
|
19022
|
+
"show"
|
|
19023
|
+
],
|
|
19024
|
+
"type": "string"
|
|
18590
19025
|
},
|
|
18591
19026
|
"mapUrl": {
|
|
18592
19027
|
"description": "The URL of the WMS map. You should also supply the url property, which is the URL of the WMS capabilities document.",
|
|
@@ -18810,7 +19245,7 @@
|
|
|
18810
19245
|
"type": "string"
|
|
18811
19246
|
},
|
|
18812
19247
|
"effect": {
|
|
18813
|
-
"$ref": "#/definitions/
|
|
19248
|
+
"$ref": "#/definitions/EffectJson",
|
|
18814
19249
|
"description": "Effect provides various filter functions to achieve different visual effects similar to how image filters (photo apps) work."
|
|
18815
19250
|
},
|
|
18816
19251
|
"fullExtent": {
|
|
@@ -18835,8 +19270,13 @@
|
|
|
18835
19270
|
"type": "string"
|
|
18836
19271
|
},
|
|
18837
19272
|
"listMode": {
|
|
18838
|
-
"
|
|
18839
|
-
"
|
|
19273
|
+
"description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}.",
|
|
19274
|
+
"enum": [
|
|
19275
|
+
"hide",
|
|
19276
|
+
"hide-children",
|
|
19277
|
+
"show"
|
|
19278
|
+
],
|
|
19279
|
+
"type": "string"
|
|
18840
19280
|
},
|
|
18841
19281
|
"maxScale": {
|
|
18842
19282
|
"description": "A number representing the maximum scale at which the layer will be visible. The number is the scale's denominator; thus, a value of 2400 represents a scale of 1/2,400. A value of 0 indicates that the layer will be visible no matter how far you zoom in.",
|
|
@@ -19176,7 +19616,22 @@
|
|
|
19176
19616
|
"$ref": "#/definitions/HasFeatures"
|
|
19177
19617
|
},
|
|
19178
19618
|
{
|
|
19179
|
-
"$ref": "#/definitions/esri.
|
|
19619
|
+
"$ref": "#/definitions/esri.Extent"
|
|
19620
|
+
},
|
|
19621
|
+
{
|
|
19622
|
+
"$ref": "#/definitions/esri.Multipoint"
|
|
19623
|
+
},
|
|
19624
|
+
{
|
|
19625
|
+
"$ref": "#/definitions/esri.Point"
|
|
19626
|
+
},
|
|
19627
|
+
{
|
|
19628
|
+
"$ref": "#/definitions/esri.Polygon"
|
|
19629
|
+
},
|
|
19630
|
+
{
|
|
19631
|
+
"$ref": "#/definitions/esri.Polyline"
|
|
19632
|
+
},
|
|
19633
|
+
{
|
|
19634
|
+
"$ref": "#/definitions/esri.Mesh"
|
|
19180
19635
|
},
|
|
19181
19636
|
{
|
|
19182
19637
|
"$ref": "#/definitions/esri.rest-api.FeatureJson.FeatureJson"
|
|
@@ -19216,7 +19671,22 @@
|
|
|
19216
19671
|
"items": {
|
|
19217
19672
|
"anyOf": [
|
|
19218
19673
|
{
|
|
19219
|
-
"$ref": "#/definitions/esri.
|
|
19674
|
+
"$ref": "#/definitions/esri.Extent"
|
|
19675
|
+
},
|
|
19676
|
+
{
|
|
19677
|
+
"$ref": "#/definitions/esri.Multipoint"
|
|
19678
|
+
},
|
|
19679
|
+
{
|
|
19680
|
+
"$ref": "#/definitions/esri.Point"
|
|
19681
|
+
},
|
|
19682
|
+
{
|
|
19683
|
+
"$ref": "#/definitions/esri.Polygon"
|
|
19684
|
+
},
|
|
19685
|
+
{
|
|
19686
|
+
"$ref": "#/definitions/esri.Polyline"
|
|
19687
|
+
},
|
|
19688
|
+
{
|
|
19689
|
+
"$ref": "#/definitions/esri.Mesh"
|
|
19220
19690
|
},
|
|
19221
19691
|
{
|
|
19222
19692
|
"$ref": "#/definitions/esri.rest-api.GeometryJson.PointJson"
|
|
@@ -19286,7 +19756,7 @@
|
|
|
19286
19756
|
},
|
|
19287
19757
|
"geometry.project:output": {
|
|
19288
19758
|
"items": {
|
|
19289
|
-
"$ref": "#/definitions
|
|
19759
|
+
"$ref": "#/definitions/@arcgis.core.unionTypes.GeometryUnion"
|
|
19290
19760
|
},
|
|
19291
19761
|
"type": "array"
|
|
19292
19762
|
},
|
|
@@ -20193,7 +20663,22 @@
|
|
|
20193
20663
|
"$ref": "#/definitions/HasFeatures"
|
|
20194
20664
|
},
|
|
20195
20665
|
{
|
|
20196
|
-
"$ref": "#/definitions/esri.
|
|
20666
|
+
"$ref": "#/definitions/esri.Extent"
|
|
20667
|
+
},
|
|
20668
|
+
{
|
|
20669
|
+
"$ref": "#/definitions/esri.Multipoint"
|
|
20670
|
+
},
|
|
20671
|
+
{
|
|
20672
|
+
"$ref": "#/definitions/esri.Point"
|
|
20673
|
+
},
|
|
20674
|
+
{
|
|
20675
|
+
"$ref": "#/definitions/esri.Polygon"
|
|
20676
|
+
},
|
|
20677
|
+
{
|
|
20678
|
+
"$ref": "#/definitions/esri.Polyline"
|
|
20679
|
+
},
|
|
20680
|
+
{
|
|
20681
|
+
"$ref": "#/definitions/esri.Mesh"
|
|
20197
20682
|
},
|
|
20198
20683
|
{
|
|
20199
20684
|
"$ref": "#/definitions/esri.rest-api.FeatureJson.FeatureJson"
|
|
@@ -20233,7 +20718,22 @@
|
|
|
20233
20718
|
"items": {
|
|
20234
20719
|
"anyOf": [
|
|
20235
20720
|
{
|
|
20236
|
-
"$ref": "#/definitions/esri.
|
|
20721
|
+
"$ref": "#/definitions/esri.Extent"
|
|
20722
|
+
},
|
|
20723
|
+
{
|
|
20724
|
+
"$ref": "#/definitions/esri.Multipoint"
|
|
20725
|
+
},
|
|
20726
|
+
{
|
|
20727
|
+
"$ref": "#/definitions/esri.Point"
|
|
20728
|
+
},
|
|
20729
|
+
{
|
|
20730
|
+
"$ref": "#/definitions/esri.Polygon"
|
|
20731
|
+
},
|
|
20732
|
+
{
|
|
20733
|
+
"$ref": "#/definitions/esri.Polyline"
|
|
20734
|
+
},
|
|
20735
|
+
{
|
|
20736
|
+
"$ref": "#/definitions/esri.Mesh"
|
|
20237
20737
|
},
|
|
20238
20738
|
{
|
|
20239
20739
|
"$ref": "#/definitions/esri.rest-api.GeometryJson.PointJson"
|
|
@@ -20448,7 +20948,22 @@
|
|
|
20448
20948
|
"$ref": "#/definitions/HasFeatures"
|
|
20449
20949
|
},
|
|
20450
20950
|
{
|
|
20451
|
-
"$ref": "#/definitions/esri.
|
|
20951
|
+
"$ref": "#/definitions/esri.Extent"
|
|
20952
|
+
},
|
|
20953
|
+
{
|
|
20954
|
+
"$ref": "#/definitions/esri.Multipoint"
|
|
20955
|
+
},
|
|
20956
|
+
{
|
|
20957
|
+
"$ref": "#/definitions/esri.Point"
|
|
20958
|
+
},
|
|
20959
|
+
{
|
|
20960
|
+
"$ref": "#/definitions/esri.Polygon"
|
|
20961
|
+
},
|
|
20962
|
+
{
|
|
20963
|
+
"$ref": "#/definitions/esri.Polyline"
|
|
20964
|
+
},
|
|
20965
|
+
{
|
|
20966
|
+
"$ref": "#/definitions/esri.Mesh"
|
|
20452
20967
|
},
|
|
20453
20968
|
{
|
|
20454
20969
|
"$ref": "#/definitions/esri.rest-api.FeatureJson.FeatureJson"
|
|
@@ -20488,7 +21003,22 @@
|
|
|
20488
21003
|
"items": {
|
|
20489
21004
|
"anyOf": [
|
|
20490
21005
|
{
|
|
20491
|
-
"$ref": "#/definitions/esri.
|
|
21006
|
+
"$ref": "#/definitions/esri.Extent"
|
|
21007
|
+
},
|
|
21008
|
+
{
|
|
21009
|
+
"$ref": "#/definitions/esri.Multipoint"
|
|
21010
|
+
},
|
|
21011
|
+
{
|
|
21012
|
+
"$ref": "#/definitions/esri.Point"
|
|
21013
|
+
},
|
|
21014
|
+
{
|
|
21015
|
+
"$ref": "#/definitions/esri.Polygon"
|
|
21016
|
+
},
|
|
21017
|
+
{
|
|
21018
|
+
"$ref": "#/definitions/esri.Polyline"
|
|
21019
|
+
},
|
|
21020
|
+
{
|
|
21021
|
+
"$ref": "#/definitions/esri.Mesh"
|
|
20492
21022
|
},
|
|
20493
21023
|
{
|
|
20494
21024
|
"$ref": "#/definitions/esri.rest-api.GeometryJson.PointJson"
|
|
@@ -20734,7 +21264,22 @@
|
|
|
20734
21264
|
"$ref": "#/definitions/HasFeatures"
|
|
20735
21265
|
},
|
|
20736
21266
|
{
|
|
20737
|
-
"$ref": "#/definitions/esri.
|
|
21267
|
+
"$ref": "#/definitions/esri.Extent"
|
|
21268
|
+
},
|
|
21269
|
+
{
|
|
21270
|
+
"$ref": "#/definitions/esri.Multipoint"
|
|
21271
|
+
},
|
|
21272
|
+
{
|
|
21273
|
+
"$ref": "#/definitions/esri.Point"
|
|
21274
|
+
},
|
|
21275
|
+
{
|
|
21276
|
+
"$ref": "#/definitions/esri.Polygon"
|
|
21277
|
+
},
|
|
21278
|
+
{
|
|
21279
|
+
"$ref": "#/definitions/esri.Polyline"
|
|
21280
|
+
},
|
|
21281
|
+
{
|
|
21282
|
+
"$ref": "#/definitions/esri.Mesh"
|
|
20738
21283
|
},
|
|
20739
21284
|
{
|
|
20740
21285
|
"$ref": "#/definitions/esri.rest-api.FeatureJson.FeatureJson"
|
|
@@ -20774,7 +21319,22 @@
|
|
|
20774
21319
|
"items": {
|
|
20775
21320
|
"anyOf": [
|
|
20776
21321
|
{
|
|
20777
|
-
"$ref": "#/definitions/esri.
|
|
21322
|
+
"$ref": "#/definitions/esri.Extent"
|
|
21323
|
+
},
|
|
21324
|
+
{
|
|
21325
|
+
"$ref": "#/definitions/esri.Multipoint"
|
|
21326
|
+
},
|
|
21327
|
+
{
|
|
21328
|
+
"$ref": "#/definitions/esri.Point"
|
|
21329
|
+
},
|
|
21330
|
+
{
|
|
21331
|
+
"$ref": "#/definitions/esri.Polygon"
|
|
21332
|
+
},
|
|
21333
|
+
{
|
|
21334
|
+
"$ref": "#/definitions/esri.Polyline"
|
|
21335
|
+
},
|
|
21336
|
+
{
|
|
21337
|
+
"$ref": "#/definitions/esri.Mesh"
|
|
20778
21338
|
},
|
|
20779
21339
|
{
|
|
20780
21340
|
"$ref": "#/definitions/esri.rest-api.GeometryJson.PointJson"
|
|
@@ -21062,58 +21622,58 @@
|
|
|
21062
21622
|
"measurement.set-default-symbol:input": {
|
|
21063
21623
|
"anyOf": [
|
|
21064
21624
|
{
|
|
21065
|
-
"$ref": "#/definitions/esri.
|
|
21625
|
+
"$ref": "#/definitions/esri.PictureFillSymbol"
|
|
21066
21626
|
},
|
|
21067
21627
|
{
|
|
21068
|
-
"$ref": "#/definitions/esri.
|
|
21628
|
+
"$ref": "#/definitions/esri.PictureMarkerSymbol"
|
|
21069
21629
|
},
|
|
21070
21630
|
{
|
|
21071
|
-
"$ref": "#/definitions/esri.
|
|
21631
|
+
"$ref": "#/definitions/esri.SimpleFillSymbol"
|
|
21072
21632
|
},
|
|
21073
21633
|
{
|
|
21074
|
-
"$ref": "#/definitions/esri.
|
|
21634
|
+
"$ref": "#/definitions/esri.SimpleLineSymbol"
|
|
21075
21635
|
},
|
|
21076
21636
|
{
|
|
21077
|
-
"$ref": "#/definitions/esri.
|
|
21637
|
+
"$ref": "#/definitions/esri.SimpleMarkerSymbol"
|
|
21078
21638
|
},
|
|
21079
21639
|
{
|
|
21080
|
-
"$ref": "#/definitions/esri.
|
|
21640
|
+
"$ref": "#/definitions/esri.TextSymbol"
|
|
21081
21641
|
},
|
|
21082
21642
|
{
|
|
21083
|
-
"$ref": "#/definitions/esri.
|
|
21643
|
+
"$ref": "#/definitions/esri.LineSymbol3D"
|
|
21084
21644
|
},
|
|
21085
21645
|
{
|
|
21086
|
-
"$ref": "#/definitions/esri.
|
|
21646
|
+
"$ref": "#/definitions/esri.PointSymbol3D"
|
|
21087
21647
|
},
|
|
21088
21648
|
{
|
|
21089
|
-
"$ref": "#/definitions/esri.
|
|
21649
|
+
"$ref": "#/definitions/esri.PolygonSymbol3D"
|
|
21090
21650
|
},
|
|
21091
21651
|
{
|
|
21092
|
-
"$ref": "#/definitions/esri.
|
|
21652
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.PictureFillSymbolJson"
|
|
21093
21653
|
},
|
|
21094
21654
|
{
|
|
21095
|
-
"$ref": "#/definitions/esri.
|
|
21655
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.PictureMarkerSymbolJson"
|
|
21096
21656
|
},
|
|
21097
21657
|
{
|
|
21098
|
-
"$ref": "#/definitions/esri.
|
|
21658
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.SimpleFillSymbolJson"
|
|
21099
21659
|
},
|
|
21100
21660
|
{
|
|
21101
|
-
"$ref": "#/definitions/esri.
|
|
21661
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.SimpleLineSymbolJson"
|
|
21102
21662
|
},
|
|
21103
21663
|
{
|
|
21104
|
-
"$ref": "#/definitions/esri.
|
|
21664
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.SimpleMarkerSymbolJson"
|
|
21105
21665
|
},
|
|
21106
21666
|
{
|
|
21107
|
-
"$ref": "#/definitions/esri.
|
|
21667
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.TextSymbolJson"
|
|
21108
21668
|
},
|
|
21109
21669
|
{
|
|
21110
|
-
"$ref": "#/definitions/esri.
|
|
21670
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.LineSymbol3DJson"
|
|
21111
21671
|
},
|
|
21112
21672
|
{
|
|
21113
|
-
"$ref": "#/definitions/esri.
|
|
21673
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.PointSymbol3DJson"
|
|
21114
21674
|
},
|
|
21115
21675
|
{
|
|
21116
|
-
"$ref": "#/definitions/esri.
|
|
21676
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.PolygonSymbol3DJson"
|
|
21117
21677
|
},
|
|
21118
21678
|
{
|
|
21119
21679
|
"$ref": "#/definitions/HasSymbol"
|
|
@@ -22184,7 +22744,7 @@
|
|
|
22184
22744
|
"$ref": "#/definitions/AddNodeToGeometryArgs"
|
|
22185
22745
|
},
|
|
22186
22746
|
"sketching.add-node-to-geometry:output": {
|
|
22187
|
-
"$ref": "#/definitions
|
|
22747
|
+
"$ref": "#/definitions/@arcgis.core.unionTypes.GeometryUnion"
|
|
22188
22748
|
},
|
|
22189
22749
|
"sketching.add-point": {
|
|
22190
22750
|
"description": "Adds a point to polygon, polyline, or multipoint using the selected index as the point to insert after.",
|