@vertigis/viewer-spec 59.20.0 → 59.20.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/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 +2 -2
- package/messaging/schema/common-action.schema.json +49 -5
- package/messaging/schema/common-event.schema.json +38 -0
- package/messaging/schema/mobile-action.schema.json +49 -5
- package/messaging/schema/mobile-event.schema.json +38 -0
- package/messaging/schema/web-action.schema.json +76 -29
- package/messaging/schema/web-event.schema.json +41 -0
- package/package.json +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
package/messaging/common.d.ts
CHANGED
|
@@ -24,14 +24,14 @@ import type { TableExtension, TableReference as TableReferenceObject } from "@ve
|
|
|
24
24
|
import type { LabelingInfoJson } from "@vertigis/arcgis-extensions/json/DrawingInfoJson";
|
|
25
25
|
import type { FeatureJson } from "@vertigis/arcgis-extensions/json/FeatureJson";
|
|
26
26
|
import type { GeometryJson } from "@vertigis/arcgis-extensions/json/GeometryJson";
|
|
27
|
-
import type { LineSymbol3DJson, PictureFillSymbolJson, PictureMarkerSymbolJson, PointSymbol3DJson, PolygonSymbol3DJson, SimpleFillSymbolJson, SimpleLineSymbolJson, SimpleMarkerSymbolJson, TextSymbolJson } from "@vertigis/arcgis-extensions/json/SymbolJson";
|
|
27
|
+
import type { CIMSymbolReferenceJson, LineSymbol3DJson, PictureFillSymbolJson, PictureMarkerSymbolJson, PointSymbol3DJson, PolygonSymbol3DJson, SimpleFillSymbolJson, SimpleLineSymbolJson, SimpleMarkerSymbolJson, TextSymbolJson } from "@vertigis/arcgis-extensions/json/SymbolJson";
|
|
28
28
|
import type { ViewpointJson } from "@vertigis/arcgis-extensions/json/ViewpointJson";
|
|
29
29
|
import type { BasemapExtension } from "@vertigis/arcgis-extensions/mapping/BasemapExtension";
|
|
30
30
|
import type { Bookmark, BookmarkProperties } from "@vertigis/arcgis-extensions/mapping/Bookmark";
|
|
31
31
|
import type { LayerExtension, LayerReference as LayerReferenceObject } from "@vertigis/arcgis-extensions/mapping/LayerExtension";
|
|
32
32
|
import type { MapExtension } from "@vertigis/arcgis-extensions/mapping/MapExtension";
|
|
33
33
|
import type { SublayerExtension } from "@vertigis/arcgis-extensions/mapping/SublayerExtension";
|
|
34
|
-
import type {
|
|
34
|
+
import type { SublayerLike } from "@vertigis/arcgis-extensions/support/esri";
|
|
35
35
|
import type { ItemRef } from "../app-config/common/ItemRef";
|
|
36
36
|
import type { TimeSpan } from "./DotNetTypes";
|
|
37
37
|
/**
|
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
"$ref": "#/definitions/esri.LineSymbol3D"
|
|
55
55
|
},
|
|
56
56
|
{
|
|
57
|
-
"$ref": "esri.MeshSymbol3D"
|
|
57
|
+
"$ref": "#/definitions/esri.MeshSymbol3D"
|
|
58
58
|
},
|
|
59
59
|
{
|
|
60
60
|
"$ref": "#/definitions/esri.PointSymbol3D"
|
|
@@ -1037,6 +1037,9 @@
|
|
|
1037
1037
|
{
|
|
1038
1038
|
"$ref": "#/definitions/esri.rest-api.SymbolJson.CIMSymbolJson"
|
|
1039
1039
|
},
|
|
1040
|
+
{
|
|
1041
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.CIMSymbolReferenceJson"
|
|
1042
|
+
},
|
|
1040
1043
|
{
|
|
1041
1044
|
"$ref": "#/definitions/esri.rest-api.SymbolJson.PictureFillSymbolJson"
|
|
1042
1045
|
},
|
|
@@ -1395,7 +1398,7 @@
|
|
|
1395
1398
|
"$ref": "#/definitions/esri.LineSymbol3D"
|
|
1396
1399
|
},
|
|
1397
1400
|
{
|
|
1398
|
-
"$ref": "esri.MeshSymbol3D"
|
|
1401
|
+
"$ref": "#/definitions/esri.MeshSymbol3D"
|
|
1399
1402
|
},
|
|
1400
1403
|
{
|
|
1401
1404
|
"$ref": "#/definitions/esri.PointSymbol3D"
|
|
@@ -1406,6 +1409,9 @@
|
|
|
1406
1409
|
{
|
|
1407
1410
|
"$ref": "esri.WebStyleSymbol"
|
|
1408
1411
|
},
|
|
1412
|
+
{
|
|
1413
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.CIMSymbolReferenceJson"
|
|
1414
|
+
},
|
|
1409
1415
|
{
|
|
1410
1416
|
"$ref": "#/definitions/esri.rest-api.SymbolJson.PictureFillSymbolJson"
|
|
1411
1417
|
},
|
|
@@ -1432,9 +1438,6 @@
|
|
|
1432
1438
|
},
|
|
1433
1439
|
{
|
|
1434
1440
|
"$ref": "#/definitions/esri.rest-api.SymbolJson.PolygonSymbol3DJson"
|
|
1435
|
-
},
|
|
1436
|
-
{
|
|
1437
|
-
"$ref": "esri.CIMSymbolReference"
|
|
1438
1441
|
}
|
|
1439
1442
|
],
|
|
1440
1443
|
"description": "The symbol that should be used to create the graphic. If null, a default is provided."
|
|
@@ -3761,6 +3764,9 @@
|
|
|
3761
3764
|
{
|
|
3762
3765
|
"$ref": "#/definitions/esri.rest-api.SymbolJson.CIMSymbolJson"
|
|
3763
3766
|
},
|
|
3767
|
+
{
|
|
3768
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.CIMSymbolReferenceJson"
|
|
3769
|
+
},
|
|
3764
3770
|
{
|
|
3765
3771
|
"$ref": "#/definitions/esri.rest-api.SymbolJson.PictureFillSymbolJson"
|
|
3766
3772
|
},
|
|
@@ -3787,6 +3793,9 @@
|
|
|
3787
3793
|
{
|
|
3788
3794
|
"$ref": "#/definitions/esri.rest-api.SymbolJson.CIMSymbolJson"
|
|
3789
3795
|
},
|
|
3796
|
+
{
|
|
3797
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.CIMSymbolReferenceJson"
|
|
3798
|
+
},
|
|
3790
3799
|
{
|
|
3791
3800
|
"$ref": "#/definitions/esri.rest-api.SymbolJson.LabelSymbol3DJson"
|
|
3792
3801
|
},
|
|
@@ -4679,6 +4688,9 @@
|
|
|
4679
4688
|
"esri.Mesh": {
|
|
4680
4689
|
"$ref": "esri/geometry/Mesh"
|
|
4681
4690
|
},
|
|
4691
|
+
"esri.MeshSymbol3D": {
|
|
4692
|
+
"$ref": "esri/symbols/MeshSymbol3D"
|
|
4693
|
+
},
|
|
4682
4694
|
"esri.Multipoint": {
|
|
4683
4695
|
"$ref": "esri/geometry/Multipoint"
|
|
4684
4696
|
},
|
|
@@ -12115,6 +12127,35 @@
|
|
|
12115
12127
|
],
|
|
12116
12128
|
"type": "object"
|
|
12117
12129
|
},
|
|
12130
|
+
"esri.rest-api.SymbolJson.CIMSymbolReferenceJson": {
|
|
12131
|
+
"additionalProperties": false,
|
|
12132
|
+
"description": "Represents a symbol reference that contains a CIM symbol. More properties and details on CIM symbol reference and CIM symbols are available on github: https://github.com/Esri/cim-spec/blob/main/docs/v3/Overview-Symbols.md, https://github.com/Esri/cim-spec/blob/main/docs/v3/CIMRenderers.md#CIMSymbolReference.\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/cimSymbolReference/}.",
|
|
12133
|
+
"properties": {
|
|
12134
|
+
"symbol": {
|
|
12135
|
+
"anyOf": [
|
|
12136
|
+
{
|
|
12137
|
+
"$ref": "esri.CIMLineSymbol"
|
|
12138
|
+
},
|
|
12139
|
+
{
|
|
12140
|
+
"$ref": "esri.CIMPointSymbol"
|
|
12141
|
+
},
|
|
12142
|
+
{
|
|
12143
|
+
"$ref": "esri.CIMPolygonSymbol"
|
|
12144
|
+
}
|
|
12145
|
+
],
|
|
12146
|
+
"description": "The symbol. Supported values are CIMPointSymbol, CIMLineSymbol, and CIMPolygonSymbol."
|
|
12147
|
+
},
|
|
12148
|
+
"type": {
|
|
12149
|
+
"const": "CIMSymbolReference",
|
|
12150
|
+
"description": "Specifies the type of symbol used.",
|
|
12151
|
+
"type": "string"
|
|
12152
|
+
}
|
|
12153
|
+
},
|
|
12154
|
+
"required": [
|
|
12155
|
+
"type"
|
|
12156
|
+
],
|
|
12157
|
+
"type": "object"
|
|
12158
|
+
},
|
|
12118
12159
|
"esri.rest-api.SymbolJson.CalloutJson": {
|
|
12119
12160
|
"additionalProperties": false,
|
|
12120
12161
|
"description": "Callout configuration for a symbol.",
|
|
@@ -13014,6 +13055,9 @@
|
|
|
13014
13055
|
{
|
|
13015
13056
|
"$ref": "#/definitions/esri.rest-api.SymbolJson.CIMSymbolJson"
|
|
13016
13057
|
},
|
|
13058
|
+
{
|
|
13059
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.CIMSymbolReferenceJson"
|
|
13060
|
+
},
|
|
13017
13061
|
{
|
|
13018
13062
|
"$ref": "#/definitions/esri.rest-api.SymbolJson.PictureFillSymbolJson"
|
|
13019
13063
|
},
|
|
@@ -742,6 +742,9 @@
|
|
|
742
742
|
{
|
|
743
743
|
"$ref": "#/definitions/esri.rest-api.SymbolJson.CIMSymbolJson"
|
|
744
744
|
},
|
|
745
|
+
{
|
|
746
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.CIMSymbolReferenceJson"
|
|
747
|
+
},
|
|
745
748
|
{
|
|
746
749
|
"$ref": "#/definitions/esri.rest-api.SymbolJson.PictureFillSymbolJson"
|
|
747
750
|
},
|
|
@@ -768,6 +771,9 @@
|
|
|
768
771
|
{
|
|
769
772
|
"$ref": "#/definitions/esri.rest-api.SymbolJson.CIMSymbolJson"
|
|
770
773
|
},
|
|
774
|
+
{
|
|
775
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.CIMSymbolReferenceJson"
|
|
776
|
+
},
|
|
771
777
|
{
|
|
772
778
|
"$ref": "#/definitions/esri.rest-api.SymbolJson.LabelSymbol3DJson"
|
|
773
779
|
},
|
|
@@ -8104,6 +8110,35 @@
|
|
|
8104
8110
|
],
|
|
8105
8111
|
"type": "object"
|
|
8106
8112
|
},
|
|
8113
|
+
"esri.rest-api.SymbolJson.CIMSymbolReferenceJson": {
|
|
8114
|
+
"additionalProperties": false,
|
|
8115
|
+
"description": "Represents a symbol reference that contains a CIM symbol. More properties and details on CIM symbol reference and CIM symbols are available on github: https://github.com/Esri/cim-spec/blob/main/docs/v3/Overview-Symbols.md, https://github.com/Esri/cim-spec/blob/main/docs/v3/CIMRenderers.md#CIMSymbolReference.\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/cimSymbolReference/}.",
|
|
8116
|
+
"properties": {
|
|
8117
|
+
"symbol": {
|
|
8118
|
+
"anyOf": [
|
|
8119
|
+
{
|
|
8120
|
+
"$ref": "esri.CIMLineSymbol"
|
|
8121
|
+
},
|
|
8122
|
+
{
|
|
8123
|
+
"$ref": "esri.CIMPointSymbol"
|
|
8124
|
+
},
|
|
8125
|
+
{
|
|
8126
|
+
"$ref": "esri.CIMPolygonSymbol"
|
|
8127
|
+
}
|
|
8128
|
+
],
|
|
8129
|
+
"description": "The symbol. Supported values are CIMPointSymbol, CIMLineSymbol, and CIMPolygonSymbol."
|
|
8130
|
+
},
|
|
8131
|
+
"type": {
|
|
8132
|
+
"const": "CIMSymbolReference",
|
|
8133
|
+
"description": "Specifies the type of symbol used.",
|
|
8134
|
+
"type": "string"
|
|
8135
|
+
}
|
|
8136
|
+
},
|
|
8137
|
+
"required": [
|
|
8138
|
+
"type"
|
|
8139
|
+
],
|
|
8140
|
+
"type": "object"
|
|
8141
|
+
},
|
|
8107
8142
|
"esri.rest-api.SymbolJson.CalloutJson": {
|
|
8108
8143
|
"additionalProperties": false,
|
|
8109
8144
|
"description": "Callout configuration for a symbol.",
|
|
@@ -9003,6 +9038,9 @@
|
|
|
9003
9038
|
{
|
|
9004
9039
|
"$ref": "#/definitions/esri.rest-api.SymbolJson.CIMSymbolJson"
|
|
9005
9040
|
},
|
|
9041
|
+
{
|
|
9042
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.CIMSymbolReferenceJson"
|
|
9043
|
+
},
|
|
9006
9044
|
{
|
|
9007
9045
|
"$ref": "#/definitions/esri.rest-api.SymbolJson.PictureFillSymbolJson"
|
|
9008
9046
|
},
|
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
"$ref": "#/definitions/esri.LineSymbol3D"
|
|
55
55
|
},
|
|
56
56
|
{
|
|
57
|
-
"$ref": "esri.MeshSymbol3D"
|
|
57
|
+
"$ref": "#/definitions/esri.MeshSymbol3D"
|
|
58
58
|
},
|
|
59
59
|
{
|
|
60
60
|
"$ref": "#/definitions/esri.PointSymbol3D"
|
|
@@ -1138,6 +1138,9 @@
|
|
|
1138
1138
|
{
|
|
1139
1139
|
"$ref": "#/definitions/esri.rest-api.SymbolJson.CIMSymbolJson"
|
|
1140
1140
|
},
|
|
1141
|
+
{
|
|
1142
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.CIMSymbolReferenceJson"
|
|
1143
|
+
},
|
|
1141
1144
|
{
|
|
1142
1145
|
"$ref": "#/definitions/esri.rest-api.SymbolJson.PictureFillSymbolJson"
|
|
1143
1146
|
},
|
|
@@ -1539,7 +1542,7 @@
|
|
|
1539
1542
|
"$ref": "#/definitions/esri.LineSymbol3D"
|
|
1540
1543
|
},
|
|
1541
1544
|
{
|
|
1542
|
-
"$ref": "esri.MeshSymbol3D"
|
|
1545
|
+
"$ref": "#/definitions/esri.MeshSymbol3D"
|
|
1543
1546
|
},
|
|
1544
1547
|
{
|
|
1545
1548
|
"$ref": "#/definitions/esri.PointSymbol3D"
|
|
@@ -1550,6 +1553,9 @@
|
|
|
1550
1553
|
{
|
|
1551
1554
|
"$ref": "esri.WebStyleSymbol"
|
|
1552
1555
|
},
|
|
1556
|
+
{
|
|
1557
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.CIMSymbolReferenceJson"
|
|
1558
|
+
},
|
|
1553
1559
|
{
|
|
1554
1560
|
"$ref": "#/definitions/esri.rest-api.SymbolJson.PictureFillSymbolJson"
|
|
1555
1561
|
},
|
|
@@ -1576,9 +1582,6 @@
|
|
|
1576
1582
|
},
|
|
1577
1583
|
{
|
|
1578
1584
|
"$ref": "#/definitions/esri.rest-api.SymbolJson.PolygonSymbol3DJson"
|
|
1579
|
-
},
|
|
1580
|
-
{
|
|
1581
|
-
"$ref": "esri.CIMSymbolReference"
|
|
1582
1585
|
}
|
|
1583
1586
|
],
|
|
1584
1587
|
"description": "The symbol that should be used to create the graphic. If null, a default is provided."
|
|
@@ -4925,6 +4928,9 @@
|
|
|
4925
4928
|
{
|
|
4926
4929
|
"$ref": "#/definitions/esri.rest-api.SymbolJson.CIMSymbolJson"
|
|
4927
4930
|
},
|
|
4931
|
+
{
|
|
4932
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.CIMSymbolReferenceJson"
|
|
4933
|
+
},
|
|
4928
4934
|
{
|
|
4929
4935
|
"$ref": "#/definitions/esri.rest-api.SymbolJson.PictureFillSymbolJson"
|
|
4930
4936
|
},
|
|
@@ -4951,6 +4957,9 @@
|
|
|
4951
4957
|
{
|
|
4952
4958
|
"$ref": "#/definitions/esri.rest-api.SymbolJson.CIMSymbolJson"
|
|
4953
4959
|
},
|
|
4960
|
+
{
|
|
4961
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.CIMSymbolReferenceJson"
|
|
4962
|
+
},
|
|
4954
4963
|
{
|
|
4955
4964
|
"$ref": "#/definitions/esri.rest-api.SymbolJson.LabelSymbol3DJson"
|
|
4956
4965
|
},
|
|
@@ -5998,6 +6007,9 @@
|
|
|
5998
6007
|
"esri.Mesh": {
|
|
5999
6008
|
"$ref": "esri/geometry/Mesh"
|
|
6000
6009
|
},
|
|
6010
|
+
"esri.MeshSymbol3D": {
|
|
6011
|
+
"$ref": "esri/symbols/MeshSymbol3D"
|
|
6012
|
+
},
|
|
6001
6013
|
"esri.Multipoint": {
|
|
6002
6014
|
"$ref": "esri/geometry/Multipoint"
|
|
6003
6015
|
},
|
|
@@ -13434,6 +13446,35 @@
|
|
|
13434
13446
|
],
|
|
13435
13447
|
"type": "object"
|
|
13436
13448
|
},
|
|
13449
|
+
"esri.rest-api.SymbolJson.CIMSymbolReferenceJson": {
|
|
13450
|
+
"additionalProperties": false,
|
|
13451
|
+
"description": "Represents a symbol reference that contains a CIM symbol. More properties and details on CIM symbol reference and CIM symbols are available on github: https://github.com/Esri/cim-spec/blob/main/docs/v3/Overview-Symbols.md, https://github.com/Esri/cim-spec/blob/main/docs/v3/CIMRenderers.md#CIMSymbolReference.\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/cimSymbolReference/}.",
|
|
13452
|
+
"properties": {
|
|
13453
|
+
"symbol": {
|
|
13454
|
+
"anyOf": [
|
|
13455
|
+
{
|
|
13456
|
+
"$ref": "esri.CIMLineSymbol"
|
|
13457
|
+
},
|
|
13458
|
+
{
|
|
13459
|
+
"$ref": "esri.CIMPointSymbol"
|
|
13460
|
+
},
|
|
13461
|
+
{
|
|
13462
|
+
"$ref": "esri.CIMPolygonSymbol"
|
|
13463
|
+
}
|
|
13464
|
+
],
|
|
13465
|
+
"description": "The symbol. Supported values are CIMPointSymbol, CIMLineSymbol, and CIMPolygonSymbol."
|
|
13466
|
+
},
|
|
13467
|
+
"type": {
|
|
13468
|
+
"const": "CIMSymbolReference",
|
|
13469
|
+
"description": "Specifies the type of symbol used.",
|
|
13470
|
+
"type": "string"
|
|
13471
|
+
}
|
|
13472
|
+
},
|
|
13473
|
+
"required": [
|
|
13474
|
+
"type"
|
|
13475
|
+
],
|
|
13476
|
+
"type": "object"
|
|
13477
|
+
},
|
|
13437
13478
|
"esri.rest-api.SymbolJson.CalloutJson": {
|
|
13438
13479
|
"additionalProperties": false,
|
|
13439
13480
|
"description": "Callout configuration for a symbol.",
|
|
@@ -14333,6 +14374,9 @@
|
|
|
14333
14374
|
{
|
|
14334
14375
|
"$ref": "#/definitions/esri.rest-api.SymbolJson.CIMSymbolJson"
|
|
14335
14376
|
},
|
|
14377
|
+
{
|
|
14378
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.CIMSymbolReferenceJson"
|
|
14379
|
+
},
|
|
14336
14380
|
{
|
|
14337
14381
|
"$ref": "#/definitions/esri.rest-api.SymbolJson.PictureFillSymbolJson"
|
|
14338
14382
|
},
|
|
@@ -2063,6 +2063,9 @@
|
|
|
2063
2063
|
{
|
|
2064
2064
|
"$ref": "#/definitions/esri.rest-api.SymbolJson.CIMSymbolJson"
|
|
2065
2065
|
},
|
|
2066
|
+
{
|
|
2067
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.CIMSymbolReferenceJson"
|
|
2068
|
+
},
|
|
2066
2069
|
{
|
|
2067
2070
|
"$ref": "#/definitions/esri.rest-api.SymbolJson.PictureFillSymbolJson"
|
|
2068
2071
|
},
|
|
@@ -2089,6 +2092,9 @@
|
|
|
2089
2092
|
{
|
|
2090
2093
|
"$ref": "#/definitions/esri.rest-api.SymbolJson.CIMSymbolJson"
|
|
2091
2094
|
},
|
|
2095
|
+
{
|
|
2096
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.CIMSymbolReferenceJson"
|
|
2097
|
+
},
|
|
2092
2098
|
{
|
|
2093
2099
|
"$ref": "#/definitions/esri.rest-api.SymbolJson.LabelSymbol3DJson"
|
|
2094
2100
|
},
|
|
@@ -9705,6 +9711,35 @@
|
|
|
9705
9711
|
],
|
|
9706
9712
|
"type": "object"
|
|
9707
9713
|
},
|
|
9714
|
+
"esri.rest-api.SymbolJson.CIMSymbolReferenceJson": {
|
|
9715
|
+
"additionalProperties": false,
|
|
9716
|
+
"description": "Represents a symbol reference that contains a CIM symbol. More properties and details on CIM symbol reference and CIM symbols are available on github: https://github.com/Esri/cim-spec/blob/main/docs/v3/Overview-Symbols.md, https://github.com/Esri/cim-spec/blob/main/docs/v3/CIMRenderers.md#CIMSymbolReference.\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/cimSymbolReference/}.",
|
|
9717
|
+
"properties": {
|
|
9718
|
+
"symbol": {
|
|
9719
|
+
"anyOf": [
|
|
9720
|
+
{
|
|
9721
|
+
"$ref": "esri.CIMLineSymbol"
|
|
9722
|
+
},
|
|
9723
|
+
{
|
|
9724
|
+
"$ref": "esri.CIMPointSymbol"
|
|
9725
|
+
},
|
|
9726
|
+
{
|
|
9727
|
+
"$ref": "esri.CIMPolygonSymbol"
|
|
9728
|
+
}
|
|
9729
|
+
],
|
|
9730
|
+
"description": "The symbol. Supported values are CIMPointSymbol, CIMLineSymbol, and CIMPolygonSymbol."
|
|
9731
|
+
},
|
|
9732
|
+
"type": {
|
|
9733
|
+
"const": "CIMSymbolReference",
|
|
9734
|
+
"description": "Specifies the type of symbol used.",
|
|
9735
|
+
"type": "string"
|
|
9736
|
+
}
|
|
9737
|
+
},
|
|
9738
|
+
"required": [
|
|
9739
|
+
"type"
|
|
9740
|
+
],
|
|
9741
|
+
"type": "object"
|
|
9742
|
+
},
|
|
9708
9743
|
"esri.rest-api.SymbolJson.CalloutJson": {
|
|
9709
9744
|
"additionalProperties": false,
|
|
9710
9745
|
"description": "Callout configuration for a symbol.",
|
|
@@ -10604,6 +10639,9 @@
|
|
|
10604
10639
|
{
|
|
10605
10640
|
"$ref": "#/definitions/esri.rest-api.SymbolJson.CIMSymbolJson"
|
|
10606
10641
|
},
|
|
10642
|
+
{
|
|
10643
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.CIMSymbolReferenceJson"
|
|
10644
|
+
},
|
|
10607
10645
|
{
|
|
10608
10646
|
"$ref": "#/definitions/esri.rest-api.SymbolJson.PictureFillSymbolJson"
|
|
10609
10647
|
},
|