@vertigis/viewer-spec 56.11.0 → 56.13.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/web/QueryBuilderModelProperties.d.ts +6 -0
- package/messaging/common.d.ts +22 -2
- package/messaging/registry/layers.d.ts +25 -0
- package/messaging/registry/layers.js +1 -1
- package/messaging/registry/map.d.ts +3 -0
- package/messaging/registry/query-builder.d.ts +8 -2
- package/messaging/schema/common-action.schema.json +8 -2
- package/messaging/schema/mobile-action.schema.json +8 -2
- package/messaging/schema/web-action.schema.json +110 -6
- package/package.json +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import type { Action } from "@vertigis/arcgis-extensions/support/Action";
|
|
2
|
+
import type { ItemRef } from "../common/ItemRef.js";
|
|
2
3
|
import type { ComponentModelProperties } from "./ComponentModelProperties.js";
|
|
3
4
|
/**
|
|
4
5
|
* Properties for a query component.
|
|
@@ -13,4 +14,9 @@ export interface QueryBuilderModelProperties extends ComponentModelProperties {
|
|
|
13
14
|
* instance of `QueryArgs` passed in as context.
|
|
14
15
|
*/
|
|
15
16
|
onQuery?: Action;
|
|
17
|
+
/**
|
|
18
|
+
* A menu of actions used to help create geometries to use as a custom
|
|
19
|
+
* spatial filter. (MenuModel).
|
|
20
|
+
*/
|
|
21
|
+
spatialFilterActions?: ItemRef;
|
|
16
22
|
}
|
package/messaging/common.d.ts
CHANGED
|
@@ -2,6 +2,7 @@ import type Graphic from "@arcgis/core/Graphic";
|
|
|
2
2
|
import type Viewpoint from "@arcgis/core/Viewpoint";
|
|
3
3
|
import type Geometry from "@arcgis/core/geometry/Geometry";
|
|
4
4
|
import type Layer from "@arcgis/core/layers/Layer";
|
|
5
|
+
import type LabelClass from "@arcgis/core/layers/support/LabelClass";
|
|
5
6
|
import type EsriFeatureSet from "@arcgis/core/rest/support/FeatureSet";
|
|
6
7
|
import type LineSymbol3D from "@arcgis/core/symbols/LineSymbol3D";
|
|
7
8
|
import type PictureFillSymbol from "@arcgis/core/symbols/PictureFillSymbol";
|
|
@@ -11,6 +12,7 @@ import type PolygonSymbol3D from "@arcgis/core/symbols/PolygonSymbol3D";
|
|
|
11
12
|
import type SimpleFillSymbol from "@arcgis/core/symbols/SimpleFillSymbol";
|
|
12
13
|
import type SimpleLineSymbol from "@arcgis/core/symbols/SimpleLineSymbol";
|
|
13
14
|
import type SimpleMarkerSymbol from "@arcgis/core/symbols/SimpleMarkerSymbol";
|
|
15
|
+
import type TextSymbol from "@arcgis/core/symbols/TextSymbol";
|
|
14
16
|
import type { Entity } from "@vertigis/arcgis-extensions/Entity";
|
|
15
17
|
import type { Feature, FeatureProperties } from "@vertigis/arcgis-extensions/data/Feature";
|
|
16
18
|
import type { FeatureList } from "@vertigis/arcgis-extensions/data/FeatureList";
|
|
@@ -18,9 +20,10 @@ import type { FeatureSet } from "@vertigis/arcgis-extensions/data/FeatureSet";
|
|
|
18
20
|
import type { FeatureSource } from "@vertigis/arcgis-extensions/data/FeatureSource";
|
|
19
21
|
import type { FeatureStream } from "@vertigis/arcgis-extensions/data/FeatureStream";
|
|
20
22
|
import type { TableExtension, TableReference as TableReferenceObject } from "@vertigis/arcgis-extensions/data/TableExtension";
|
|
23
|
+
import type { LabelingInfoJson } from "@vertigis/arcgis-extensions/json/DrawingInfoJson";
|
|
21
24
|
import type { FeatureJson } from "@vertigis/arcgis-extensions/json/FeatureJson";
|
|
22
25
|
import type { GeometryJson } from "@vertigis/arcgis-extensions/json/GeometryJson";
|
|
23
|
-
import type { LineSymbol3DJson, PictureFillSymbolJson, PictureMarkerSymbolJson, PointSymbol3DJson, PolygonSymbol3DJson, SimpleFillSymbolJson, SimpleLineSymbolJson, SimpleMarkerSymbolJson } from "@vertigis/arcgis-extensions/json/SymbolJson";
|
|
26
|
+
import type { LineSymbol3DJson, PictureFillSymbolJson, PictureMarkerSymbolJson, PointSymbol3DJson, PolygonSymbol3DJson, SimpleFillSymbolJson, SimpleLineSymbolJson, SimpleMarkerSymbolJson, TextSymbolJson } from "@vertigis/arcgis-extensions/json/SymbolJson";
|
|
24
27
|
import type { ViewpointJson } from "@vertigis/arcgis-extensions/json/ViewpointJson";
|
|
25
28
|
import type { BasemapExtension } from "@vertigis/arcgis-extensions/mapping/BasemapExtension";
|
|
26
29
|
import type { Bookmark, BookmarkProperties } from "@vertigis/arcgis-extensions/mapping/Bookmark";
|
|
@@ -57,6 +60,14 @@ export interface CreateGraphicsResult {
|
|
|
57
60
|
* Represents one or more features.
|
|
58
61
|
*/
|
|
59
62
|
export type FeaturesLike = Feature | FeatureSet | FeatureList | FeatureStream | (Feature | FeatureProperties)[];
|
|
63
|
+
/**
|
|
64
|
+
* Represents one or more LabelingInfo.
|
|
65
|
+
*/
|
|
66
|
+
export type LabelingInfoLike = LabelingInfoJson | LabelClass | (LabelingInfoJson | LabelClass)[];
|
|
67
|
+
/**
|
|
68
|
+
* One or more LabelingInfos, or an object that has LabelingInfos.
|
|
69
|
+
*/
|
|
70
|
+
export type LabelingInfos = LabelingInfoLike | HasLabelingInfo;
|
|
60
71
|
/**
|
|
61
72
|
* Feature results from an operation.
|
|
62
73
|
*/
|
|
@@ -71,6 +82,15 @@ export interface HasFeatures {
|
|
|
71
82
|
*/
|
|
72
83
|
features?: FeaturesLike;
|
|
73
84
|
}
|
|
85
|
+
/**
|
|
86
|
+
* Defines an object that has a `labelingInfo` property.
|
|
87
|
+
*/
|
|
88
|
+
export interface HasLabelingInfo {
|
|
89
|
+
/**
|
|
90
|
+
* LabelingInfos to use for the command/operation.
|
|
91
|
+
*/
|
|
92
|
+
labelingInfo?: LabelingInfoLike;
|
|
93
|
+
}
|
|
74
94
|
/**
|
|
75
95
|
* Defines an object that has a `maps` property and a `features` property.
|
|
76
96
|
*/
|
|
@@ -246,7 +266,7 @@ export interface HasViewPoint {
|
|
|
246
266
|
/**
|
|
247
267
|
* Symbols supported for drawing.
|
|
248
268
|
*/
|
|
249
|
-
export type SymbolLike = SimpleMarkerSymbol | SimpleMarkerSymbolJson | PictureMarkerSymbol | PictureMarkerSymbolJson | SimpleLineSymbol | SimpleLineSymbolJson | SimpleFillSymbol | SimpleFillSymbolJson | PictureFillSymbol | PictureFillSymbolJson | PointSymbol3D | PointSymbol3DJson | LineSymbol3D | LineSymbol3DJson | PolygonSymbol3D | PolygonSymbol3DJson;
|
|
269
|
+
export type SymbolLike = SimpleMarkerSymbol | SimpleMarkerSymbolJson | PictureMarkerSymbol | PictureMarkerSymbolJson | SimpleLineSymbol | SimpleLineSymbolJson | SimpleFillSymbol | SimpleFillSymbolJson | PictureFillSymbol | PictureFillSymbolJson | PointSymbol3D | PointSymbol3DJson | LineSymbol3D | LineSymbol3DJson | PolygonSymbol3D | PolygonSymbol3DJson | TextSymbol | TextSymbolJson;
|
|
250
270
|
/**
|
|
251
271
|
* An object that has a `symbol` property.
|
|
252
272
|
*/
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import type { TaskSettingsProperties } from "@vertigis/arcgis-extensions/data/TaskSettings.js";
|
|
2
|
+
import type { LabelingInfoJson } from "@vertigis/arcgis-extensions/json/DrawingInfoJson.js";
|
|
2
3
|
import type { PopupInfoJson } from "@vertigis/arcgis-extensions/json/PopupInfoJson.js";
|
|
3
4
|
import type { Command } from "../Command.js";
|
|
4
5
|
import { CommandRegistry } from "../CommandRegistry.js";
|
|
@@ -63,6 +64,10 @@ export interface HasLayerSettings {
|
|
|
63
64
|
* The title of the layer.
|
|
64
65
|
*/
|
|
65
66
|
title?: string | string[];
|
|
67
|
+
/**
|
|
68
|
+
* The labeling class of the layer.
|
|
69
|
+
*/
|
|
70
|
+
labelingInfo?: LabelingInfoJson[] | LabelingInfoJson[][];
|
|
66
71
|
}
|
|
67
72
|
/**
|
|
68
73
|
* Arguments for a `layers.edit-settings` operation.
|
|
@@ -77,6 +82,12 @@ export declare class LayersCommands extends CommandRegistry {
|
|
|
77
82
|
* @webOnly
|
|
78
83
|
*/
|
|
79
84
|
get ensureCanSetSymbol(): Command<SetSymbolArgs>;
|
|
85
|
+
/**
|
|
86
|
+
* Updates the label classes of the provided layer(s). Web only.
|
|
87
|
+
*
|
|
88
|
+
* @webOnly
|
|
89
|
+
*/
|
|
90
|
+
get setLabelClasses(): Command<LayerSettingsArgs>;
|
|
80
91
|
/**
|
|
81
92
|
* Updates the provided layer(s) with new popup template configuration. Web
|
|
82
93
|
* only.
|
|
@@ -130,6 +141,12 @@ export declare class LayersOperations extends OperationRegistry {
|
|
|
130
141
|
* @webOnly
|
|
131
142
|
*/
|
|
132
143
|
get getPopupTemplate(): Operation<HasLayers, LayerSettingsArgs>;
|
|
144
|
+
/**
|
|
145
|
+
* Retrieves the label classes for supplied layer(s). Web only.
|
|
146
|
+
*
|
|
147
|
+
* @webOnly
|
|
148
|
+
*/
|
|
149
|
+
get getLabelClasses(): Operation<HasLayers, LayerSettingsArgs>;
|
|
133
150
|
/**
|
|
134
151
|
* Retrieves the values for the 'taskSettings' applied to the supplied
|
|
135
152
|
* layer(s). Web only.
|
|
@@ -151,6 +168,14 @@ export declare class LayersOperations extends OperationRegistry {
|
|
|
151
168
|
* @webOnly
|
|
152
169
|
*/
|
|
153
170
|
get editSettings(): Operation<LayerSettingsArgs, LayerSettingsArgs>;
|
|
171
|
+
/**
|
|
172
|
+
* Shows a UI for editing the label classes on an existing layer or layers.
|
|
173
|
+
* Note that changes will not be applied to the supplied layers by this
|
|
174
|
+
* operation. Use `layers.set-label-classes` for this. Web only.
|
|
175
|
+
*
|
|
176
|
+
* @webOnly
|
|
177
|
+
*/
|
|
178
|
+
get editLabelSettings(): Operation<LayerSettingsArgs, LayerSettingsArgs>;
|
|
154
179
|
/**
|
|
155
180
|
* Edit the symbol from an existing layer or layers. Note that changes to
|
|
156
181
|
* these symbols will not be applied to the layers by this operation. Use
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{CommandRegistry as t}from"../CommandRegistry.js";import{EventRegistry as e}from"../EventRegistry.js";import{OperationRegistry as s}from"../OperationRegistry.js";export class LayersCommands extends t{constructor(){super(...arguments),this._prefix="layers"}get ensureCanSetSymbol(){return this._get("ensure-can-set-symbol")}get setPopupTemplate(){return this._get("set-popup-template")}get setSymbol(){return this._get("set-symbol")}get setTaskSettings(){return this._get("set-task-settings")}get setTitle(){return this._get("set-title")}get setVisibility(){return this._get("set-visibility")}get showLabels(){return this._get("show-labels")}get hideLabels(){return this._get("hide-labels")}}export class LayersOperations extends s{constructor(){super(...arguments),this._prefix="layers"}get getPopupTemplate(){return this._get("get-popup-template")}get getTaskSettings(){return this._get("get-task-settings")}get getTitle(){return this._get("get-title")}get editSettings(){return this._get("edit-settings")}get editSymbols(){return this._get("edit-symbols")}}export class LayersEvents extends e{constructor(){super(...arguments),this._prefix="layers"}get visibilityChanged(){return this._get("visibility-changed")}}
|
|
1
|
+
import{CommandRegistry as t}from"../CommandRegistry.js";import{EventRegistry as e}from"../EventRegistry.js";import{OperationRegistry as s}from"../OperationRegistry.js";export class LayersCommands extends t{constructor(){super(...arguments),this._prefix="layers"}get ensureCanSetSymbol(){return this._get("ensure-can-set-symbol")}get setLabelClasses(){return this._get("set-label-classes")}get setPopupTemplate(){return this._get("set-popup-template")}get setSymbol(){return this._get("set-symbol")}get setTaskSettings(){return this._get("set-task-settings")}get setTitle(){return this._get("set-title")}get setVisibility(){return this._get("set-visibility")}get showLabels(){return this._get("show-labels")}get hideLabels(){return this._get("hide-labels")}}export class LayersOperations extends s{constructor(){super(...arguments),this._prefix="layers"}get getPopupTemplate(){return this._get("get-popup-template")}get getLabelClasses(){return this._get("get-label-classes")}get getTaskSettings(){return this._get("get-task-settings")}get getTitle(){return this._get("get-title")}get editSettings(){return this._get("edit-settings")}get editLabelSettings(){return this._get("edit-symbol-settings")}get editSymbols(){return this._get("edit-symbols")}}export class LayersEvents extends e{constructor(){super(...arguments),this._prefix="layers"}get visibilityChanged(){return this._get("visibility-changed")}}
|
|
@@ -177,6 +177,9 @@ export interface MarkupArgs extends HasMaps {
|
|
|
177
177
|
*
|
|
178
178
|
* "vgs-other-snapping-guides": Additional snapping point visualizations.
|
|
179
179
|
*
|
|
180
|
+
* "vgs-query": Graphics representing the custom spatial filter for the
|
|
181
|
+
* query builder tool.
|
|
182
|
+
*
|
|
180
183
|
* "vgs-self-snaps": Used internally by snapping.
|
|
181
184
|
*
|
|
182
185
|
* "vgs-sketching": Temporary graphics used while drawing geometries.
|
|
@@ -3,7 +3,7 @@ import type { Command } from "../Command.js";
|
|
|
3
3
|
import { CommandRegistry } from "../CommandRegistry.js";
|
|
4
4
|
import type { Operation } from "../Operation.js";
|
|
5
5
|
import { OperationRegistry } from "../OperationRegistry.js";
|
|
6
|
-
import type { GeometryLike, LayersLike, ModelRef } from "../common.js";
|
|
6
|
+
import type { GeometryLike, GraphicsLike, LayersLike, ModelRef } from "../common.js";
|
|
7
7
|
/**
|
|
8
8
|
* A query that can be displayed in the query builder, or executed using the
|
|
9
9
|
* `tasks.query` operation.
|
|
@@ -25,9 +25,15 @@ export interface Query {
|
|
|
25
25
|
where?: string;
|
|
26
26
|
/**
|
|
27
27
|
* If specified, limits the results to ones that intersect the given
|
|
28
|
-
* geometry.
|
|
28
|
+
* geometry. If both `geometry` and `graphics` are specified, only
|
|
29
|
+
* `graphics` will be used.
|
|
29
30
|
*/
|
|
30
31
|
geometry?: GeometryLike;
|
|
32
|
+
/**
|
|
33
|
+
* Alias of `geometry`, to facilitate command chaining. If both `geometry`
|
|
34
|
+
* and `graphics` are specified, only `graphics` will be used.
|
|
35
|
+
*/
|
|
36
|
+
graphics?: GraphicsLike;
|
|
31
37
|
}
|
|
32
38
|
/**
|
|
33
39
|
* Base arguments for commands/operations that target query builder components.
|
|
@@ -709,7 +709,7 @@
|
|
|
709
709
|
"description": "Arguments for the \"map.add-markup\" command.",
|
|
710
710
|
"properties": {
|
|
711
711
|
"collection": {
|
|
712
|
-
"description": "The named collection of markup to operate on. If not specified the default markup collection will be used. Some markup collection names are used internally by Web: \"default\": The default markup layer. \"vgs-active-snapping-guides\": The active snap point when snapping. \"vgs-buffer\": Buffer graphics from out of the box buffer tools. \"vgs-context-marker\": Right click context marker on map. \"vgs-dirty-indicator\": Invalid geometry indicators used when editing. \"vgs-editing-control\": Edit frame and vertices while editing geometries. \"vgs-location-accuracy\": Location accuracy circle when geolocating. \"vgs-location-marker-*\": Location markers have this prefix followed by the marker id. \"vgs-map-notes\": Map Notes. \"vgs-measurement-labels\": Labels on measured graphics. \"vgs-other-snapping-guides\": Additional snapping point visualizations. \"vgs-self-snaps\": Used internally by snapping. \"vgs-sketching\": Temporary graphics used while drawing geometries. \"vgs-snapping-radius\": Snapping radius when snapping is active. \"vgs-transient-measurement-labels\": Measurement labels used while drawing. Web only.",
|
|
712
|
+
"description": "The named collection of markup to operate on. If not specified the default markup collection will be used. Some markup collection names are used internally by Web: \"default\": The default markup layer. \"vgs-active-snapping-guides\": The active snap point when snapping. \"vgs-buffer\": Buffer graphics from out of the box buffer tools. \"vgs-context-marker\": Right click context marker on map. \"vgs-dirty-indicator\": Invalid geometry indicators used when editing. \"vgs-editing-control\": Edit frame and vertices while editing geometries. \"vgs-location-accuracy\": Location accuracy circle when geolocating. \"vgs-location-marker-*\": Location markers have this prefix followed by the marker id. \"vgs-map-notes\": Map Notes. \"vgs-measurement-labels\": Labels on measured graphics. \"vgs-other-snapping-guides\": Additional snapping point visualizations. \"vgs-query\": Graphics representing the custom spatial filter for the query builder tool. \"vgs-self-snaps\": Used internally by snapping. \"vgs-sketching\": Temporary graphics used while drawing geometries. \"vgs-snapping-radius\": Snapping radius when snapping is active. \"vgs-transient-measurement-labels\": Measurement labels used while drawing. Web only.",
|
|
713
713
|
"type": "string"
|
|
714
714
|
},
|
|
715
715
|
"graphics": {
|
|
@@ -976,7 +976,7 @@
|
|
|
976
976
|
"description": "Arguments for the \"map.clear-markup\" command.",
|
|
977
977
|
"properties": {
|
|
978
978
|
"collection": {
|
|
979
|
-
"description": "The named collection of markup to operate on. If not specified the default markup collection will be used. Some markup collection names are used internally by Web: \"default\": The default markup layer. \"vgs-active-snapping-guides\": The active snap point when snapping. \"vgs-buffer\": Buffer graphics from out of the box buffer tools. \"vgs-context-marker\": Right click context marker on map. \"vgs-dirty-indicator\": Invalid geometry indicators used when editing. \"vgs-editing-control\": Edit frame and vertices while editing geometries. \"vgs-location-accuracy\": Location accuracy circle when geolocating. \"vgs-location-marker-*\": Location markers have this prefix followed by the marker id. \"vgs-map-notes\": Map Notes. \"vgs-measurement-labels\": Labels on measured graphics. \"vgs-other-snapping-guides\": Additional snapping point visualizations. \"vgs-self-snaps\": Used internally by snapping. \"vgs-sketching\": Temporary graphics used while drawing geometries. \"vgs-snapping-radius\": Snapping radius when snapping is active. \"vgs-transient-measurement-labels\": Measurement labels used while drawing. Web only.",
|
|
979
|
+
"description": "The named collection of markup to operate on. If not specified the default markup collection will be used. Some markup collection names are used internally by Web: \"default\": The default markup layer. \"vgs-active-snapping-guides\": The active snap point when snapping. \"vgs-buffer\": Buffer graphics from out of the box buffer tools. \"vgs-context-marker\": Right click context marker on map. \"vgs-dirty-indicator\": Invalid geometry indicators used when editing. \"vgs-editing-control\": Edit frame and vertices while editing geometries. \"vgs-location-accuracy\": Location accuracy circle when geolocating. \"vgs-location-marker-*\": Location markers have this prefix followed by the marker id. \"vgs-map-notes\": Map Notes. \"vgs-measurement-labels\": Labels on measured graphics. \"vgs-other-snapping-guides\": Additional snapping point visualizations. \"vgs-query\": Graphics representing the custom spatial filter for the query builder tool. \"vgs-self-snaps\": Used internally by snapping. \"vgs-sketching\": Temporary graphics used while drawing geometries. \"vgs-snapping-radius\": Snapping radius when snapping is active. \"vgs-transient-measurement-labels\": Measurement labels used while drawing. Web only.",
|
|
980
980
|
"type": "string"
|
|
981
981
|
},
|
|
982
982
|
"graphics": {
|
|
@@ -1102,6 +1102,9 @@
|
|
|
1102
1102
|
{
|
|
1103
1103
|
"$ref": "#/definitions/esri.rest-api.SymbolJson.SimpleMarkerSymbolJson"
|
|
1104
1104
|
},
|
|
1105
|
+
{
|
|
1106
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.TextSymbolJson"
|
|
1107
|
+
},
|
|
1105
1108
|
{
|
|
1106
1109
|
"$ref": "#/definitions/esri.rest-api.SymbolJson.LineSymbol3DJson"
|
|
1107
1110
|
},
|
|
@@ -1134,6 +1137,9 @@
|
|
|
1134
1137
|
},
|
|
1135
1138
|
{
|
|
1136
1139
|
"$ref": "#/definitions/esri.PolygonSymbol3D"
|
|
1140
|
+
},
|
|
1141
|
+
{
|
|
1142
|
+
"$ref": "#/definitions/esri.TextSymbol"
|
|
1137
1143
|
}
|
|
1138
1144
|
],
|
|
1139
1145
|
"description": "The symbol that should be used to create the graphic. If null, a default is provided."
|
|
@@ -693,7 +693,7 @@
|
|
|
693
693
|
"description": "Arguments for the \"map.add-markup\" command.",
|
|
694
694
|
"properties": {
|
|
695
695
|
"collection": {
|
|
696
|
-
"description": "The named collection of markup to operate on. If not specified the default markup collection will be used. Some markup collection names are used internally by Web: \"default\": The default markup layer. \"vgs-active-snapping-guides\": The active snap point when snapping. \"vgs-buffer\": Buffer graphics from out of the box buffer tools. \"vgs-context-marker\": Right click context marker on map. \"vgs-dirty-indicator\": Invalid geometry indicators used when editing. \"vgs-editing-control\": Edit frame and vertices while editing geometries. \"vgs-location-accuracy\": Location accuracy circle when geolocating. \"vgs-location-marker-*\": Location markers have this prefix followed by the marker id. \"vgs-map-notes\": Map Notes. \"vgs-measurement-labels\": Labels on measured graphics. \"vgs-other-snapping-guides\": Additional snapping point visualizations. \"vgs-self-snaps\": Used internally by snapping. \"vgs-sketching\": Temporary graphics used while drawing geometries. \"vgs-snapping-radius\": Snapping radius when snapping is active. \"vgs-transient-measurement-labels\": Measurement labels used while drawing. Web only.",
|
|
696
|
+
"description": "The named collection of markup to operate on. If not specified the default markup collection will be used. Some markup collection names are used internally by Web: \"default\": The default markup layer. \"vgs-active-snapping-guides\": The active snap point when snapping. \"vgs-buffer\": Buffer graphics from out of the box buffer tools. \"vgs-context-marker\": Right click context marker on map. \"vgs-dirty-indicator\": Invalid geometry indicators used when editing. \"vgs-editing-control\": Edit frame and vertices while editing geometries. \"vgs-location-accuracy\": Location accuracy circle when geolocating. \"vgs-location-marker-*\": Location markers have this prefix followed by the marker id. \"vgs-map-notes\": Map Notes. \"vgs-measurement-labels\": Labels on measured graphics. \"vgs-other-snapping-guides\": Additional snapping point visualizations. \"vgs-query\": Graphics representing the custom spatial filter for the query builder tool. \"vgs-self-snaps\": Used internally by snapping. \"vgs-sketching\": Temporary graphics used while drawing geometries. \"vgs-snapping-radius\": Snapping radius when snapping is active. \"vgs-transient-measurement-labels\": Measurement labels used while drawing. Web only.",
|
|
697
697
|
"type": "string"
|
|
698
698
|
},
|
|
699
699
|
"graphics": {
|
|
@@ -1096,7 +1096,7 @@
|
|
|
1096
1096
|
"description": "Arguments for the \"map.clear-markup\" command.",
|
|
1097
1097
|
"properties": {
|
|
1098
1098
|
"collection": {
|
|
1099
|
-
"description": "The named collection of markup to operate on. If not specified the default markup collection will be used. Some markup collection names are used internally by Web: \"default\": The default markup layer. \"vgs-active-snapping-guides\": The active snap point when snapping. \"vgs-buffer\": Buffer graphics from out of the box buffer tools. \"vgs-context-marker\": Right click context marker on map. \"vgs-dirty-indicator\": Invalid geometry indicators used when editing. \"vgs-editing-control\": Edit frame and vertices while editing geometries. \"vgs-location-accuracy\": Location accuracy circle when geolocating. \"vgs-location-marker-*\": Location markers have this prefix followed by the marker id. \"vgs-map-notes\": Map Notes. \"vgs-measurement-labels\": Labels on measured graphics. \"vgs-other-snapping-guides\": Additional snapping point visualizations. \"vgs-self-snaps\": Used internally by snapping. \"vgs-sketching\": Temporary graphics used while drawing geometries. \"vgs-snapping-radius\": Snapping radius when snapping is active. \"vgs-transient-measurement-labels\": Measurement labels used while drawing. Web only.",
|
|
1099
|
+
"description": "The named collection of markup to operate on. If not specified the default markup collection will be used. Some markup collection names are used internally by Web: \"default\": The default markup layer. \"vgs-active-snapping-guides\": The active snap point when snapping. \"vgs-buffer\": Buffer graphics from out of the box buffer tools. \"vgs-context-marker\": Right click context marker on map. \"vgs-dirty-indicator\": Invalid geometry indicators used when editing. \"vgs-editing-control\": Edit frame and vertices while editing geometries. \"vgs-location-accuracy\": Location accuracy circle when geolocating. \"vgs-location-marker-*\": Location markers have this prefix followed by the marker id. \"vgs-map-notes\": Map Notes. \"vgs-measurement-labels\": Labels on measured graphics. \"vgs-other-snapping-guides\": Additional snapping point visualizations. \"vgs-query\": Graphics representing the custom spatial filter for the query builder tool. \"vgs-self-snaps\": Used internally by snapping. \"vgs-sketching\": Temporary graphics used while drawing geometries. \"vgs-snapping-radius\": Snapping radius when snapping is active. \"vgs-transient-measurement-labels\": Measurement labels used while drawing. Web only.",
|
|
1100
1100
|
"type": "string"
|
|
1101
1101
|
},
|
|
1102
1102
|
"graphics": {
|
|
@@ -1246,6 +1246,9 @@
|
|
|
1246
1246
|
{
|
|
1247
1247
|
"$ref": "#/definitions/esri.rest-api.SymbolJson.SimpleMarkerSymbolJson"
|
|
1248
1248
|
},
|
|
1249
|
+
{
|
|
1250
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.TextSymbolJson"
|
|
1251
|
+
},
|
|
1249
1252
|
{
|
|
1250
1253
|
"$ref": "#/definitions/esri.rest-api.SymbolJson.LineSymbol3DJson"
|
|
1251
1254
|
},
|
|
@@ -1278,6 +1281,9 @@
|
|
|
1278
1281
|
},
|
|
1279
1282
|
{
|
|
1280
1283
|
"$ref": "#/definitions/esri.PolygonSymbol3D"
|
|
1284
|
+
},
|
|
1285
|
+
{
|
|
1286
|
+
"$ref": "#/definitions/esri.TextSymbol"
|
|
1281
1287
|
}
|
|
1282
1288
|
],
|
|
1283
1289
|
"description": "The symbol that should be used to create the graphic. If null, a default is provided."
|
|
@@ -952,7 +952,7 @@
|
|
|
952
952
|
"description": "Arguments for the \"map.add-markup\" command.",
|
|
953
953
|
"properties": {
|
|
954
954
|
"collection": {
|
|
955
|
-
"description": "The named collection of markup to operate on. If not specified the default markup collection will be used. Some markup collection names are used internally by Web: \"default\": The default markup layer. \"vgs-active-snapping-guides\": The active snap point when snapping. \"vgs-buffer\": Buffer graphics from out of the box buffer tools. \"vgs-context-marker\": Right click context marker on map. \"vgs-dirty-indicator\": Invalid geometry indicators used when editing. \"vgs-editing-control\": Edit frame and vertices while editing geometries. \"vgs-location-accuracy\": Location accuracy circle when geolocating. \"vgs-location-marker-*\": Location markers have this prefix followed by the marker id. \"vgs-map-notes\": Map Notes. \"vgs-measurement-labels\": Labels on measured graphics. \"vgs-other-snapping-guides\": Additional snapping point visualizations. \"vgs-self-snaps\": Used internally by snapping. \"vgs-sketching\": Temporary graphics used while drawing geometries. \"vgs-snapping-radius\": Snapping radius when snapping is active. \"vgs-transient-measurement-labels\": Measurement labels used while drawing. Web only.",
|
|
955
|
+
"description": "The named collection of markup to operate on. If not specified the default markup collection will be used. Some markup collection names are used internally by Web: \"default\": The default markup layer. \"vgs-active-snapping-guides\": The active snap point when snapping. \"vgs-buffer\": Buffer graphics from out of the box buffer tools. \"vgs-context-marker\": Right click context marker on map. \"vgs-dirty-indicator\": Invalid geometry indicators used when editing. \"vgs-editing-control\": Edit frame and vertices while editing geometries. \"vgs-location-accuracy\": Location accuracy circle when geolocating. \"vgs-location-marker-*\": Location markers have this prefix followed by the marker id. \"vgs-map-notes\": Map Notes. \"vgs-measurement-labels\": Labels on measured graphics. \"vgs-other-snapping-guides\": Additional snapping point visualizations. \"vgs-query\": Graphics representing the custom spatial filter for the query builder tool. \"vgs-self-snaps\": Used internally by snapping. \"vgs-sketching\": Temporary graphics used while drawing geometries. \"vgs-snapping-radius\": Snapping radius when snapping is active. \"vgs-transient-measurement-labels\": Measurement labels used while drawing. Web only.",
|
|
956
956
|
"type": "string"
|
|
957
957
|
},
|
|
958
958
|
"graphics": {
|
|
@@ -1426,7 +1426,7 @@
|
|
|
1426
1426
|
"description": "Arguments for the \"map.clear-markup\" command.",
|
|
1427
1427
|
"properties": {
|
|
1428
1428
|
"collection": {
|
|
1429
|
-
"description": "The named collection of markup to operate on. If not specified the default markup collection will be used. Some markup collection names are used internally by Web: \"default\": The default markup layer. \"vgs-active-snapping-guides\": The active snap point when snapping. \"vgs-buffer\": Buffer graphics from out of the box buffer tools. \"vgs-context-marker\": Right click context marker on map. \"vgs-dirty-indicator\": Invalid geometry indicators used when editing. \"vgs-editing-control\": Edit frame and vertices while editing geometries. \"vgs-location-accuracy\": Location accuracy circle when geolocating. \"vgs-location-marker-*\": Location markers have this prefix followed by the marker id. \"vgs-map-notes\": Map Notes. \"vgs-measurement-labels\": Labels on measured graphics. \"vgs-other-snapping-guides\": Additional snapping point visualizations. \"vgs-self-snaps\": Used internally by snapping. \"vgs-sketching\": Temporary graphics used while drawing geometries. \"vgs-snapping-radius\": Snapping radius when snapping is active. \"vgs-transient-measurement-labels\": Measurement labels used while drawing. Web only.",
|
|
1429
|
+
"description": "The named collection of markup to operate on. If not specified the default markup collection will be used. Some markup collection names are used internally by Web: \"default\": The default markup layer. \"vgs-active-snapping-guides\": The active snap point when snapping. \"vgs-buffer\": Buffer graphics from out of the box buffer tools. \"vgs-context-marker\": Right click context marker on map. \"vgs-dirty-indicator\": Invalid geometry indicators used when editing. \"vgs-editing-control\": Edit frame and vertices while editing geometries. \"vgs-location-accuracy\": Location accuracy circle when geolocating. \"vgs-location-marker-*\": Location markers have this prefix followed by the marker id. \"vgs-map-notes\": Map Notes. \"vgs-measurement-labels\": Labels on measured graphics. \"vgs-other-snapping-guides\": Additional snapping point visualizations. \"vgs-query\": Graphics representing the custom spatial filter for the query builder tool. \"vgs-self-snaps\": Used internally by snapping. \"vgs-sketching\": Temporary graphics used while drawing geometries. \"vgs-snapping-radius\": Snapping radius when snapping is active. \"vgs-transient-measurement-labels\": Measurement labels used while drawing. Web only.",
|
|
1430
1430
|
"type": "string"
|
|
1431
1431
|
},
|
|
1432
1432
|
"graphics": {
|
|
@@ -1621,6 +1621,9 @@
|
|
|
1621
1621
|
{
|
|
1622
1622
|
"$ref": "#/definitions/esri.rest-api.SymbolJson.SimpleMarkerSymbolJson"
|
|
1623
1623
|
},
|
|
1624
|
+
{
|
|
1625
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.TextSymbolJson"
|
|
1626
|
+
},
|
|
1624
1627
|
{
|
|
1625
1628
|
"$ref": "#/definitions/esri.rest-api.SymbolJson.LineSymbol3DJson"
|
|
1626
1629
|
},
|
|
@@ -1653,6 +1656,9 @@
|
|
|
1653
1656
|
},
|
|
1654
1657
|
{
|
|
1655
1658
|
"$ref": "#/definitions/esri.PolygonSymbol3D"
|
|
1659
|
+
},
|
|
1660
|
+
{
|
|
1661
|
+
"$ref": "#/definitions/esri.TextSymbol"
|
|
1656
1662
|
}
|
|
1657
1663
|
],
|
|
1658
1664
|
"description": "The symbol that should be used to create the graphic. If null, a default is provided."
|
|
@@ -2506,6 +2512,9 @@
|
|
|
2506
2512
|
{
|
|
2507
2513
|
"$ref": "#/definitions/esri.rest-api.SymbolJson.SimpleMarkerSymbolJson"
|
|
2508
2514
|
},
|
|
2515
|
+
{
|
|
2516
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.TextSymbolJson"
|
|
2517
|
+
},
|
|
2509
2518
|
{
|
|
2510
2519
|
"$ref": "#/definitions/esri.rest-api.SymbolJson.LineSymbol3DJson"
|
|
2511
2520
|
},
|
|
@@ -2539,6 +2548,9 @@
|
|
|
2539
2548
|
{
|
|
2540
2549
|
"$ref": "#/definitions/esri.PolygonSymbol3D"
|
|
2541
2550
|
},
|
|
2551
|
+
{
|
|
2552
|
+
"$ref": "#/definitions/esri.TextSymbol"
|
|
2553
|
+
},
|
|
2542
2554
|
{
|
|
2543
2555
|
"items": {
|
|
2544
2556
|
"$ref": "#/definitions/SymbolLike"
|
|
@@ -2592,6 +2604,9 @@
|
|
|
2592
2604
|
{
|
|
2593
2605
|
"$ref": "#/definitions/esri.rest-api.SymbolJson.SimpleMarkerSymbolJson"
|
|
2594
2606
|
},
|
|
2607
|
+
{
|
|
2608
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.TextSymbolJson"
|
|
2609
|
+
},
|
|
2595
2610
|
{
|
|
2596
2611
|
"$ref": "#/definitions/esri.rest-api.SymbolJson.LineSymbol3DJson"
|
|
2597
2612
|
},
|
|
@@ -2625,6 +2640,9 @@
|
|
|
2625
2640
|
{
|
|
2626
2641
|
"$ref": "#/definitions/esri.PolygonSymbol3D"
|
|
2627
2642
|
},
|
|
2643
|
+
{
|
|
2644
|
+
"$ref": "#/definitions/esri.TextSymbol"
|
|
2645
|
+
},
|
|
2628
2646
|
{
|
|
2629
2647
|
"items": {
|
|
2630
2648
|
"$ref": "#/definitions/SymbolLike"
|
|
@@ -3820,7 +3838,7 @@
|
|
|
3820
3838
|
"description": "Arguments for the \"map.get-markup\" operation.",
|
|
3821
3839
|
"properties": {
|
|
3822
3840
|
"collection": {
|
|
3823
|
-
"description": "The named collection of markup to operate on. If not specified the default markup collection will be used. Some markup collection names are used internally by Web: \"default\": The default markup layer. \"vgs-active-snapping-guides\": The active snap point when snapping. \"vgs-buffer\": Buffer graphics from out of the box buffer tools. \"vgs-context-marker\": Right click context marker on map. \"vgs-dirty-indicator\": Invalid geometry indicators used when editing. \"vgs-editing-control\": Edit frame and vertices while editing geometries. \"vgs-location-accuracy\": Location accuracy circle when geolocating. \"vgs-location-marker-*\": Location markers have this prefix followed by the marker id. \"vgs-map-notes\": Map Notes. \"vgs-measurement-labels\": Labels on measured graphics. \"vgs-other-snapping-guides\": Additional snapping point visualizations. \"vgs-self-snaps\": Used internally by snapping. \"vgs-sketching\": Temporary graphics used while drawing geometries. \"vgs-snapping-radius\": Snapping radius when snapping is active. \"vgs-transient-measurement-labels\": Measurement labels used while drawing. Web only.",
|
|
3841
|
+
"description": "The named collection of markup to operate on. If not specified the default markup collection will be used. Some markup collection names are used internally by Web: \"default\": The default markup layer. \"vgs-active-snapping-guides\": The active snap point when snapping. \"vgs-buffer\": Buffer graphics from out of the box buffer tools. \"vgs-context-marker\": Right click context marker on map. \"vgs-dirty-indicator\": Invalid geometry indicators used when editing. \"vgs-editing-control\": Edit frame and vertices while editing geometries. \"vgs-location-accuracy\": Location accuracy circle when geolocating. \"vgs-location-marker-*\": Location markers have this prefix followed by the marker id. \"vgs-map-notes\": Map Notes. \"vgs-measurement-labels\": Labels on measured graphics. \"vgs-other-snapping-guides\": Additional snapping point visualizations. \"vgs-query\": Graphics representing the custom spatial filter for the query builder tool. \"vgs-self-snaps\": Used internally by snapping. \"vgs-sketching\": Temporary graphics used while drawing geometries. \"vgs-snapping-radius\": Snapping radius when snapping is active. \"vgs-transient-measurement-labels\": Measurement labels used while drawing. Web only.",
|
|
3824
3842
|
"type": "string"
|
|
3825
3843
|
},
|
|
3826
3844
|
"geometry": {
|
|
@@ -4219,6 +4237,26 @@
|
|
|
4219
4237
|
"additionalProperties": false,
|
|
4220
4238
|
"description": "Arguments for a `layers.edit-settings` operation.",
|
|
4221
4239
|
"properties": {
|
|
4240
|
+
"labelingInfo": {
|
|
4241
|
+
"anyOf": [
|
|
4242
|
+
{
|
|
4243
|
+
"items": {
|
|
4244
|
+
"$ref": "#/definitions/esri.rest-api.DrawingInfoJson.LabelingInfoJson"
|
|
4245
|
+
},
|
|
4246
|
+
"type": "array"
|
|
4247
|
+
},
|
|
4248
|
+
{
|
|
4249
|
+
"items": {
|
|
4250
|
+
"items": {
|
|
4251
|
+
"$ref": "#/definitions/esri.rest-api.DrawingInfoJson.LabelingInfoJson"
|
|
4252
|
+
},
|
|
4253
|
+
"type": "array"
|
|
4254
|
+
},
|
|
4255
|
+
"type": "array"
|
|
4256
|
+
}
|
|
4257
|
+
],
|
|
4258
|
+
"description": "The labeling class of the layer."
|
|
4259
|
+
},
|
|
4222
4260
|
"layers": {
|
|
4223
4261
|
"$ref": "#/definitions/LayersLike",
|
|
4224
4262
|
"description": "Layer(s) to use for the command/operation."
|
|
@@ -4258,6 +4296,9 @@
|
|
|
4258
4296
|
{
|
|
4259
4297
|
"$ref": "#/definitions/esri.rest-api.SymbolJson.SimpleMarkerSymbolJson"
|
|
4260
4298
|
},
|
|
4299
|
+
{
|
|
4300
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.TextSymbolJson"
|
|
4301
|
+
},
|
|
4261
4302
|
{
|
|
4262
4303
|
"$ref": "#/definitions/esri.rest-api.SymbolJson.LineSymbol3DJson"
|
|
4263
4304
|
},
|
|
@@ -4291,6 +4332,9 @@
|
|
|
4291
4332
|
{
|
|
4292
4333
|
"$ref": "#/definitions/esri.PolygonSymbol3D"
|
|
4293
4334
|
},
|
|
4335
|
+
{
|
|
4336
|
+
"$ref": "#/definitions/esri.TextSymbol"
|
|
4337
|
+
},
|
|
4294
4338
|
{
|
|
4295
4339
|
"items": {
|
|
4296
4340
|
"$ref": "#/definitions/SymbolLike"
|
|
@@ -4531,7 +4575,7 @@
|
|
|
4531
4575
|
"description": "Base arguments for markup commands and operations.",
|
|
4532
4576
|
"properties": {
|
|
4533
4577
|
"collection": {
|
|
4534
|
-
"description": "The named collection of markup to operate on. If not specified the default markup collection will be used. Some markup collection names are used internally by Web: \"default\": The default markup layer. \"vgs-active-snapping-guides\": The active snap point when snapping. \"vgs-buffer\": Buffer graphics from out of the box buffer tools. \"vgs-context-marker\": Right click context marker on map. \"vgs-dirty-indicator\": Invalid geometry indicators used when editing. \"vgs-editing-control\": Edit frame and vertices while editing geometries. \"vgs-location-accuracy\": Location accuracy circle when geolocating. \"vgs-location-marker-*\": Location markers have this prefix followed by the marker id. \"vgs-map-notes\": Map Notes. \"vgs-measurement-labels\": Labels on measured graphics. \"vgs-other-snapping-guides\": Additional snapping point visualizations. \"vgs-self-snaps\": Used internally by snapping. \"vgs-sketching\": Temporary graphics used while drawing geometries. \"vgs-snapping-radius\": Snapping radius when snapping is active. \"vgs-transient-measurement-labels\": Measurement labels used while drawing. Web only.",
|
|
4578
|
+
"description": "The named collection of markup to operate on. If not specified the default markup collection will be used. Some markup collection names are used internally by Web: \"default\": The default markup layer. \"vgs-active-snapping-guides\": The active snap point when snapping. \"vgs-buffer\": Buffer graphics from out of the box buffer tools. \"vgs-context-marker\": Right click context marker on map. \"vgs-dirty-indicator\": Invalid geometry indicators used when editing. \"vgs-editing-control\": Edit frame and vertices while editing geometries. \"vgs-location-accuracy\": Location accuracy circle when geolocating. \"vgs-location-marker-*\": Location markers have this prefix followed by the marker id. \"vgs-map-notes\": Map Notes. \"vgs-measurement-labels\": Labels on measured graphics. \"vgs-other-snapping-guides\": Additional snapping point visualizations. \"vgs-query\": Graphics representing the custom spatial filter for the query builder tool. \"vgs-self-snaps\": Used internally by snapping. \"vgs-sketching\": Temporary graphics used while drawing geometries. \"vgs-snapping-radius\": Snapping radius when snapping is active. \"vgs-transient-measurement-labels\": Measurement labels used while drawing. Web only.",
|
|
4535
4579
|
"type": "string"
|
|
4536
4580
|
},
|
|
4537
4581
|
"maps": {
|
|
@@ -5116,7 +5160,11 @@
|
|
|
5116
5160
|
"properties": {
|
|
5117
5161
|
"geometry": {
|
|
5118
5162
|
"$ref": "#/definitions/GeometryLike",
|
|
5119
|
-
"description": "If specified, limits the results to ones that intersect the given geometry."
|
|
5163
|
+
"description": "If specified, limits the results to ones that intersect the given geometry. If both `geometry` and `graphics` are specified, only `graphics` will be used."
|
|
5164
|
+
},
|
|
5165
|
+
"graphics": {
|
|
5166
|
+
"$ref": "#/definitions/GraphicsLike",
|
|
5167
|
+
"description": "Alias of `geometry`, to facilitate command chaining. If both `geometry` and `graphics` are specified, only `graphics` will be used."
|
|
5120
5168
|
},
|
|
5121
5169
|
"layers": {
|
|
5122
5170
|
"$ref": "#/definitions/LayersLike",
|
|
@@ -6003,7 +6051,11 @@
|
|
|
6003
6051
|
"properties": {
|
|
6004
6052
|
"geometry": {
|
|
6005
6053
|
"$ref": "#/definitions/GeometryLike",
|
|
6006
|
-
"description": "If specified, limits the results to ones that intersect the given geometry."
|
|
6054
|
+
"description": "If specified, limits the results to ones that intersect the given geometry. If both `geometry` and `graphics` are specified, only `graphics` will be used."
|
|
6055
|
+
},
|
|
6056
|
+
"graphics": {
|
|
6057
|
+
"$ref": "#/definitions/GraphicsLike",
|
|
6058
|
+
"description": "Alias of `geometry`, to facilitate command chaining. If both `geometry` and `graphics` are specified, only `graphics` will be used."
|
|
6007
6059
|
},
|
|
6008
6060
|
"layers": {
|
|
6009
6061
|
"$ref": "#/definitions/LayersLike",
|
|
@@ -6083,6 +6135,9 @@
|
|
|
6083
6135
|
{
|
|
6084
6136
|
"$ref": "#/definitions/esri.rest-api.SymbolJson.SimpleMarkerSymbolJson"
|
|
6085
6137
|
},
|
|
6138
|
+
{
|
|
6139
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.TextSymbolJson"
|
|
6140
|
+
},
|
|
6086
6141
|
{
|
|
6087
6142
|
"$ref": "#/definitions/esri.rest-api.SymbolJson.LineSymbol3DJson"
|
|
6088
6143
|
},
|
|
@@ -6116,6 +6171,9 @@
|
|
|
6116
6171
|
{
|
|
6117
6172
|
"$ref": "#/definitions/esri.PolygonSymbol3D"
|
|
6118
6173
|
},
|
|
6174
|
+
{
|
|
6175
|
+
"$ref": "#/definitions/esri.TextSymbol"
|
|
6176
|
+
},
|
|
6119
6177
|
{
|
|
6120
6178
|
"items": {
|
|
6121
6179
|
"$ref": "#/definitions/SymbolLike"
|
|
@@ -6624,6 +6682,9 @@
|
|
|
6624
6682
|
{
|
|
6625
6683
|
"$ref": "#/definitions/esri.rest-api.SymbolJson.SimpleMarkerSymbolJson"
|
|
6626
6684
|
},
|
|
6685
|
+
{
|
|
6686
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.TextSymbolJson"
|
|
6687
|
+
},
|
|
6627
6688
|
{
|
|
6628
6689
|
"$ref": "#/definitions/esri.rest-api.SymbolJson.LineSymbol3DJson"
|
|
6629
6690
|
},
|
|
@@ -6656,6 +6717,9 @@
|
|
|
6656
6717
|
},
|
|
6657
6718
|
{
|
|
6658
6719
|
"$ref": "#/definitions/esri.PolygonSymbol3D"
|
|
6720
|
+
},
|
|
6721
|
+
{
|
|
6722
|
+
"$ref": "#/definitions/esri.TextSymbol"
|
|
6659
6723
|
}
|
|
6660
6724
|
],
|
|
6661
6725
|
"description": "Symbols supported for drawing."
|
|
@@ -8229,6 +8293,9 @@
|
|
|
8229
8293
|
{
|
|
8230
8294
|
"$ref": "#/definitions/esri.rest-api.SymbolJson.SimpleMarkerSymbolJson"
|
|
8231
8295
|
},
|
|
8296
|
+
{
|
|
8297
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.TextSymbolJson"
|
|
8298
|
+
},
|
|
8232
8299
|
{
|
|
8233
8300
|
"$ref": "#/definitions/esri.rest-api.SymbolJson.LineSymbol3DJson"
|
|
8234
8301
|
},
|
|
@@ -8262,6 +8329,9 @@
|
|
|
8262
8329
|
{
|
|
8263
8330
|
"$ref": "#/definitions/esri.PolygonSymbol3D"
|
|
8264
8331
|
},
|
|
8332
|
+
{
|
|
8333
|
+
"$ref": "#/definitions/esri.TextSymbol"
|
|
8334
|
+
},
|
|
8265
8335
|
{
|
|
8266
8336
|
"$ref": "#/definitions/HasSymbol"
|
|
8267
8337
|
}
|
|
@@ -18742,6 +18812,15 @@
|
|
|
18742
18812
|
"layers.hide-labels:input": {
|
|
18743
18813
|
"$ref": "#/definitions/SetLabelVisibilityArgs"
|
|
18744
18814
|
},
|
|
18815
|
+
"layers.set-label-classes": {
|
|
18816
|
+
"description": "Updates the label classes of the provided layer(s). Web only.",
|
|
18817
|
+
"enum": [
|
|
18818
|
+
"layers.set-label-classes"
|
|
18819
|
+
]
|
|
18820
|
+
},
|
|
18821
|
+
"layers.set-label-classes:input": {
|
|
18822
|
+
"$ref": "#/definitions/LayerSettingsArgs"
|
|
18823
|
+
},
|
|
18745
18824
|
"layers.set-popup-template": {
|
|
18746
18825
|
"description": "Updates the provided layer(s) with new popup template configuration. Web only.",
|
|
18747
18826
|
"enum": [
|
|
@@ -20072,6 +20151,9 @@
|
|
|
20072
20151
|
{
|
|
20073
20152
|
"$ref": "#/definitions/esri.rest-api.SymbolJson.SimpleMarkerSymbolJson"
|
|
20074
20153
|
},
|
|
20154
|
+
{
|
|
20155
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.TextSymbolJson"
|
|
20156
|
+
},
|
|
20075
20157
|
{
|
|
20076
20158
|
"$ref": "#/definitions/esri.rest-api.SymbolJson.LineSymbol3DJson"
|
|
20077
20159
|
},
|
|
@@ -20105,6 +20187,9 @@
|
|
|
20105
20187
|
{
|
|
20106
20188
|
"$ref": "#/definitions/esri.PolygonSymbol3D"
|
|
20107
20189
|
},
|
|
20190
|
+
{
|
|
20191
|
+
"$ref": "#/definitions/esri.TextSymbol"
|
|
20192
|
+
},
|
|
20108
20193
|
{
|
|
20109
20194
|
"$ref": "#/definitions/HasSymbol"
|
|
20110
20195
|
}
|
|
@@ -22645,6 +22730,22 @@
|
|
|
22645
22730
|
],
|
|
22646
22731
|
"type": "object"
|
|
22647
22732
|
},
|
|
22733
|
+
{
|
|
22734
|
+
"additionalProperties": false,
|
|
22735
|
+
"properties": {
|
|
22736
|
+
"arguments": {
|
|
22737
|
+
"$ref": "#/definitions/layers.set-label-classes:input"
|
|
22738
|
+
},
|
|
22739
|
+
"name": {
|
|
22740
|
+
"$ref": "#/definitions/layers.set-label-classes"
|
|
22741
|
+
}
|
|
22742
|
+
},
|
|
22743
|
+
"required": [
|
|
22744
|
+
"name",
|
|
22745
|
+
"arguments"
|
|
22746
|
+
],
|
|
22747
|
+
"type": "object"
|
|
22748
|
+
},
|
|
22648
22749
|
{
|
|
22649
22750
|
"additionalProperties": false,
|
|
22650
22751
|
"properties": {
|
|
@@ -24554,6 +24655,9 @@
|
|
|
24554
24655
|
{
|
|
24555
24656
|
"$ref": "#/definitions/layers.hide-labels"
|
|
24556
24657
|
},
|
|
24658
|
+
{
|
|
24659
|
+
"$ref": "#/definitions/layers.set-label-classes"
|
|
24660
|
+
},
|
|
24557
24661
|
{
|
|
24558
24662
|
"$ref": "#/definitions/layers.set-popup-template"
|
|
24559
24663
|
},
|
package/package.json
CHANGED
package/version.d.ts
CHANGED
package/version.js
CHANGED