@vertigis/viewer-spec 56.12.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/messaging/common.d.ts +22 -2
- package/messaging/registry/layers.d.ts +25 -0
- package/messaging/registry/layers.js +1 -1
- package/messaging/schema/common-action.schema.json +6 -0
- package/messaging/schema/mobile-action.schema.json +6 -0
- package/messaging/schema/web-action.schema.json +96 -0
- package/package.json +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
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")}}
|
|
@@ -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."
|
|
@@ -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."
|
|
@@ -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"
|
|
@@ -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"
|
|
@@ -6091,6 +6135,9 @@
|
|
|
6091
6135
|
{
|
|
6092
6136
|
"$ref": "#/definitions/esri.rest-api.SymbolJson.SimpleMarkerSymbolJson"
|
|
6093
6137
|
},
|
|
6138
|
+
{
|
|
6139
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.TextSymbolJson"
|
|
6140
|
+
},
|
|
6094
6141
|
{
|
|
6095
6142
|
"$ref": "#/definitions/esri.rest-api.SymbolJson.LineSymbol3DJson"
|
|
6096
6143
|
},
|
|
@@ -6124,6 +6171,9 @@
|
|
|
6124
6171
|
{
|
|
6125
6172
|
"$ref": "#/definitions/esri.PolygonSymbol3D"
|
|
6126
6173
|
},
|
|
6174
|
+
{
|
|
6175
|
+
"$ref": "#/definitions/esri.TextSymbol"
|
|
6176
|
+
},
|
|
6127
6177
|
{
|
|
6128
6178
|
"items": {
|
|
6129
6179
|
"$ref": "#/definitions/SymbolLike"
|
|
@@ -6632,6 +6682,9 @@
|
|
|
6632
6682
|
{
|
|
6633
6683
|
"$ref": "#/definitions/esri.rest-api.SymbolJson.SimpleMarkerSymbolJson"
|
|
6634
6684
|
},
|
|
6685
|
+
{
|
|
6686
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.TextSymbolJson"
|
|
6687
|
+
},
|
|
6635
6688
|
{
|
|
6636
6689
|
"$ref": "#/definitions/esri.rest-api.SymbolJson.LineSymbol3DJson"
|
|
6637
6690
|
},
|
|
@@ -6664,6 +6717,9 @@
|
|
|
6664
6717
|
},
|
|
6665
6718
|
{
|
|
6666
6719
|
"$ref": "#/definitions/esri.PolygonSymbol3D"
|
|
6720
|
+
},
|
|
6721
|
+
{
|
|
6722
|
+
"$ref": "#/definitions/esri.TextSymbol"
|
|
6667
6723
|
}
|
|
6668
6724
|
],
|
|
6669
6725
|
"description": "Symbols supported for drawing."
|
|
@@ -8237,6 +8293,9 @@
|
|
|
8237
8293
|
{
|
|
8238
8294
|
"$ref": "#/definitions/esri.rest-api.SymbolJson.SimpleMarkerSymbolJson"
|
|
8239
8295
|
},
|
|
8296
|
+
{
|
|
8297
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.TextSymbolJson"
|
|
8298
|
+
},
|
|
8240
8299
|
{
|
|
8241
8300
|
"$ref": "#/definitions/esri.rest-api.SymbolJson.LineSymbol3DJson"
|
|
8242
8301
|
},
|
|
@@ -8270,6 +8329,9 @@
|
|
|
8270
8329
|
{
|
|
8271
8330
|
"$ref": "#/definitions/esri.PolygonSymbol3D"
|
|
8272
8331
|
},
|
|
8332
|
+
{
|
|
8333
|
+
"$ref": "#/definitions/esri.TextSymbol"
|
|
8334
|
+
},
|
|
8273
8335
|
{
|
|
8274
8336
|
"$ref": "#/definitions/HasSymbol"
|
|
8275
8337
|
}
|
|
@@ -18750,6 +18812,15 @@
|
|
|
18750
18812
|
"layers.hide-labels:input": {
|
|
18751
18813
|
"$ref": "#/definitions/SetLabelVisibilityArgs"
|
|
18752
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
|
+
},
|
|
18753
18824
|
"layers.set-popup-template": {
|
|
18754
18825
|
"description": "Updates the provided layer(s) with new popup template configuration. Web only.",
|
|
18755
18826
|
"enum": [
|
|
@@ -20080,6 +20151,9 @@
|
|
|
20080
20151
|
{
|
|
20081
20152
|
"$ref": "#/definitions/esri.rest-api.SymbolJson.SimpleMarkerSymbolJson"
|
|
20082
20153
|
},
|
|
20154
|
+
{
|
|
20155
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.TextSymbolJson"
|
|
20156
|
+
},
|
|
20083
20157
|
{
|
|
20084
20158
|
"$ref": "#/definitions/esri.rest-api.SymbolJson.LineSymbol3DJson"
|
|
20085
20159
|
},
|
|
@@ -20113,6 +20187,9 @@
|
|
|
20113
20187
|
{
|
|
20114
20188
|
"$ref": "#/definitions/esri.PolygonSymbol3D"
|
|
20115
20189
|
},
|
|
20190
|
+
{
|
|
20191
|
+
"$ref": "#/definitions/esri.TextSymbol"
|
|
20192
|
+
},
|
|
20116
20193
|
{
|
|
20117
20194
|
"$ref": "#/definitions/HasSymbol"
|
|
20118
20195
|
}
|
|
@@ -22653,6 +22730,22 @@
|
|
|
22653
22730
|
],
|
|
22654
22731
|
"type": "object"
|
|
22655
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
|
+
},
|
|
22656
22749
|
{
|
|
22657
22750
|
"additionalProperties": false,
|
|
22658
22751
|
"properties": {
|
|
@@ -24562,6 +24655,9 @@
|
|
|
24562
24655
|
{
|
|
24563
24656
|
"$ref": "#/definitions/layers.hide-labels"
|
|
24564
24657
|
},
|
|
24658
|
+
{
|
|
24659
|
+
"$ref": "#/definitions/layers.set-label-classes"
|
|
24660
|
+
},
|
|
24565
24661
|
{
|
|
24566
24662
|
"$ref": "#/definitions/layers.set-popup-template"
|
|
24567
24663
|
},
|
package/package.json
CHANGED
package/version.d.ts
CHANGED
package/version.js
CHANGED