@vertigis/viewer-spec 48.1.0 → 48.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/app-config/schema/common-app-config.schema.json +1 -1
- package/app-config/schema/mobile-app-config.schema.json +1 -1
- package/app-config/schema/web-app-config.schema.json +1 -1
- package/messaging/registry/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 +42 -15
- package/messaging/schema/web-event.schema.json +9 -9
- package/package.json +3 -3
- package/version.d.ts +1 -1
- package/version.js +1 -1
|
@@ -35,6 +35,18 @@ export declare class ViewerEvents extends EventRegistry {
|
|
|
35
35
|
get layoutChanged(): Event;
|
|
36
36
|
}
|
|
37
37
|
export declare class ViewerOperations extends OperationRegistry {
|
|
38
|
+
/**
|
|
39
|
+
* Gets all Layout models from the application.
|
|
40
|
+
*
|
|
41
|
+
* @webOnly
|
|
42
|
+
*/
|
|
43
|
+
get getAllLayouts(): Operation<void, Model[]>;
|
|
44
|
+
/**
|
|
45
|
+
* Gets the current Layout model from the application.
|
|
46
|
+
*
|
|
47
|
+
* @webOnly
|
|
48
|
+
*/
|
|
49
|
+
get getCurrentLayout(): Operation<void, Model>;
|
|
38
50
|
/**
|
|
39
51
|
* Gets information about the current viewer instance.
|
|
40
52
|
*
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{CommandRegistry}from"../CommandRegistry.js";import{EventRegistry}from"../EventRegistry.js";import{OperationRegistry}from"../OperationRegistry.js";export class ViewerCommands extends CommandRegistry{get loadLayout(){return this._messages.command("viewer.load-layout")}get postMessage(){return this._messages.command("viewer.post-message")}get setDebugMode(){return this._messages.command("viewer.set-debug-mode")}}export class ViewerEvents extends EventRegistry{get layoutChanged(){return this._messages.event("viewer.layout-changed")}}export class ViewerOperations extends OperationRegistry{get getCapabilities(){return this._messages.operation("viewer.get-capabilities")}get getInDebugMode(){return this._messages.operation("viewer.get-in-debug-mode")}get getVersion(){return this._messages.operation("viewer.get-version")}}
|
|
1
|
+
import{CommandRegistry}from"../CommandRegistry.js";import{EventRegistry}from"../EventRegistry.js";import{OperationRegistry}from"../OperationRegistry.js";export class ViewerCommands extends CommandRegistry{get loadLayout(){return this._messages.command("viewer.load-layout")}get postMessage(){return this._messages.command("viewer.post-message")}get setDebugMode(){return this._messages.command("viewer.set-debug-mode")}}export class ViewerEvents extends EventRegistry{get layoutChanged(){return this._messages.event("viewer.layout-changed")}}export class ViewerOperations extends OperationRegistry{get getAllLayouts(){return this._messages.operation("viewer.get-all-layouts")}get getCurrentLayout(){return this._messages.operation("viewer.get-current-layout")}get getCapabilities(){return this._messages.operation("viewer.get-capabilities")}get getInDebugMode(){return this._messages.operation("viewer.get-in-debug-mode")}get getVersion(){return this._messages.operation("viewer.get-version")}}
|
|
@@ -3251,7 +3251,7 @@
|
|
|
3251
3251
|
},
|
|
3252
3252
|
"esri.rest-api.ClassBreaksRenderer.ClassBreaksRenderer": {
|
|
3253
3253
|
"additionalProperties": false,
|
|
3254
|
-
"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
|
|
3254
|
+
"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/}.",
|
|
3255
3255
|
"properties": {
|
|
3256
3256
|
"authoringInfo": {
|
|
3257
3257
|
"$ref": "#/definitions/esri.rest-api.Renderer.AuthoringInfo",
|
|
@@ -4140,7 +4140,7 @@
|
|
|
4140
4140
|
},
|
|
4141
4141
|
"mode": {
|
|
4142
4142
|
"$ref": "#/definitions/esri.rest-api.FeatureLayer.FeatureLayerMode",
|
|
4143
|
-
"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.
|
|
4143
|
+
"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}."
|
|
4144
4144
|
},
|
|
4145
4145
|
"opacity": {
|
|
4146
4146
|
"description": "The degree of transparency applied to the layer on the client side, where 0 is full transparency and 1 is no transparency.",
|
|
@@ -6569,7 +6569,7 @@
|
|
|
6569
6569
|
},
|
|
6570
6570
|
"esri.rest-api.LayerDefinition.TimeInfoExportOptions": {
|
|
6571
6571
|
"additionalProperties": false,
|
|
6572
|
-
"description": "The default time-related export options for a layer.{@link: https://developers.arcgis.com/web-map-specification/objects/timeInfoExportOptions/}.",
|
|
6572
|
+
"description": "The default time-related export options for a layer.{@link:}* https://developers.arcgis.com/web-map-specification/objects/timeInfoExportOptions/}.",
|
|
6573
6573
|
"properties": {
|
|
6574
6574
|
"timeDataCumulative": {
|
|
6575
6575
|
"description": "If true, draw all the features from the beginning of time for that data.",
|
|
@@ -8863,7 +8863,7 @@
|
|
|
8863
8863
|
},
|
|
8864
8864
|
"mode": {
|
|
8865
8865
|
"$ref": "#/definitions/esri.rest-api.FeatureLayer.FeatureLayerMode",
|
|
8866
|
-
"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.
|
|
8866
|
+
"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}."
|
|
8867
8867
|
},
|
|
8868
8868
|
"opacity": {
|
|
8869
8869
|
"description": "The degree of transparency applied to the layer on the client side, where 0 is full transparency and 1 is no transparency.",
|
|
@@ -9073,7 +9073,7 @@
|
|
|
9073
9073
|
"description": "Color is represented as a three or four-element array."
|
|
9074
9074
|
},
|
|
9075
9075
|
"colorMixMode": {
|
|
9076
|
-
"description": "Controls how symbolLayer or visualVariable color is applied onto the underlying geometry color/texture. This property only applies to FillSymbol3DLayer within MeshSymbol3D.
|
|
9076
|
+
"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.",
|
|
9077
9077
|
"enum": [
|
|
9078
9078
|
"multiply",
|
|
9079
9079
|
"replace",
|
|
@@ -9123,7 +9123,7 @@
|
|
|
9123
9123
|
"type": "string"
|
|
9124
9124
|
},
|
|
9125
9125
|
"href": {
|
|
9126
|
-
"description": "URL to the returned image. Must be
|
|
9126
|
+
"description": "URL to the returned image. Must be an absolute URL or a relative path starting with \"./\".",
|
|
9127
9127
|
"type": "string"
|
|
9128
9128
|
},
|
|
9129
9129
|
"primitive": {
|
|
@@ -9138,7 +9138,7 @@
|
|
|
9138
9138
|
"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/}.",
|
|
9139
9139
|
"properties": {
|
|
9140
9140
|
"href": {
|
|
9141
|
-
"description": "Must be
|
|
9141
|
+
"description": "Must be an absolute URL or a relative path starting with \"./\".",
|
|
9142
9142
|
"type": "string"
|
|
9143
9143
|
},
|
|
9144
9144
|
"primitive": {
|
|
@@ -10714,7 +10714,7 @@
|
|
|
10714
10714
|
"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."
|
|
10715
10715
|
},
|
|
10716
10716
|
"customParameters": {
|
|
10717
|
-
"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
|
|
10717
|
+
"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."
|
|
10718
10718
|
},
|
|
10719
10719
|
"layerIdentifier": {
|
|
10720
10720
|
"description": "Identifier for the specific layer used in the WMTS service. Required input by the user.",
|
|
@@ -937,7 +937,7 @@
|
|
|
937
937
|
},
|
|
938
938
|
"esri.rest-api.ClassBreaksRenderer.ClassBreaksRenderer": {
|
|
939
939
|
"additionalProperties": false,
|
|
940
|
-
"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
|
|
940
|
+
"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/}.",
|
|
941
941
|
"properties": {
|
|
942
942
|
"authoringInfo": {
|
|
943
943
|
"$ref": "#/definitions/esri.rest-api.Renderer.AuthoringInfo",
|
|
@@ -1826,7 +1826,7 @@
|
|
|
1826
1826
|
},
|
|
1827
1827
|
"mode": {
|
|
1828
1828
|
"$ref": "#/definitions/esri.rest-api.FeatureLayer.FeatureLayerMode",
|
|
1829
|
-
"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.
|
|
1829
|
+
"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}."
|
|
1830
1830
|
},
|
|
1831
1831
|
"opacity": {
|
|
1832
1832
|
"description": "The degree of transparency applied to the layer on the client side, where 0 is full transparency and 1 is no transparency.",
|
|
@@ -4026,7 +4026,7 @@
|
|
|
4026
4026
|
},
|
|
4027
4027
|
"esri.rest-api.LayerDefinition.TimeInfoExportOptions": {
|
|
4028
4028
|
"additionalProperties": false,
|
|
4029
|
-
"description": "The default time-related export options for a layer.{@link: https://developers.arcgis.com/web-map-specification/objects/timeInfoExportOptions/}.",
|
|
4029
|
+
"description": "The default time-related export options for a layer.{@link:}* https://developers.arcgis.com/web-map-specification/objects/timeInfoExportOptions/}.",
|
|
4030
4030
|
"properties": {
|
|
4031
4031
|
"timeDataCumulative": {
|
|
4032
4032
|
"description": "If true, draw all the features from the beginning of time for that data.",
|
|
@@ -6320,7 +6320,7 @@
|
|
|
6320
6320
|
},
|
|
6321
6321
|
"mode": {
|
|
6322
6322
|
"$ref": "#/definitions/esri.rest-api.FeatureLayer.FeatureLayerMode",
|
|
6323
|
-
"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.
|
|
6323
|
+
"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}."
|
|
6324
6324
|
},
|
|
6325
6325
|
"opacity": {
|
|
6326
6326
|
"description": "The degree of transparency applied to the layer on the client side, where 0 is full transparency and 1 is no transparency.",
|
|
@@ -6530,7 +6530,7 @@
|
|
|
6530
6530
|
"description": "Color is represented as a three or four-element array."
|
|
6531
6531
|
},
|
|
6532
6532
|
"colorMixMode": {
|
|
6533
|
-
"description": "Controls how symbolLayer or visualVariable color is applied onto the underlying geometry color/texture. This property only applies to FillSymbol3DLayer within MeshSymbol3D.
|
|
6533
|
+
"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.",
|
|
6534
6534
|
"enum": [
|
|
6535
6535
|
"multiply",
|
|
6536
6536
|
"replace",
|
|
@@ -6580,7 +6580,7 @@
|
|
|
6580
6580
|
"type": "string"
|
|
6581
6581
|
},
|
|
6582
6582
|
"href": {
|
|
6583
|
-
"description": "URL to the returned image. Must be
|
|
6583
|
+
"description": "URL to the returned image. Must be an absolute URL or a relative path starting with \"./\".",
|
|
6584
6584
|
"type": "string"
|
|
6585
6585
|
},
|
|
6586
6586
|
"primitive": {
|
|
@@ -6595,7 +6595,7 @@
|
|
|
6595
6595
|
"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/}.",
|
|
6596
6596
|
"properties": {
|
|
6597
6597
|
"href": {
|
|
6598
|
-
"description": "Must be
|
|
6598
|
+
"description": "Must be an absolute URL or a relative path starting with \"./\".",
|
|
6599
6599
|
"type": "string"
|
|
6600
6600
|
},
|
|
6601
6601
|
"primitive": {
|
|
@@ -8148,7 +8148,7 @@
|
|
|
8148
8148
|
"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."
|
|
8149
8149
|
},
|
|
8150
8150
|
"customParameters": {
|
|
8151
|
-
"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
|
|
8151
|
+
"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."
|
|
8152
8152
|
},
|
|
8153
8153
|
"layerIdentifier": {
|
|
8154
8154
|
"description": "Identifier for the specific layer used in the WMTS service. Required input by the user.",
|
|
@@ -4180,7 +4180,7 @@
|
|
|
4180
4180
|
},
|
|
4181
4181
|
"esri.rest-api.ClassBreaksRenderer.ClassBreaksRenderer": {
|
|
4182
4182
|
"additionalProperties": false,
|
|
4183
|
-
"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
|
|
4183
|
+
"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/}.",
|
|
4184
4184
|
"properties": {
|
|
4185
4185
|
"authoringInfo": {
|
|
4186
4186
|
"$ref": "#/definitions/esri.rest-api.Renderer.AuthoringInfo",
|
|
@@ -5069,7 +5069,7 @@
|
|
|
5069
5069
|
},
|
|
5070
5070
|
"mode": {
|
|
5071
5071
|
"$ref": "#/definitions/esri.rest-api.FeatureLayer.FeatureLayerMode",
|
|
5072
|
-
"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.
|
|
5072
|
+
"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}."
|
|
5073
5073
|
},
|
|
5074
5074
|
"opacity": {
|
|
5075
5075
|
"description": "The degree of transparency applied to the layer on the client side, where 0 is full transparency and 1 is no transparency.",
|
|
@@ -7509,7 +7509,7 @@
|
|
|
7509
7509
|
},
|
|
7510
7510
|
"esri.rest-api.LayerDefinition.TimeInfoExportOptions": {
|
|
7511
7511
|
"additionalProperties": false,
|
|
7512
|
-
"description": "The default time-related export options for a layer.{@link: https://developers.arcgis.com/web-map-specification/objects/timeInfoExportOptions/}.",
|
|
7512
|
+
"description": "The default time-related export options for a layer.{@link:}* https://developers.arcgis.com/web-map-specification/objects/timeInfoExportOptions/}.",
|
|
7513
7513
|
"properties": {
|
|
7514
7514
|
"timeDataCumulative": {
|
|
7515
7515
|
"description": "If true, draw all the features from the beginning of time for that data.",
|
|
@@ -9803,7 +9803,7 @@
|
|
|
9803
9803
|
},
|
|
9804
9804
|
"mode": {
|
|
9805
9805
|
"$ref": "#/definitions/esri.rest-api.FeatureLayer.FeatureLayerMode",
|
|
9806
|
-
"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.
|
|
9806
|
+
"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}."
|
|
9807
9807
|
},
|
|
9808
9808
|
"opacity": {
|
|
9809
9809
|
"description": "The degree of transparency applied to the layer on the client side, where 0 is full transparency and 1 is no transparency.",
|
|
@@ -10013,7 +10013,7 @@
|
|
|
10013
10013
|
"description": "Color is represented as a three or four-element array."
|
|
10014
10014
|
},
|
|
10015
10015
|
"colorMixMode": {
|
|
10016
|
-
"description": "Controls how symbolLayer or visualVariable color is applied onto the underlying geometry color/texture. This property only applies to FillSymbol3DLayer within MeshSymbol3D.
|
|
10016
|
+
"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.",
|
|
10017
10017
|
"enum": [
|
|
10018
10018
|
"multiply",
|
|
10019
10019
|
"replace",
|
|
@@ -10063,7 +10063,7 @@
|
|
|
10063
10063
|
"type": "string"
|
|
10064
10064
|
},
|
|
10065
10065
|
"href": {
|
|
10066
|
-
"description": "URL to the returned image. Must be
|
|
10066
|
+
"description": "URL to the returned image. Must be an absolute URL or a relative path starting with \"./\".",
|
|
10067
10067
|
"type": "string"
|
|
10068
10068
|
},
|
|
10069
10069
|
"primitive": {
|
|
@@ -10078,7 +10078,7 @@
|
|
|
10078
10078
|
"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/}.",
|
|
10079
10079
|
"properties": {
|
|
10080
10080
|
"href": {
|
|
10081
|
-
"description": "Must be
|
|
10081
|
+
"description": "Must be an absolute URL or a relative path starting with \"./\".",
|
|
10082
10082
|
"type": "string"
|
|
10083
10083
|
},
|
|
10084
10084
|
"primitive": {
|
|
@@ -11654,7 +11654,7 @@
|
|
|
11654
11654
|
"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."
|
|
11655
11655
|
},
|
|
11656
11656
|
"customParameters": {
|
|
11657
|
-
"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
|
|
11657
|
+
"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."
|
|
11658
11658
|
},
|
|
11659
11659
|
"layerIdentifier": {
|
|
11660
11660
|
"description": "Identifier for the specific layer used in the WMTS service. Required input by the user.",
|
|
@@ -1671,7 +1671,7 @@
|
|
|
1671
1671
|
},
|
|
1672
1672
|
"esri.rest-api.ClassBreaksRenderer.ClassBreaksRenderer": {
|
|
1673
1673
|
"additionalProperties": false,
|
|
1674
|
-
"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
|
|
1674
|
+
"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/}.",
|
|
1675
1675
|
"properties": {
|
|
1676
1676
|
"authoringInfo": {
|
|
1677
1677
|
"$ref": "#/definitions/esri.rest-api.Renderer.AuthoringInfo",
|
|
@@ -2560,7 +2560,7 @@
|
|
|
2560
2560
|
},
|
|
2561
2561
|
"mode": {
|
|
2562
2562
|
"$ref": "#/definitions/esri.rest-api.FeatureLayer.FeatureLayerMode",
|
|
2563
|
-
"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.
|
|
2563
|
+
"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}."
|
|
2564
2564
|
},
|
|
2565
2565
|
"opacity": {
|
|
2566
2566
|
"description": "The degree of transparency applied to the layer on the client side, where 0 is full transparency and 1 is no transparency.",
|
|
@@ -4760,7 +4760,7 @@
|
|
|
4760
4760
|
},
|
|
4761
4761
|
"esri.rest-api.LayerDefinition.TimeInfoExportOptions": {
|
|
4762
4762
|
"additionalProperties": false,
|
|
4763
|
-
"description": "The default time-related export options for a layer.{@link: https://developers.arcgis.com/web-map-specification/objects/timeInfoExportOptions/}.",
|
|
4763
|
+
"description": "The default time-related export options for a layer.{@link:}* https://developers.arcgis.com/web-map-specification/objects/timeInfoExportOptions/}.",
|
|
4764
4764
|
"properties": {
|
|
4765
4765
|
"timeDataCumulative": {
|
|
4766
4766
|
"description": "If true, draw all the features from the beginning of time for that data.",
|
|
@@ -7054,7 +7054,7 @@
|
|
|
7054
7054
|
},
|
|
7055
7055
|
"mode": {
|
|
7056
7056
|
"$ref": "#/definitions/esri.rest-api.FeatureLayer.FeatureLayerMode",
|
|
7057
|
-
"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.
|
|
7057
|
+
"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}."
|
|
7058
7058
|
},
|
|
7059
7059
|
"opacity": {
|
|
7060
7060
|
"description": "The degree of transparency applied to the layer on the client side, where 0 is full transparency and 1 is no transparency.",
|
|
@@ -7264,7 +7264,7 @@
|
|
|
7264
7264
|
"description": "Color is represented as a three or four-element array."
|
|
7265
7265
|
},
|
|
7266
7266
|
"colorMixMode": {
|
|
7267
|
-
"description": "Controls how symbolLayer or visualVariable color is applied onto the underlying geometry color/texture. This property only applies to FillSymbol3DLayer within MeshSymbol3D.
|
|
7267
|
+
"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.",
|
|
7268
7268
|
"enum": [
|
|
7269
7269
|
"multiply",
|
|
7270
7270
|
"replace",
|
|
@@ -7314,7 +7314,7 @@
|
|
|
7314
7314
|
"type": "string"
|
|
7315
7315
|
},
|
|
7316
7316
|
"href": {
|
|
7317
|
-
"description": "URL to the returned image. Must be
|
|
7317
|
+
"description": "URL to the returned image. Must be an absolute URL or a relative path starting with \"./\".",
|
|
7318
7318
|
"type": "string"
|
|
7319
7319
|
},
|
|
7320
7320
|
"primitive": {
|
|
@@ -7329,7 +7329,7 @@
|
|
|
7329
7329
|
"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/}.",
|
|
7330
7330
|
"properties": {
|
|
7331
7331
|
"href": {
|
|
7332
|
-
"description": "Must be
|
|
7332
|
+
"description": "Must be an absolute URL or a relative path starting with \"./\".",
|
|
7333
7333
|
"type": "string"
|
|
7334
7334
|
},
|
|
7335
7335
|
"primitive": {
|
|
@@ -8882,7 +8882,7 @@
|
|
|
8882
8882
|
"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."
|
|
8883
8883
|
},
|
|
8884
8884
|
"customParameters": {
|
|
8885
|
-
"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
|
|
8885
|
+
"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."
|
|
8886
8886
|
},
|
|
8887
8887
|
"layerIdentifier": {
|
|
8888
8888
|
"description": "Identifier for the specific layer used in the WMTS service. Required input by the user.",
|
|
@@ -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
|
},
|
|
@@ -4812,7 +4812,7 @@
|
|
|
4812
4812
|
"type": "string"
|
|
4813
4813
|
},
|
|
4814
4814
|
"outFields": {
|
|
4815
|
-
"description": "A list of fields to include. Defaults to the FeatureSources PopupTemplate outfields if available, otherwise
|
|
4815
|
+
"description": "A list of fields to include. Defaults to the FeatureSources PopupTemplate outfields if available, otherwise \"*\" meaning all fields.",
|
|
4816
4816
|
"items": {
|
|
4817
4817
|
"type": "string"
|
|
4818
4818
|
},
|
|
@@ -4865,7 +4865,7 @@
|
|
|
4865
4865
|
"type": "string"
|
|
4866
4866
|
},
|
|
4867
4867
|
"outFields": {
|
|
4868
|
-
"description": "A list of fields to include. Defaults to the FeatureSources PopupTemplate outfields if available, otherwise
|
|
4868
|
+
"description": "A list of fields to include. Defaults to the FeatureSources PopupTemplate outfields if available, otherwise \"*\" meaning all fields.",
|
|
4869
4869
|
"items": {
|
|
4870
4870
|
"type": "string"
|
|
4871
4871
|
},
|
|
@@ -4918,7 +4918,7 @@
|
|
|
4918
4918
|
"type": "string"
|
|
4919
4919
|
},
|
|
4920
4920
|
"outFields": {
|
|
4921
|
-
"description": "A list of fields to include. Defaults to the FeatureSources PopupTemplate outfields if available, otherwise
|
|
4921
|
+
"description": "A list of fields to include. Defaults to the FeatureSources PopupTemplate outfields if available, otherwise \"*\" meaning all fields.",
|
|
4922
4922
|
"items": {
|
|
4923
4923
|
"type": "string"
|
|
4924
4924
|
},
|
|
@@ -6758,7 +6758,7 @@
|
|
|
6758
6758
|
},
|
|
6759
6759
|
"esri.rest-api.ClassBreaksRenderer.ClassBreaksRenderer": {
|
|
6760
6760
|
"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
|
|
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 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
6762
|
"properties": {
|
|
6763
6763
|
"authoringInfo": {
|
|
6764
6764
|
"$ref": "#/definitions/esri.rest-api.Renderer.AuthoringInfo",
|
|
@@ -7647,7 +7647,7 @@
|
|
|
7647
7647
|
},
|
|
7648
7648
|
"mode": {
|
|
7649
7649
|
"$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.
|
|
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. - 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
7651
|
},
|
|
7652
7652
|
"opacity": {
|
|
7653
7653
|
"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 +10076,7 @@
|
|
|
10076
10076
|
},
|
|
10077
10077
|
"esri.rest-api.LayerDefinition.TimeInfoExportOptions": {
|
|
10078
10078
|
"additionalProperties": false,
|
|
10079
|
-
"description": "The default time-related export options for a layer.{@link: https://developers.arcgis.com/web-map-specification/objects/timeInfoExportOptions/}.",
|
|
10079
|
+
"description": "The default time-related export options for a layer.{@link:}* https://developers.arcgis.com/web-map-specification/objects/timeInfoExportOptions/}.",
|
|
10080
10080
|
"properties": {
|
|
10081
10081
|
"timeDataCumulative": {
|
|
10082
10082
|
"description": "If true, draw all the features from the beginning of time for that data.",
|
|
@@ -11288,7 +11288,7 @@
|
|
|
11288
11288
|
"type": "string"
|
|
11289
11289
|
},
|
|
11290
11290
|
"styleUrl": {
|
|
11291
|
-
"description": "URL to a style definition Must be one of the following values:
|
|
11291
|
+
"description": "URL to a style definition Must be one of the following values: String An absolute URL String A relative path starting with \"./\".",
|
|
11292
11292
|
"type": "string"
|
|
11293
11293
|
}
|
|
11294
11294
|
},
|
|
@@ -12447,7 +12447,7 @@
|
|
|
12447
12447
|
},
|
|
12448
12448
|
"mode": {
|
|
12449
12449
|
"$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.
|
|
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. - 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
12451
|
},
|
|
12452
12452
|
"opacity": {
|
|
12453
12453
|
"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 +12657,7 @@
|
|
|
12657
12657
|
"description": "Color is represented as a three or four-element array."
|
|
12658
12658
|
},
|
|
12659
12659
|
"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.
|
|
12660
|
+
"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
12661
|
"enum": [
|
|
12662
12662
|
"multiply",
|
|
12663
12663
|
"replace",
|
|
@@ -12707,7 +12707,7 @@
|
|
|
12707
12707
|
"type": "string"
|
|
12708
12708
|
},
|
|
12709
12709
|
"href": {
|
|
12710
|
-
"description": "URL to the returned image. Must be
|
|
12710
|
+
"description": "URL to the returned image. Must be an absolute URL or a relative path starting with \"./\".",
|
|
12711
12711
|
"type": "string"
|
|
12712
12712
|
},
|
|
12713
12713
|
"primitive": {
|
|
@@ -12722,7 +12722,7 @@
|
|
|
12722
12722
|
"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
12723
|
"properties": {
|
|
12724
12724
|
"href": {
|
|
12725
|
-
"description": "Must be
|
|
12725
|
+
"description": "Must be an absolute URL or a relative path starting with \"./\".",
|
|
12726
12726
|
"type": "string"
|
|
12727
12727
|
},
|
|
12728
12728
|
"primitive": {
|
|
@@ -14302,7 +14302,7 @@
|
|
|
14302
14302
|
"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
14303
|
},
|
|
14304
14304
|
"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
|
|
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 customLayerParameters property, customParameters will not take precedence."
|
|
14306
14306
|
},
|
|
14307
14307
|
"layerIdentifier": {
|
|
14308
14308
|
"description": "Identifier for the specific layer used in the WMTS service. Required input by the user.",
|
|
@@ -21105,9 +21105,15 @@
|
|
|
21105
21105
|
{
|
|
21106
21106
|
"$ref": "#/definitions/ui.prompt"
|
|
21107
21107
|
},
|
|
21108
|
+
{
|
|
21109
|
+
"$ref": "#/definitions/viewer.get-all-layouts"
|
|
21110
|
+
},
|
|
21108
21111
|
{
|
|
21109
21112
|
"$ref": "#/definitions/viewer.get-capabilities"
|
|
21110
21113
|
},
|
|
21114
|
+
{
|
|
21115
|
+
"$ref": "#/definitions/viewer.get-current-layout"
|
|
21116
|
+
},
|
|
21111
21117
|
{
|
|
21112
21118
|
"$ref": "#/definitions/viewer.get-in-debug-mode"
|
|
21113
21119
|
},
|
|
@@ -21116,6 +21122,18 @@
|
|
|
21116
21122
|
}
|
|
21117
21123
|
]
|
|
21118
21124
|
},
|
|
21125
|
+
"viewer.get-all-layouts": {
|
|
21126
|
+
"description": "Gets all Layout models from the application.",
|
|
21127
|
+
"enum": [
|
|
21128
|
+
"viewer.get-all-layouts"
|
|
21129
|
+
]
|
|
21130
|
+
},
|
|
21131
|
+
"viewer.get-all-layouts:output": {
|
|
21132
|
+
"items": {
|
|
21133
|
+
"$ref": "#/definitions/Model"
|
|
21134
|
+
},
|
|
21135
|
+
"type": "array"
|
|
21136
|
+
},
|
|
21119
21137
|
"viewer.get-capabilities": {
|
|
21120
21138
|
"description": "Gets information about the current viewer instance.",
|
|
21121
21139
|
"enum": [
|
|
@@ -21125,6 +21143,15 @@
|
|
|
21125
21143
|
"viewer.get-capabilities:output": {
|
|
21126
21144
|
"$ref": "#/definitions/ViewerCapabilities"
|
|
21127
21145
|
},
|
|
21146
|
+
"viewer.get-current-layout": {
|
|
21147
|
+
"description": "Gets the current Layout model from the application.",
|
|
21148
|
+
"enum": [
|
|
21149
|
+
"viewer.get-current-layout"
|
|
21150
|
+
]
|
|
21151
|
+
},
|
|
21152
|
+
"viewer.get-current-layout:output": {
|
|
21153
|
+
"$ref": "#/definitions/Model"
|
|
21154
|
+
},
|
|
21128
21155
|
"viewer.get-in-debug-mode": {
|
|
21129
21156
|
"description": "Get whether the viewer is in debug mode.",
|
|
21130
21157
|
"enum": [
|