@vertigis/viewer-spec 48.0.0 → 48.3.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.
@@ -0,0 +1,10 @@
1
+ import type { BasemapExtensionProperties } from "@vertigis/arcgis-extensions/mapping/BasemapExtension";
2
+ /**
3
+ * Configuration for a Basemap component.
4
+ */
5
+ export interface BasemapModelProperties extends BasemapExtensionProperties {
6
+ /**
7
+ * Whether the info icon should be shown in the basemap picker.
8
+ */
9
+ showInfoIcon?: boolean;
10
+ }
@@ -0,0 +1 @@
1
+ export{};
@@ -17,6 +17,15 @@ export interface LayerEventArgs {
17
17
  */
18
18
  export interface ILayerContent {
19
19
  }
20
+ /**
21
+ * Arguments for the "layers.show-labels" and "layers.hide-labels" commands. If
22
+ * no 'maps' are specified, all active maps in the layout will be targeted. If
23
+ * no 'layers' are specified, all viable layers and sublayers within the 'maps'
24
+ * will be affected. If the 'layers' property includes (Sub)Layer references or
25
+ * ESRI (Sub)Layers, they must exist within one of the 'maps'.
26
+ */
27
+ export interface SetLabelVisibilityArgs extends HasLayers, HasMaps {
28
+ }
20
29
  /**
21
30
  * Arguments for the layer.set-symbol command.
22
31
  */
@@ -34,6 +43,18 @@ export declare class LayersCommands extends CommandRegistry {
34
43
  * @webOnly
35
44
  */
36
45
  get setSymbol(): Command<SetSymbolArgs>;
46
+ /**
47
+ * Turns on the layer's labels on the map.
48
+ *
49
+ * @webOnly
50
+ */
51
+ get showLabels(): Command<SetLabelVisibilityArgs>;
52
+ /**
53
+ * Turns off the layer's labels on the map.
54
+ *
55
+ * @webOnly
56
+ */
57
+ get hideLabels(): Command<SetLabelVisibilityArgs>;
37
58
  }
38
59
  export declare class LayersEvents extends EventRegistry {
39
60
  /**
@@ -1 +1 @@
1
- import{CommandRegistry}from"../CommandRegistry.js";import{EventRegistry}from"../EventRegistry.js";export class LayersCommands extends CommandRegistry{get ensureCanSetSymbol(){return this._messages.command("layers.ensure-can-set-symbol")}get setSymbol(){return this._messages.command("layers.set-symbol")}}export class LayersEvents extends EventRegistry{get visibilityChanged(){return this._messages.event("layers.visibility-changed")}}
1
+ import{CommandRegistry}from"../CommandRegistry.js";import{EventRegistry}from"../EventRegistry.js";export class LayersCommands extends CommandRegistry{get ensureCanSetSymbol(){return this._messages.command("layers.ensure-can-set-symbol")}get setSymbol(){return this._messages.command("layers.set-symbol")}get showLabels(){return this._messages.command("layers.show-labels")}get hideLabels(){return this._messages.command("layers.hide-labels")}}export class LayersEvents extends EventRegistry{get visibilityChanged(){return this._messages.event("layers.visibility-changed")}}
@@ -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 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/}.",
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. - 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}."
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. - 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}."
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. - 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.",
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 one of the following values: String An absolute URL String A relative path starting with \"./\".",
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 one of the following values: String An absolute URL String A relative path starting with \"./\".",
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 customLayerParameters property, customParameters will not take precedence."
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 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/}.",
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. - 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}."
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. - 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}."
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. - 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.",
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 one of the following values: String An absolute URL String A relative path starting with \"./\".",
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 one of the following values: String An absolute URL String A relative path starting with \"./\".",
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 customLayerParameters property, customParameters will not take precedence."
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 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/}.",
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. - 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}."
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. - 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}."
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. - 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.",
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 one of the following values: String An absolute URL String A relative path starting with \"./\".",
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 one of the following values: String An absolute URL String A relative path starting with \"./\".",
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 customLayerParameters property, customParameters will not take precedence."
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 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/}.",
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. - 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}."
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. - 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}."
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. - 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.",
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 one of the following values: String An absolute URL String A relative path starting with \"./\".",
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 one of the following values: String An absolute URL String A relative path starting with \"./\".",
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 customLayerParameters property, customParameters will not take precedence."
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.",