@vertigis/viewer-spec 48.1.0 → 48.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/app-config/schema/common-app-config.schema.json +1 -1
- package/app-config/schema/mobile-app-config.schema.json +1 -1
- package/app-config/schema/web-app-config.schema.json +1 -1
- package/messaging/registry/layers.d.ts +21 -0
- package/messaging/registry/layers.js +1 -1
- package/messaging/registry/panel.d.ts +15 -0
- package/messaging/registry/panel.js +1 -1
- package/messaging/registry/ui.d.ts +23 -0
- package/messaging/registry/ui.js +1 -1
- package/messaging/registry/viewer.d.ts +12 -0
- package/messaging/registry/viewer.js +1 -1
- package/messaging/schema/common-action.schema.json +8 -8
- package/messaging/schema/common-event.schema.json +8 -8
- package/messaging/schema/mobile-action.schema.json +8 -8
- package/messaging/schema/mobile-event.schema.json +8 -8
- package/messaging/schema/web-action.schema.json +183 -15
- package/messaging/schema/web-event.schema.json +53 -9
- package/package.json +3 -3
- package/version.d.ts +1 -1
- package/version.js +1 -1
|
@@ -2178,7 +2178,7 @@
|
|
|
2178
2178
|
"type": "string"
|
|
2179
2179
|
},
|
|
2180
2180
|
"outFields": {
|
|
2181
|
-
"description": "A list of fields to include. Defaults to the FeatureSources PopupTemplate outfields if available, otherwise
|
|
2181
|
+
"description": "A list of fields to include. Defaults to the FeatureSources PopupTemplate outfields if available, otherwise \"*\" meaning all fields.",
|
|
2182
2182
|
"items": {
|
|
2183
2183
|
"type": "string"
|
|
2184
2184
|
},
|
|
@@ -2294,7 +2294,7 @@
|
|
|
2294
2294
|
"type": "string"
|
|
2295
2295
|
},
|
|
2296
2296
|
"outFields": {
|
|
2297
|
-
"description": "A list of fields to include. Defaults to the FeatureSources PopupTemplate outfields if available, otherwise
|
|
2297
|
+
"description": "A list of fields to include. Defaults to the FeatureSources PopupTemplate outfields if available, otherwise \"*\" meaning all fields.",
|
|
2298
2298
|
"items": {
|
|
2299
2299
|
"type": "string"
|
|
2300
2300
|
},
|
|
@@ -2358,7 +2358,7 @@
|
|
|
2358
2358
|
"type": "string"
|
|
2359
2359
|
},
|
|
2360
2360
|
"outFields": {
|
|
2361
|
-
"description": "A list of fields to include. Defaults to the FeatureSources PopupTemplate outfields if available, otherwise
|
|
2361
|
+
"description": "A list of fields to include. Defaults to the FeatureSources PopupTemplate outfields if available, otherwise \"*\" meaning all fields.",
|
|
2362
2362
|
"items": {
|
|
2363
2363
|
"type": "string"
|
|
2364
2364
|
},
|
|
@@ -4331,6 +4331,21 @@
|
|
|
4331
4331
|
],
|
|
4332
4332
|
"type": "object"
|
|
4333
4333
|
},
|
|
4334
|
+
"SetLabelVisibilityArgs": {
|
|
4335
|
+
"additionalProperties": false,
|
|
4336
|
+
"description": "Arguments for the \"layers.show-labels\" and \"layers.hide-labels\" commands. If no 'maps' are specified, all active maps in the layout will be targeted. If no 'layers' are specified, all viable layers and sublayers within the 'maps' will be affected. If the 'layers' property includes (Sub)Layer references or ESRI (Sub)Layers, they must exist within one of the 'maps'.",
|
|
4337
|
+
"properties": {
|
|
4338
|
+
"layers": {
|
|
4339
|
+
"$ref": "#/definitions/LayersLike",
|
|
4340
|
+
"description": "Layer(s) to use for the command/operation."
|
|
4341
|
+
},
|
|
4342
|
+
"maps": {
|
|
4343
|
+
"$ref": "MapsLike",
|
|
4344
|
+
"description": "Map(s) to use for the command/operation."
|
|
4345
|
+
}
|
|
4346
|
+
},
|
|
4347
|
+
"type": "object"
|
|
4348
|
+
},
|
|
4334
4349
|
"SetLayerComparisonDirectionArgs": {
|
|
4335
4350
|
"additionalProperties": false,
|
|
4336
4351
|
"description": "Arguments for the layer-comparison.set-direction command.",
|
|
@@ -4812,7 +4827,7 @@
|
|
|
4812
4827
|
"type": "string"
|
|
4813
4828
|
},
|
|
4814
4829
|
"outFields": {
|
|
4815
|
-
"description": "A list of fields to include. Defaults to the FeatureSources PopupTemplate outfields if available, otherwise
|
|
4830
|
+
"description": "A list of fields to include. Defaults to the FeatureSources PopupTemplate outfields if available, otherwise \"*\" meaning all fields.",
|
|
4816
4831
|
"items": {
|
|
4817
4832
|
"type": "string"
|
|
4818
4833
|
},
|
|
@@ -4865,7 +4880,7 @@
|
|
|
4865
4880
|
"type": "string"
|
|
4866
4881
|
},
|
|
4867
4882
|
"outFields": {
|
|
4868
|
-
"description": "A list of fields to include. Defaults to the FeatureSources PopupTemplate outfields if available, otherwise
|
|
4883
|
+
"description": "A list of fields to include. Defaults to the FeatureSources PopupTemplate outfields if available, otherwise \"*\" meaning all fields.",
|
|
4869
4884
|
"items": {
|
|
4870
4885
|
"type": "string"
|
|
4871
4886
|
},
|
|
@@ -4918,7 +4933,7 @@
|
|
|
4918
4933
|
"type": "string"
|
|
4919
4934
|
},
|
|
4920
4935
|
"outFields": {
|
|
4921
|
-
"description": "A list of fields to include. Defaults to the FeatureSources PopupTemplate outfields if available, otherwise
|
|
4936
|
+
"description": "A list of fields to include. Defaults to the FeatureSources PopupTemplate outfields if available, otherwise \"*\" meaning all fields.",
|
|
4922
4937
|
"items": {
|
|
4923
4938
|
"type": "string"
|
|
4924
4939
|
},
|
|
@@ -6758,7 +6773,7 @@
|
|
|
6758
6773
|
},
|
|
6759
6774
|
"esri.rest-api.ClassBreaksRenderer.ClassBreaksRenderer": {
|
|
6760
6775
|
"additionalProperties": false,
|
|
6761
|
-
"description": "A class breaks renderer symbolizes based on the value of some numeric attribute. The classBreakInfo define the values at which the symbology changes. If the Normalization Type property is defined than the class breaks contain a normalized min/max value instead of the actual value. The data value, obtained from the field property, is normalized using one of the following functions before it is compared with the class breaks. 1. Field - Divide the data value using the attribute value of the field specified by the normalizationField property. 2. Log - Compute the base 10 logarithm of the data value. This can be a
|
|
6776
|
+
"description": "A class breaks renderer symbolizes based on the value of some numeric attribute. The classBreakInfo define the values at which the symbology changes. If the Normalization Type property is defined than the class breaks contain a normalized min/max value instead of the actual value. The data value, obtained from the field property, is normalized using one of the following functions before it is compared with the class breaks. 1. Field - Divide the data value using the attribute value of the field specified by the normalizationField property. 2. Log - Compute the base 10 logarithm of the data value. This can be a useful approach for some data distributions because it reduced the influence of very large data values. 3. Percent-of-total - Divide the data value by the sum of all data values then multiply by 100. Use the normalizationTotal property to determine the total value.{@linkhttps://developers.arcgis.com/web-map-specification/objects/classBreaks_renderer/}{@linkhttps://developers.arcgis.com/web-scene-specification/objects/classBreaksRenderer/}.",
|
|
6762
6777
|
"properties": {
|
|
6763
6778
|
"authoringInfo": {
|
|
6764
6779
|
"$ref": "#/definitions/esri.rest-api.Renderer.AuthoringInfo",
|
|
@@ -7647,7 +7662,7 @@
|
|
|
7647
7662
|
},
|
|
7648
7663
|
"mode": {
|
|
7649
7664
|
"$ref": "#/definitions/esri.rest-api.FeatureLayer.FeatureLayerMode",
|
|
7650
|
-
"description": "Used with ArcGIS feature services and individual layers in ArcGIS map services, this property determines how the features are retrieved from the server. This property is represented as 0, 1, or 2.
|
|
7665
|
+
"description": "Used with ArcGIS feature services and individual layers in ArcGIS map services, this property determines how the features are retrieved from the server. This property is represented as 0, 1, or 2. - 0: Snapshot mode. Immediately retrieves all features when the map is loaded. - 1: On-demand mode. Features within the current view extent are retrieved as the user navigates the map. This is the default and the most common way to use feature services in web maps. - 2: Selection-only mode. No features are initially retrieved. This mode is used when you have a map service and a feature service from the same parent URL that are working together in the same map, with the map service being used for display and the feature service used for editing. See{@linkFeatureLayerMode}."
|
|
7651
7666
|
},
|
|
7652
7667
|
"opacity": {
|
|
7653
7668
|
"description": "The degree of transparency applied to the layer on the client side, where 0 is full transparency and 1 is no transparency.",
|
|
@@ -10076,7 +10091,7 @@
|
|
|
10076
10091
|
},
|
|
10077
10092
|
"esri.rest-api.LayerDefinition.TimeInfoExportOptions": {
|
|
10078
10093
|
"additionalProperties": false,
|
|
10079
|
-
"description": "The default time-related export options for a layer.{@link: https://developers.arcgis.com/web-map-specification/objects/timeInfoExportOptions/}.",
|
|
10094
|
+
"description": "The default time-related export options for a layer.{@link:}* https://developers.arcgis.com/web-map-specification/objects/timeInfoExportOptions/}.",
|
|
10080
10095
|
"properties": {
|
|
10081
10096
|
"timeDataCumulative": {
|
|
10082
10097
|
"description": "If true, draw all the features from the beginning of time for that data.",
|
|
@@ -11288,7 +11303,7 @@
|
|
|
11288
11303
|
"type": "string"
|
|
11289
11304
|
},
|
|
11290
11305
|
"styleUrl": {
|
|
11291
|
-
"description": "URL to a style definition Must be one of the following values:
|
|
11306
|
+
"description": "URL to a style definition Must be one of the following values: String An absolute URL String A relative path starting with \"./\".",
|
|
11292
11307
|
"type": "string"
|
|
11293
11308
|
}
|
|
11294
11309
|
},
|
|
@@ -12447,7 +12462,7 @@
|
|
|
12447
12462
|
},
|
|
12448
12463
|
"mode": {
|
|
12449
12464
|
"$ref": "#/definitions/esri.rest-api.FeatureLayer.FeatureLayerMode",
|
|
12450
|
-
"description": "Used with ArcGIS feature services and individual layers in ArcGIS map services, this property determines how the features are retrieved from the server. This property is represented as 0, 1, or 2.
|
|
12465
|
+
"description": "Used with ArcGIS feature services and individual layers in ArcGIS map services, this property determines how the features are retrieved from the server. This property is represented as 0, 1, or 2. - 0: Snapshot mode. Immediately retrieves all features when the map is loaded. - 1: On-demand mode. Features within the current view extent are retrieved as the user navigates the map. This is the default and the most common way to use feature services in web maps. - 2: Selection-only mode. No features are initially retrieved. This mode is used when you have a map service and a feature service from the same parent URL that are working together in the same map, with the map service being used for display and the feature service used for editing. See{@linkFeatureLayerMode}."
|
|
12451
12466
|
},
|
|
12452
12467
|
"opacity": {
|
|
12453
12468
|
"description": "The degree of transparency applied to the layer on the client side, where 0 is full transparency and 1 is no transparency.",
|
|
@@ -12657,7 +12672,7 @@
|
|
|
12657
12672
|
"description": "Color is represented as a three or four-element array."
|
|
12658
12673
|
},
|
|
12659
12674
|
"colorMixMode": {
|
|
12660
|
-
"description": "Controls how symbolLayer or visualVariable color is applied onto the underlying geometry color/texture. This property only applies to FillSymbol3DLayer within MeshSymbol3D.
|
|
12675
|
+
"description": "Controls how symbolLayer or visualVariable color is applied onto the underlying geometry color/texture. This property only applies to FillSymbol3DLayer within MeshSymbol3D. - Tint: the feature's appearance (in terms of color) should be altered to match the symbol / visual variable color. - Replace: the feature's color is replaced with the symbol / visual variable color. - Multiply: the feature's color is multiplied with the symbol color.",
|
|
12661
12676
|
"enum": [
|
|
12662
12677
|
"multiply",
|
|
12663
12678
|
"replace",
|
|
@@ -12707,7 +12722,7 @@
|
|
|
12707
12722
|
"type": "string"
|
|
12708
12723
|
},
|
|
12709
12724
|
"href": {
|
|
12710
|
-
"description": "URL to the returned image. Must be
|
|
12725
|
+
"description": "URL to the returned image. Must be an absolute URL or a relative path starting with \"./\".",
|
|
12711
12726
|
"type": "string"
|
|
12712
12727
|
},
|
|
12713
12728
|
"primitive": {
|
|
@@ -12722,7 +12737,7 @@
|
|
|
12722
12737
|
"description": "The primitive shape (primitive) or external 3D model (href) used to visualize the points.{@linkhttps://developers.arcgis.com/web-scene-specification/objects/objectSymbol3DLayer_resource/}.",
|
|
12723
12738
|
"properties": {
|
|
12724
12739
|
"href": {
|
|
12725
|
-
"description": "Must be
|
|
12740
|
+
"description": "Must be an absolute URL or a relative path starting with \"./\".",
|
|
12726
12741
|
"type": "string"
|
|
12727
12742
|
},
|
|
12728
12743
|
"primitive": {
|
|
@@ -14302,7 +14317,7 @@
|
|
|
14302
14317
|
"description": "A sequence of parameters used to append different custom parameters to a WMTS tile request. These parameters are applied to GetTile. The customLayerParameters property takes precedence if customParameters is also present."
|
|
14303
14318
|
},
|
|
14304
14319
|
"customParameters": {
|
|
14305
|
-
"description": "A sequence of parameters used to append custom parameters to all WMTS requests. These parameters are applied to GetCapabilities and GetTile. If used with the
|
|
14320
|
+
"description": "A sequence of parameters used to append custom parameters to all WMTS requests. These parameters are applied to GetCapabilities and GetTile. If used with the customLayerParameters property, customParameters will not take precedence."
|
|
14306
14321
|
},
|
|
14307
14322
|
"layerIdentifier": {
|
|
14308
14323
|
"description": "Identifier for the specific layer used in the WMTS service. Required input by the user.",
|
|
@@ -15049,6 +15064,15 @@
|
|
|
15049
15064
|
"layers.ensure-can-set-symbol:input": {
|
|
15050
15065
|
"$ref": "#/definitions/SetSymbolArgs"
|
|
15051
15066
|
},
|
|
15067
|
+
"layers.hide-labels": {
|
|
15068
|
+
"description": "Turns off the layer's labels on the map.",
|
|
15069
|
+
"enum": [
|
|
15070
|
+
"layers.hide-labels"
|
|
15071
|
+
]
|
|
15072
|
+
},
|
|
15073
|
+
"layers.hide-labels:input": {
|
|
15074
|
+
"$ref": "#/definitions/SetLabelVisibilityArgs"
|
|
15075
|
+
},
|
|
15052
15076
|
"layers.set-symbol": {
|
|
15053
15077
|
"description": "Updates the symbol for the provided layer(s).",
|
|
15054
15078
|
"enum": [
|
|
@@ -15058,6 +15082,15 @@
|
|
|
15058
15082
|
"layers.set-symbol:input": {
|
|
15059
15083
|
"$ref": "#/definitions/SetSymbolArgs"
|
|
15060
15084
|
},
|
|
15085
|
+
"layers.show-labels": {
|
|
15086
|
+
"description": "Turns on the layer's labels on the map.",
|
|
15087
|
+
"enum": [
|
|
15088
|
+
"layers.show-labels"
|
|
15089
|
+
]
|
|
15090
|
+
},
|
|
15091
|
+
"layers.show-labels:input": {
|
|
15092
|
+
"$ref": "#/definitions/SetLabelVisibilityArgs"
|
|
15093
|
+
},
|
|
15061
15094
|
"location-marker.clear": {
|
|
15062
15095
|
"description": "Removes all Markers.",
|
|
15063
15096
|
"enum": [
|
|
@@ -16246,6 +16279,38 @@
|
|
|
16246
16279
|
"items": {},
|
|
16247
16280
|
"type": "array"
|
|
16248
16281
|
},
|
|
16282
|
+
"panel.pop-in": {
|
|
16283
|
+
"description": "Closes the popout window for a panel and restores the original layout.",
|
|
16284
|
+
"enum": [
|
|
16285
|
+
"panel.pop-in"
|
|
16286
|
+
]
|
|
16287
|
+
},
|
|
16288
|
+
"panel.pop-in:input": {
|
|
16289
|
+
"anyOf": [
|
|
16290
|
+
{
|
|
16291
|
+
"$ref": "#/definitions/Model"
|
|
16292
|
+
},
|
|
16293
|
+
{
|
|
16294
|
+
"type": "string"
|
|
16295
|
+
}
|
|
16296
|
+
]
|
|
16297
|
+
},
|
|
16298
|
+
"panel.pop-out": {
|
|
16299
|
+
"description": "Removes a panel from the main layout and opens it in a new popout window.",
|
|
16300
|
+
"enum": [
|
|
16301
|
+
"panel.pop-out"
|
|
16302
|
+
]
|
|
16303
|
+
},
|
|
16304
|
+
"panel.pop-out:input": {
|
|
16305
|
+
"anyOf": [
|
|
16306
|
+
{
|
|
16307
|
+
"$ref": "#/definitions/Model"
|
|
16308
|
+
},
|
|
16309
|
+
{
|
|
16310
|
+
"type": "string"
|
|
16311
|
+
}
|
|
16312
|
+
]
|
|
16313
|
+
},
|
|
16249
16314
|
"printing.run": {
|
|
16250
16315
|
"description": "Run a print job with a given map and template.",
|
|
16251
16316
|
"enum": [
|
|
@@ -18289,6 +18354,22 @@
|
|
|
18289
18354
|
],
|
|
18290
18355
|
"type": "object"
|
|
18291
18356
|
},
|
|
18357
|
+
{
|
|
18358
|
+
"additionalProperties": false,
|
|
18359
|
+
"properties": {
|
|
18360
|
+
"arguments": {
|
|
18361
|
+
"$ref": "#/definitions/layers.hide-labels:input"
|
|
18362
|
+
},
|
|
18363
|
+
"name": {
|
|
18364
|
+
"$ref": "#/definitions/layers.hide-labels"
|
|
18365
|
+
}
|
|
18366
|
+
},
|
|
18367
|
+
"required": [
|
|
18368
|
+
"name",
|
|
18369
|
+
"arguments"
|
|
18370
|
+
],
|
|
18371
|
+
"type": "object"
|
|
18372
|
+
},
|
|
18292
18373
|
{
|
|
18293
18374
|
"additionalProperties": false,
|
|
18294
18375
|
"properties": {
|
|
@@ -18305,6 +18386,22 @@
|
|
|
18305
18386
|
],
|
|
18306
18387
|
"type": "object"
|
|
18307
18388
|
},
|
|
18389
|
+
{
|
|
18390
|
+
"additionalProperties": false,
|
|
18391
|
+
"properties": {
|
|
18392
|
+
"arguments": {
|
|
18393
|
+
"$ref": "#/definitions/layers.show-labels:input"
|
|
18394
|
+
},
|
|
18395
|
+
"name": {
|
|
18396
|
+
"$ref": "#/definitions/layers.show-labels"
|
|
18397
|
+
}
|
|
18398
|
+
},
|
|
18399
|
+
"required": [
|
|
18400
|
+
"name",
|
|
18401
|
+
"arguments"
|
|
18402
|
+
],
|
|
18403
|
+
"type": "object"
|
|
18404
|
+
},
|
|
18308
18405
|
{
|
|
18309
18406
|
"additionalProperties": false,
|
|
18310
18407
|
"properties": {
|
|
@@ -18929,6 +19026,38 @@
|
|
|
18929
19026
|
],
|
|
18930
19027
|
"type": "object"
|
|
18931
19028
|
},
|
|
19029
|
+
{
|
|
19030
|
+
"additionalProperties": false,
|
|
19031
|
+
"properties": {
|
|
19032
|
+
"arguments": {
|
|
19033
|
+
"$ref": "#/definitions/panel.pop-in:input"
|
|
19034
|
+
},
|
|
19035
|
+
"name": {
|
|
19036
|
+
"$ref": "#/definitions/panel.pop-in"
|
|
19037
|
+
}
|
|
19038
|
+
},
|
|
19039
|
+
"required": [
|
|
19040
|
+
"name",
|
|
19041
|
+
"arguments"
|
|
19042
|
+
],
|
|
19043
|
+
"type": "object"
|
|
19044
|
+
},
|
|
19045
|
+
{
|
|
19046
|
+
"additionalProperties": false,
|
|
19047
|
+
"properties": {
|
|
19048
|
+
"arguments": {
|
|
19049
|
+
"$ref": "#/definitions/panel.pop-out:input"
|
|
19050
|
+
},
|
|
19051
|
+
"name": {
|
|
19052
|
+
"$ref": "#/definitions/panel.pop-out"
|
|
19053
|
+
}
|
|
19054
|
+
},
|
|
19055
|
+
"required": [
|
|
19056
|
+
"name",
|
|
19057
|
+
"arguments"
|
|
19058
|
+
],
|
|
19059
|
+
"type": "object"
|
|
19060
|
+
},
|
|
18932
19061
|
{
|
|
18933
19062
|
"additionalProperties": false,
|
|
18934
19063
|
"properties": {
|
|
@@ -19728,9 +19857,15 @@
|
|
|
19728
19857
|
{
|
|
19729
19858
|
"$ref": "#/definitions/layers.ensure-can-set-symbol"
|
|
19730
19859
|
},
|
|
19860
|
+
{
|
|
19861
|
+
"$ref": "#/definitions/layers.hide-labels"
|
|
19862
|
+
},
|
|
19731
19863
|
{
|
|
19732
19864
|
"$ref": "#/definitions/layers.set-symbol"
|
|
19733
19865
|
},
|
|
19866
|
+
{
|
|
19867
|
+
"$ref": "#/definitions/layers.show-labels"
|
|
19868
|
+
},
|
|
19734
19869
|
{
|
|
19735
19870
|
"$ref": "#/definitions/location-marker.clear"
|
|
19736
19871
|
},
|
|
@@ -19848,6 +19983,12 @@
|
|
|
19848
19983
|
{
|
|
19849
19984
|
"$ref": "#/definitions/messaging.mix-in-args"
|
|
19850
19985
|
},
|
|
19986
|
+
{
|
|
19987
|
+
"$ref": "#/definitions/panel.pop-in"
|
|
19988
|
+
},
|
|
19989
|
+
{
|
|
19990
|
+
"$ref": "#/definitions/panel.pop-out"
|
|
19991
|
+
},
|
|
19851
19992
|
{
|
|
19852
19993
|
"$ref": "#/definitions/printing.run"
|
|
19853
19994
|
},
|
|
@@ -21105,9 +21246,15 @@
|
|
|
21105
21246
|
{
|
|
21106
21247
|
"$ref": "#/definitions/ui.prompt"
|
|
21107
21248
|
},
|
|
21249
|
+
{
|
|
21250
|
+
"$ref": "#/definitions/viewer.get-all-layouts"
|
|
21251
|
+
},
|
|
21108
21252
|
{
|
|
21109
21253
|
"$ref": "#/definitions/viewer.get-capabilities"
|
|
21110
21254
|
},
|
|
21255
|
+
{
|
|
21256
|
+
"$ref": "#/definitions/viewer.get-current-layout"
|
|
21257
|
+
},
|
|
21111
21258
|
{
|
|
21112
21259
|
"$ref": "#/definitions/viewer.get-in-debug-mode"
|
|
21113
21260
|
},
|
|
@@ -21116,6 +21263,18 @@
|
|
|
21116
21263
|
}
|
|
21117
21264
|
]
|
|
21118
21265
|
},
|
|
21266
|
+
"viewer.get-all-layouts": {
|
|
21267
|
+
"description": "Gets all Layout models from the application.",
|
|
21268
|
+
"enum": [
|
|
21269
|
+
"viewer.get-all-layouts"
|
|
21270
|
+
]
|
|
21271
|
+
},
|
|
21272
|
+
"viewer.get-all-layouts:output": {
|
|
21273
|
+
"items": {
|
|
21274
|
+
"$ref": "#/definitions/Model"
|
|
21275
|
+
},
|
|
21276
|
+
"type": "array"
|
|
21277
|
+
},
|
|
21119
21278
|
"viewer.get-capabilities": {
|
|
21120
21279
|
"description": "Gets information about the current viewer instance.",
|
|
21121
21280
|
"enum": [
|
|
@@ -21125,6 +21284,15 @@
|
|
|
21125
21284
|
"viewer.get-capabilities:output": {
|
|
21126
21285
|
"$ref": "#/definitions/ViewerCapabilities"
|
|
21127
21286
|
},
|
|
21287
|
+
"viewer.get-current-layout": {
|
|
21288
|
+
"description": "Gets the current Layout model from the application.",
|
|
21289
|
+
"enum": [
|
|
21290
|
+
"viewer.get-current-layout"
|
|
21291
|
+
]
|
|
21292
|
+
},
|
|
21293
|
+
"viewer.get-current-layout:output": {
|
|
21294
|
+
"$ref": "#/definitions/Model"
|
|
21295
|
+
},
|
|
21128
21296
|
"viewer.get-in-debug-mode": {
|
|
21129
21297
|
"description": "Get whether the viewer is in debug mode.",
|
|
21130
21298
|
"enum": [
|
|
@@ -373,6 +373,10 @@
|
|
|
373
373
|
],
|
|
374
374
|
"type": "string"
|
|
375
375
|
},
|
|
376
|
+
"ComponentId": {
|
|
377
|
+
"description": "A component's ID in the layout.",
|
|
378
|
+
"type": "string"
|
|
379
|
+
},
|
|
376
380
|
"CreateGraphicsResult": {
|
|
377
381
|
"additionalProperties": false,
|
|
378
382
|
"description": "Result of the \"drawing.create-graphics\" and \"measurement.create-graphics\" operations.",
|
|
@@ -1025,6 +1029,34 @@
|
|
|
1025
1029
|
},
|
|
1026
1030
|
"type": "object"
|
|
1027
1031
|
},
|
|
1032
|
+
"VisualState": {
|
|
1033
|
+
"description": "A component's visual state. The values will vary based on the component type.",
|
|
1034
|
+
"type": "string"
|
|
1035
|
+
},
|
|
1036
|
+
"VisualStateChangeEvent": {
|
|
1037
|
+
"additionalProperties": false,
|
|
1038
|
+
"description": "Payload for a VisualStateChangeEvent.",
|
|
1039
|
+
"properties": {
|
|
1040
|
+
"component": {
|
|
1041
|
+
"$ref": "#/definitions/ComponentId",
|
|
1042
|
+
"description": "The ID of the component whose visual state has changed."
|
|
1043
|
+
},
|
|
1044
|
+
"current": {
|
|
1045
|
+
"$ref": "#/definitions/VisualState",
|
|
1046
|
+
"description": "The new visual state of the component."
|
|
1047
|
+
},
|
|
1048
|
+
"previous": {
|
|
1049
|
+
"$ref": "#/definitions/VisualState",
|
|
1050
|
+
"description": "The visual state of the component before the change."
|
|
1051
|
+
}
|
|
1052
|
+
},
|
|
1053
|
+
"required": [
|
|
1054
|
+
"component",
|
|
1055
|
+
"current",
|
|
1056
|
+
"previous"
|
|
1057
|
+
],
|
|
1058
|
+
"type": "object"
|
|
1059
|
+
},
|
|
1028
1060
|
"WorkflowErrorEventArgs": {
|
|
1029
1061
|
"additionalProperties": false,
|
|
1030
1062
|
"description": "Arguments for the \"workflow.workflow-error\" event.",
|
|
@@ -1752,7 +1784,7 @@
|
|
|
1752
1784
|
},
|
|
1753
1785
|
"esri.rest-api.ClassBreaksRenderer.ClassBreaksRenderer": {
|
|
1754
1786
|
"additionalProperties": false,
|
|
1755
|
-
"description": "A class breaks renderer symbolizes based on the value of some numeric attribute. The classBreakInfo define the values at which the symbology changes. If the Normalization Type property is defined than the class breaks contain a normalized min/max value instead of the actual value. The data value, obtained from the field property, is normalized using one of the following functions before it is compared with the class breaks. 1. Field - Divide the data value using the attribute value of the field specified by the normalizationField property. 2. Log - Compute the base 10 logarithm of the data value. This can be a
|
|
1787
|
+
"description": "A class breaks renderer symbolizes based on the value of some numeric attribute. The classBreakInfo define the values at which the symbology changes. If the Normalization Type property is defined than the class breaks contain a normalized min/max value instead of the actual value. The data value, obtained from the field property, is normalized using one of the following functions before it is compared with the class breaks. 1. Field - Divide the data value using the attribute value of the field specified by the normalizationField property. 2. Log - Compute the base 10 logarithm of the data value. This can be a useful approach for some data distributions because it reduced the influence of very large data values. 3. Percent-of-total - Divide the data value by the sum of all data values then multiply by 100. Use the normalizationTotal property to determine the total value.{@linkhttps://developers.arcgis.com/web-map-specification/objects/classBreaks_renderer/}{@linkhttps://developers.arcgis.com/web-scene-specification/objects/classBreaksRenderer/}.",
|
|
1756
1788
|
"properties": {
|
|
1757
1789
|
"authoringInfo": {
|
|
1758
1790
|
"$ref": "#/definitions/esri.rest-api.Renderer.AuthoringInfo",
|
|
@@ -2641,7 +2673,7 @@
|
|
|
2641
2673
|
},
|
|
2642
2674
|
"mode": {
|
|
2643
2675
|
"$ref": "#/definitions/esri.rest-api.FeatureLayer.FeatureLayerMode",
|
|
2644
|
-
"description": "Used with ArcGIS feature services and individual layers in ArcGIS map services, this property determines how the features are retrieved from the server. This property is represented as 0, 1, or 2.
|
|
2676
|
+
"description": "Used with ArcGIS feature services and individual layers in ArcGIS map services, this property determines how the features are retrieved from the server. This property is represented as 0, 1, or 2. - 0: Snapshot mode. Immediately retrieves all features when the map is loaded. - 1: On-demand mode. Features within the current view extent are retrieved as the user navigates the map. This is the default and the most common way to use feature services in web maps. - 2: Selection-only mode. No features are initially retrieved. This mode is used when you have a map service and a feature service from the same parent URL that are working together in the same map, with the map service being used for display and the feature service used for editing. See{@linkFeatureLayerMode}."
|
|
2645
2677
|
},
|
|
2646
2678
|
"opacity": {
|
|
2647
2679
|
"description": "The degree of transparency applied to the layer on the client side, where 0 is full transparency and 1 is no transparency.",
|
|
@@ -4841,7 +4873,7 @@
|
|
|
4841
4873
|
},
|
|
4842
4874
|
"esri.rest-api.LayerDefinition.TimeInfoExportOptions": {
|
|
4843
4875
|
"additionalProperties": false,
|
|
4844
|
-
"description": "The default time-related export options for a layer.{@link: https://developers.arcgis.com/web-map-specification/objects/timeInfoExportOptions/}.",
|
|
4876
|
+
"description": "The default time-related export options for a layer.{@link:}* https://developers.arcgis.com/web-map-specification/objects/timeInfoExportOptions/}.",
|
|
4845
4877
|
"properties": {
|
|
4846
4878
|
"timeDataCumulative": {
|
|
4847
4879
|
"description": "If true, draw all the features from the beginning of time for that data.",
|
|
@@ -5991,7 +6023,7 @@
|
|
|
5991
6023
|
"type": "string"
|
|
5992
6024
|
},
|
|
5993
6025
|
"styleUrl": {
|
|
5994
|
-
"description": "URL to a style definition Must be one of the following values:
|
|
6026
|
+
"description": "URL to a style definition Must be one of the following values: String An absolute URL String A relative path starting with \"./\".",
|
|
5995
6027
|
"type": "string"
|
|
5996
6028
|
}
|
|
5997
6029
|
},
|
|
@@ -7150,7 +7182,7 @@
|
|
|
7150
7182
|
},
|
|
7151
7183
|
"mode": {
|
|
7152
7184
|
"$ref": "#/definitions/esri.rest-api.FeatureLayer.FeatureLayerMode",
|
|
7153
|
-
"description": "Used with ArcGIS feature services and individual layers in ArcGIS map services, this property determines how the features are retrieved from the server. This property is represented as 0, 1, or 2.
|
|
7185
|
+
"description": "Used with ArcGIS feature services and individual layers in ArcGIS map services, this property determines how the features are retrieved from the server. This property is represented as 0, 1, or 2. - 0: Snapshot mode. Immediately retrieves all features when the map is loaded. - 1: On-demand mode. Features within the current view extent are retrieved as the user navigates the map. This is the default and the most common way to use feature services in web maps. - 2: Selection-only mode. No features are initially retrieved. This mode is used when you have a map service and a feature service from the same parent URL that are working together in the same map, with the map service being used for display and the feature service used for editing. See{@linkFeatureLayerMode}."
|
|
7154
7186
|
},
|
|
7155
7187
|
"opacity": {
|
|
7156
7188
|
"description": "The degree of transparency applied to the layer on the client side, where 0 is full transparency and 1 is no transparency.",
|
|
@@ -7360,7 +7392,7 @@
|
|
|
7360
7392
|
"description": "Color is represented as a three or four-element array."
|
|
7361
7393
|
},
|
|
7362
7394
|
"colorMixMode": {
|
|
7363
|
-
"description": "Controls how symbolLayer or visualVariable color is applied onto the underlying geometry color/texture. This property only applies to FillSymbol3DLayer within MeshSymbol3D.
|
|
7395
|
+
"description": "Controls how symbolLayer or visualVariable color is applied onto the underlying geometry color/texture. This property only applies to FillSymbol3DLayer within MeshSymbol3D. - Tint: the feature's appearance (in terms of color) should be altered to match the symbol / visual variable color. - Replace: the feature's color is replaced with the symbol / visual variable color. - Multiply: the feature's color is multiplied with the symbol color.",
|
|
7364
7396
|
"enum": [
|
|
7365
7397
|
"multiply",
|
|
7366
7398
|
"replace",
|
|
@@ -7410,7 +7442,7 @@
|
|
|
7410
7442
|
"type": "string"
|
|
7411
7443
|
},
|
|
7412
7444
|
"href": {
|
|
7413
|
-
"description": "URL to the returned image. Must be
|
|
7445
|
+
"description": "URL to the returned image. Must be an absolute URL or a relative path starting with \"./\".",
|
|
7414
7446
|
"type": "string"
|
|
7415
7447
|
},
|
|
7416
7448
|
"primitive": {
|
|
@@ -7425,7 +7457,7 @@
|
|
|
7425
7457
|
"description": "The primitive shape (primitive) or external 3D model (href) used to visualize the points.{@linkhttps://developers.arcgis.com/web-scene-specification/objects/objectSymbol3DLayer_resource/}.",
|
|
7426
7458
|
"properties": {
|
|
7427
7459
|
"href": {
|
|
7428
|
-
"description": "Must be
|
|
7460
|
+
"description": "Must be an absolute URL or a relative path starting with \"./\".",
|
|
7429
7461
|
"type": "string"
|
|
7430
7462
|
},
|
|
7431
7463
|
"primitive": {
|
|
@@ -8978,7 +9010,7 @@
|
|
|
8978
9010
|
"description": "A sequence of parameters used to append different custom parameters to a WMTS tile request. These parameters are applied to GetTile. The customLayerParameters property takes precedence if customParameters is also present."
|
|
8979
9011
|
},
|
|
8980
9012
|
"customParameters": {
|
|
8981
|
-
"description": "A sequence of parameters used to append custom parameters to all WMTS requests. These parameters are applied to GetCapabilities and GetTile. If used with the
|
|
9013
|
+
"description": "A sequence of parameters used to append custom parameters to all WMTS requests. These parameters are applied to GetCapabilities and GetTile. If used with the customLayerParameters property, customParameters will not take precedence."
|
|
8982
9014
|
},
|
|
8983
9015
|
"layerIdentifier": {
|
|
8984
9016
|
"description": "Identifier for the specific layer used in the WMTS service. Required input by the user.",
|
|
@@ -9480,6 +9512,15 @@
|
|
|
9480
9512
|
"ui.reordered:input": {
|
|
9481
9513
|
"type": "string"
|
|
9482
9514
|
},
|
|
9515
|
+
"ui.visual-state-changed": {
|
|
9516
|
+
"description": "Raised when a component's visual state is changed.",
|
|
9517
|
+
"enum": [
|
|
9518
|
+
"ui.visual-state-changed"
|
|
9519
|
+
]
|
|
9520
|
+
},
|
|
9521
|
+
"ui.visual-state-changed:input": {
|
|
9522
|
+
"$ref": "#/definitions/VisualStateChangeEvent"
|
|
9523
|
+
},
|
|
9483
9524
|
"viewer-spec.Event": {
|
|
9484
9525
|
"anyOf": [
|
|
9485
9526
|
{
|
|
@@ -9620,6 +9661,9 @@
|
|
|
9620
9661
|
{
|
|
9621
9662
|
"$ref": "#/definitions/ui.reordered"
|
|
9622
9663
|
},
|
|
9664
|
+
{
|
|
9665
|
+
"$ref": "#/definitions/ui.visual-state-changed"
|
|
9666
|
+
},
|
|
9623
9667
|
{
|
|
9624
9668
|
"$ref": "#/definitions/viewer.layout-changed"
|
|
9625
9669
|
},
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vertigis/viewer-spec",
|
|
3
|
-
"version": "48.
|
|
3
|
+
"version": "48.4.0",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE",
|
|
5
5
|
"description": "VertiGIS Viewer Specification",
|
|
6
6
|
"type": "module",
|
|
@@ -33,16 +33,16 @@
|
|
|
33
33
|
},
|
|
34
34
|
"author": "VertiGIS Ltd.",
|
|
35
35
|
"peerDependencies": {
|
|
36
|
-
"@vertigis/arcgis-extensions": ">= 35.
|
|
36
|
+
"@vertigis/arcgis-extensions": ">= 35.3.0 < 36.0.0"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
39
|
"@arcgis/core": "4.23.3",
|
|
40
|
+
"@vertigis/arcgis-extensions": "35.3.0",
|
|
40
41
|
"@prettier/plugin-xml": "2.2.0",
|
|
41
42
|
"@types/glob": "7.2.0",
|
|
42
43
|
"@types/node": "14.14.41",
|
|
43
44
|
"@typescript-eslint/eslint-plugin": "5.23.0",
|
|
44
45
|
"@typescript-eslint/parser": "5.23.0",
|
|
45
|
-
"@vertigis/arcgis-extensions": "35.0.0",
|
|
46
46
|
"del-cli": "4.0.1",
|
|
47
47
|
"eslint": "8.15.0",
|
|
48
48
|
"eslint-config-prettier": "8.5.0",
|
package/version.d.ts
CHANGED
package/version.js
CHANGED