@vertigis/viewer-spec 56.12.0 → 56.14.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/geometry.d.ts +10 -1
- 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 +219 -1
- 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
|
*/
|
|
@@ -184,6 +184,15 @@ export interface RemovePointArgs {
|
|
|
184
184
|
*/
|
|
185
185
|
pointIndex?: number;
|
|
186
186
|
}
|
|
187
|
+
/**
|
|
188
|
+
* Arguments for the geometry.buffer operation.
|
|
189
|
+
*/
|
|
190
|
+
export interface BufferGeometryArgs extends HasGeometry, HasFeatures {
|
|
191
|
+
/**
|
|
192
|
+
* Optionally override the configured buffer distance.
|
|
193
|
+
*/
|
|
194
|
+
bufferDistance?: number;
|
|
195
|
+
}
|
|
187
196
|
export declare class GeometryOperations extends OperationRegistry {
|
|
188
197
|
protected readonly _prefix = "geometry";
|
|
189
198
|
/**
|
|
@@ -206,7 +215,7 @@ export declare class GeometryOperations extends OperationRegistry {
|
|
|
206
215
|
*
|
|
207
216
|
* @webOnly
|
|
208
217
|
*/
|
|
209
|
-
get buffer(): Operation<Geometries, BufferResult>;
|
|
218
|
+
get buffer(): Operation<BufferGeometryArgs | Geometries, BufferResult>;
|
|
210
219
|
/**
|
|
211
220
|
* Returns the default buffer distance for the viewer session. Web only.
|
|
212
221
|
*
|
|
@@ -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."
|
|
@@ -1262,6 +1262,25 @@
|
|
|
1262
1262
|
],
|
|
1263
1263
|
"type": "object"
|
|
1264
1264
|
},
|
|
1265
|
+
"BufferGeometryArgs": {
|
|
1266
|
+
"additionalProperties": false,
|
|
1267
|
+
"description": "Arguments for the geometry.buffer operation.",
|
|
1268
|
+
"properties": {
|
|
1269
|
+
"bufferDistance": {
|
|
1270
|
+
"description": "Optionally override the configured buffer distance.",
|
|
1271
|
+
"type": "number"
|
|
1272
|
+
},
|
|
1273
|
+
"features": {
|
|
1274
|
+
"$ref": "#/definitions/FeaturesLike",
|
|
1275
|
+
"description": "Features to use for the command/operation."
|
|
1276
|
+
},
|
|
1277
|
+
"geometry": {
|
|
1278
|
+
"$ref": "#/definitions/GeometryLike",
|
|
1279
|
+
"description": "The geometry to use for the command/operation."
|
|
1280
|
+
}
|
|
1281
|
+
},
|
|
1282
|
+
"type": "object"
|
|
1283
|
+
},
|
|
1265
1284
|
"BufferResult": {
|
|
1266
1285
|
"additionalProperties": false,
|
|
1267
1286
|
"description": "The result of a geometry.buffer operation.",
|
|
@@ -1621,6 +1640,9 @@
|
|
|
1621
1640
|
{
|
|
1622
1641
|
"$ref": "#/definitions/esri.rest-api.SymbolJson.SimpleMarkerSymbolJson"
|
|
1623
1642
|
},
|
|
1643
|
+
{
|
|
1644
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.TextSymbolJson"
|
|
1645
|
+
},
|
|
1624
1646
|
{
|
|
1625
1647
|
"$ref": "#/definitions/esri.rest-api.SymbolJson.LineSymbol3DJson"
|
|
1626
1648
|
},
|
|
@@ -1653,6 +1675,9 @@
|
|
|
1653
1675
|
},
|
|
1654
1676
|
{
|
|
1655
1677
|
"$ref": "#/definitions/esri.PolygonSymbol3D"
|
|
1678
|
+
},
|
|
1679
|
+
{
|
|
1680
|
+
"$ref": "#/definitions/esri.TextSymbol"
|
|
1656
1681
|
}
|
|
1657
1682
|
],
|
|
1658
1683
|
"description": "The symbol that should be used to create the graphic. If null, a default is provided."
|
|
@@ -2506,6 +2531,9 @@
|
|
|
2506
2531
|
{
|
|
2507
2532
|
"$ref": "#/definitions/esri.rest-api.SymbolJson.SimpleMarkerSymbolJson"
|
|
2508
2533
|
},
|
|
2534
|
+
{
|
|
2535
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.TextSymbolJson"
|
|
2536
|
+
},
|
|
2509
2537
|
{
|
|
2510
2538
|
"$ref": "#/definitions/esri.rest-api.SymbolJson.LineSymbol3DJson"
|
|
2511
2539
|
},
|
|
@@ -2539,6 +2567,9 @@
|
|
|
2539
2567
|
{
|
|
2540
2568
|
"$ref": "#/definitions/esri.PolygonSymbol3D"
|
|
2541
2569
|
},
|
|
2570
|
+
{
|
|
2571
|
+
"$ref": "#/definitions/esri.TextSymbol"
|
|
2572
|
+
},
|
|
2542
2573
|
{
|
|
2543
2574
|
"items": {
|
|
2544
2575
|
"$ref": "#/definitions/SymbolLike"
|
|
@@ -2592,6 +2623,9 @@
|
|
|
2592
2623
|
{
|
|
2593
2624
|
"$ref": "#/definitions/esri.rest-api.SymbolJson.SimpleMarkerSymbolJson"
|
|
2594
2625
|
},
|
|
2626
|
+
{
|
|
2627
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.TextSymbolJson"
|
|
2628
|
+
},
|
|
2595
2629
|
{
|
|
2596
2630
|
"$ref": "#/definitions/esri.rest-api.SymbolJson.LineSymbol3DJson"
|
|
2597
2631
|
},
|
|
@@ -2625,6 +2659,9 @@
|
|
|
2625
2659
|
{
|
|
2626
2660
|
"$ref": "#/definitions/esri.PolygonSymbol3D"
|
|
2627
2661
|
},
|
|
2662
|
+
{
|
|
2663
|
+
"$ref": "#/definitions/esri.TextSymbol"
|
|
2664
|
+
},
|
|
2628
2665
|
{
|
|
2629
2666
|
"items": {
|
|
2630
2667
|
"$ref": "#/definitions/SymbolLike"
|
|
@@ -4219,6 +4256,26 @@
|
|
|
4219
4256
|
"additionalProperties": false,
|
|
4220
4257
|
"description": "Arguments for a `layers.edit-settings` operation.",
|
|
4221
4258
|
"properties": {
|
|
4259
|
+
"labelingInfo": {
|
|
4260
|
+
"anyOf": [
|
|
4261
|
+
{
|
|
4262
|
+
"items": {
|
|
4263
|
+
"$ref": "#/definitions/esri.rest-api.DrawingInfoJson.LabelingInfoJson"
|
|
4264
|
+
},
|
|
4265
|
+
"type": "array"
|
|
4266
|
+
},
|
|
4267
|
+
{
|
|
4268
|
+
"items": {
|
|
4269
|
+
"items": {
|
|
4270
|
+
"$ref": "#/definitions/esri.rest-api.DrawingInfoJson.LabelingInfoJson"
|
|
4271
|
+
},
|
|
4272
|
+
"type": "array"
|
|
4273
|
+
},
|
|
4274
|
+
"type": "array"
|
|
4275
|
+
}
|
|
4276
|
+
],
|
|
4277
|
+
"description": "The labeling class of the layer."
|
|
4278
|
+
},
|
|
4222
4279
|
"layers": {
|
|
4223
4280
|
"$ref": "#/definitions/LayersLike",
|
|
4224
4281
|
"description": "Layer(s) to use for the command/operation."
|
|
@@ -4258,6 +4315,9 @@
|
|
|
4258
4315
|
{
|
|
4259
4316
|
"$ref": "#/definitions/esri.rest-api.SymbolJson.SimpleMarkerSymbolJson"
|
|
4260
4317
|
},
|
|
4318
|
+
{
|
|
4319
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.TextSymbolJson"
|
|
4320
|
+
},
|
|
4261
4321
|
{
|
|
4262
4322
|
"$ref": "#/definitions/esri.rest-api.SymbolJson.LineSymbol3DJson"
|
|
4263
4323
|
},
|
|
@@ -4291,6 +4351,9 @@
|
|
|
4291
4351
|
{
|
|
4292
4352
|
"$ref": "#/definitions/esri.PolygonSymbol3D"
|
|
4293
4353
|
},
|
|
4354
|
+
{
|
|
4355
|
+
"$ref": "#/definitions/esri.TextSymbol"
|
|
4356
|
+
},
|
|
4294
4357
|
{
|
|
4295
4358
|
"items": {
|
|
4296
4359
|
"$ref": "#/definitions/SymbolLike"
|
|
@@ -6091,6 +6154,9 @@
|
|
|
6091
6154
|
{
|
|
6092
6155
|
"$ref": "#/definitions/esri.rest-api.SymbolJson.SimpleMarkerSymbolJson"
|
|
6093
6156
|
},
|
|
6157
|
+
{
|
|
6158
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.TextSymbolJson"
|
|
6159
|
+
},
|
|
6094
6160
|
{
|
|
6095
6161
|
"$ref": "#/definitions/esri.rest-api.SymbolJson.LineSymbol3DJson"
|
|
6096
6162
|
},
|
|
@@ -6124,6 +6190,9 @@
|
|
|
6124
6190
|
{
|
|
6125
6191
|
"$ref": "#/definitions/esri.PolygonSymbol3D"
|
|
6126
6192
|
},
|
|
6193
|
+
{
|
|
6194
|
+
"$ref": "#/definitions/esri.TextSymbol"
|
|
6195
|
+
},
|
|
6127
6196
|
{
|
|
6128
6197
|
"items": {
|
|
6129
6198
|
"$ref": "#/definitions/SymbolLike"
|
|
@@ -6632,6 +6701,9 @@
|
|
|
6632
6701
|
{
|
|
6633
6702
|
"$ref": "#/definitions/esri.rest-api.SymbolJson.SimpleMarkerSymbolJson"
|
|
6634
6703
|
},
|
|
6704
|
+
{
|
|
6705
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.TextSymbolJson"
|
|
6706
|
+
},
|
|
6635
6707
|
{
|
|
6636
6708
|
"$ref": "#/definitions/esri.rest-api.SymbolJson.LineSymbol3DJson"
|
|
6637
6709
|
},
|
|
@@ -6664,6 +6736,9 @@
|
|
|
6664
6736
|
},
|
|
6665
6737
|
{
|
|
6666
6738
|
"$ref": "#/definitions/esri.PolygonSymbol3D"
|
|
6739
|
+
},
|
|
6740
|
+
{
|
|
6741
|
+
"$ref": "#/definitions/esri.TextSymbol"
|
|
6667
6742
|
}
|
|
6668
6743
|
],
|
|
6669
6744
|
"description": "Symbols supported for drawing."
|
|
@@ -8237,6 +8312,9 @@
|
|
|
8237
8312
|
{
|
|
8238
8313
|
"$ref": "#/definitions/esri.rest-api.SymbolJson.SimpleMarkerSymbolJson"
|
|
8239
8314
|
},
|
|
8315
|
+
{
|
|
8316
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.TextSymbolJson"
|
|
8317
|
+
},
|
|
8240
8318
|
{
|
|
8241
8319
|
"$ref": "#/definitions/esri.rest-api.SymbolJson.LineSymbol3DJson"
|
|
8242
8320
|
},
|
|
@@ -8270,6 +8348,9 @@
|
|
|
8270
8348
|
{
|
|
8271
8349
|
"$ref": "#/definitions/esri.PolygonSymbol3D"
|
|
8272
8350
|
},
|
|
8351
|
+
{
|
|
8352
|
+
"$ref": "#/definitions/esri.TextSymbol"
|
|
8353
|
+
},
|
|
8273
8354
|
{
|
|
8274
8355
|
"$ref": "#/definitions/HasSymbol"
|
|
8275
8356
|
}
|
|
@@ -18265,7 +18346,110 @@
|
|
|
18265
18346
|
]
|
|
18266
18347
|
},
|
|
18267
18348
|
"geometry.buffer:input": {
|
|
18268
|
-
"
|
|
18349
|
+
"anyOf": [
|
|
18350
|
+
{
|
|
18351
|
+
"$ref": "#/definitions/CreateGraphicsResult"
|
|
18352
|
+
},
|
|
18353
|
+
{
|
|
18354
|
+
"$ref": "#/definitions/esri.Graphic"
|
|
18355
|
+
},
|
|
18356
|
+
{
|
|
18357
|
+
"$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
|
|
18358
|
+
},
|
|
18359
|
+
{
|
|
18360
|
+
"$ref": "@vertigis.arcgis-extensions.data.FeatureSet.FeatureSet"
|
|
18361
|
+
},
|
|
18362
|
+
{
|
|
18363
|
+
"$ref": "@vertigis.arcgis-extensions.data.FeatureList.FeatureList"
|
|
18364
|
+
},
|
|
18365
|
+
{
|
|
18366
|
+
"$ref": "@vertigis.arcgis-extensions.data.FeatureStream.FeatureStream"
|
|
18367
|
+
},
|
|
18368
|
+
{
|
|
18369
|
+
"items": {
|
|
18370
|
+
"anyOf": [
|
|
18371
|
+
{
|
|
18372
|
+
"$ref": "@vertigis.arcgis-extensions.data.Feature.FeatureProperties"
|
|
18373
|
+
},
|
|
18374
|
+
{
|
|
18375
|
+
"$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
|
|
18376
|
+
}
|
|
18377
|
+
]
|
|
18378
|
+
},
|
|
18379
|
+
"type": "array"
|
|
18380
|
+
},
|
|
18381
|
+
{
|
|
18382
|
+
"$ref": "#/definitions/HasFeatures"
|
|
18383
|
+
},
|
|
18384
|
+
{
|
|
18385
|
+
"$ref": "#/definitions/esri.Geometry"
|
|
18386
|
+
},
|
|
18387
|
+
{
|
|
18388
|
+
"$ref": "#/definitions/esri.rest-api.FeatureJson.FeatureJson"
|
|
18389
|
+
},
|
|
18390
|
+
{
|
|
18391
|
+
"$ref": "#/definitions/esri.FeatureSet"
|
|
18392
|
+
},
|
|
18393
|
+
{
|
|
18394
|
+
"items": {
|
|
18395
|
+
"anyOf": [
|
|
18396
|
+
{
|
|
18397
|
+
"$ref": "#/definitions/esri.Graphic"
|
|
18398
|
+
},
|
|
18399
|
+
{
|
|
18400
|
+
"$ref": "#/definitions/esri.rest-api.FeatureJson.FeatureJson"
|
|
18401
|
+
}
|
|
18402
|
+
]
|
|
18403
|
+
},
|
|
18404
|
+
"type": "array"
|
|
18405
|
+
},
|
|
18406
|
+
{
|
|
18407
|
+
"$ref": "#/definitions/esri.rest-api.GeometryJson.PointJson"
|
|
18408
|
+
},
|
|
18409
|
+
{
|
|
18410
|
+
"$ref": "#/definitions/esri.rest-api.GeometryJson.MultipointJson"
|
|
18411
|
+
},
|
|
18412
|
+
{
|
|
18413
|
+
"$ref": "#/definitions/esri.rest-api.GeometryJson.PolylineJson"
|
|
18414
|
+
},
|
|
18415
|
+
{
|
|
18416
|
+
"$ref": "#/definitions/esri.rest-api.GeometryJson.PolygonJson"
|
|
18417
|
+
},
|
|
18418
|
+
{
|
|
18419
|
+
"$ref": "#/definitions/esri.rest-api.GeometryJson.ExtentJson"
|
|
18420
|
+
},
|
|
18421
|
+
{
|
|
18422
|
+
"items": {
|
|
18423
|
+
"anyOf": [
|
|
18424
|
+
{
|
|
18425
|
+
"$ref": "#/definitions/esri.Geometry"
|
|
18426
|
+
},
|
|
18427
|
+
{
|
|
18428
|
+
"$ref": "#/definitions/esri.rest-api.GeometryJson.PointJson"
|
|
18429
|
+
},
|
|
18430
|
+
{
|
|
18431
|
+
"$ref": "#/definitions/esri.rest-api.GeometryJson.MultipointJson"
|
|
18432
|
+
},
|
|
18433
|
+
{
|
|
18434
|
+
"$ref": "#/definitions/esri.rest-api.GeometryJson.PolylineJson"
|
|
18435
|
+
},
|
|
18436
|
+
{
|
|
18437
|
+
"$ref": "#/definitions/esri.rest-api.GeometryJson.PolygonJson"
|
|
18438
|
+
},
|
|
18439
|
+
{
|
|
18440
|
+
"$ref": "#/definitions/esri.rest-api.GeometryJson.ExtentJson"
|
|
18441
|
+
}
|
|
18442
|
+
]
|
|
18443
|
+
},
|
|
18444
|
+
"type": "array"
|
|
18445
|
+
},
|
|
18446
|
+
{
|
|
18447
|
+
"$ref": "#/definitions/HasGeometry"
|
|
18448
|
+
},
|
|
18449
|
+
{
|
|
18450
|
+
"$ref": "#/definitions/BufferGeometryArgs"
|
|
18451
|
+
}
|
|
18452
|
+
]
|
|
18269
18453
|
},
|
|
18270
18454
|
"geometry.buffer:output": {
|
|
18271
18455
|
"$ref": "#/definitions/BufferResult"
|
|
@@ -18750,6 +18934,15 @@
|
|
|
18750
18934
|
"layers.hide-labels:input": {
|
|
18751
18935
|
"$ref": "#/definitions/SetLabelVisibilityArgs"
|
|
18752
18936
|
},
|
|
18937
|
+
"layers.set-label-classes": {
|
|
18938
|
+
"description": "Updates the label classes of the provided layer(s). Web only.",
|
|
18939
|
+
"enum": [
|
|
18940
|
+
"layers.set-label-classes"
|
|
18941
|
+
]
|
|
18942
|
+
},
|
|
18943
|
+
"layers.set-label-classes:input": {
|
|
18944
|
+
"$ref": "#/definitions/LayerSettingsArgs"
|
|
18945
|
+
},
|
|
18753
18946
|
"layers.set-popup-template": {
|
|
18754
18947
|
"description": "Updates the provided layer(s) with new popup template configuration. Web only.",
|
|
18755
18948
|
"enum": [
|
|
@@ -20080,6 +20273,9 @@
|
|
|
20080
20273
|
{
|
|
20081
20274
|
"$ref": "#/definitions/esri.rest-api.SymbolJson.SimpleMarkerSymbolJson"
|
|
20082
20275
|
},
|
|
20276
|
+
{
|
|
20277
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.TextSymbolJson"
|
|
20278
|
+
},
|
|
20083
20279
|
{
|
|
20084
20280
|
"$ref": "#/definitions/esri.rest-api.SymbolJson.LineSymbol3DJson"
|
|
20085
20281
|
},
|
|
@@ -20113,6 +20309,9 @@
|
|
|
20113
20309
|
{
|
|
20114
20310
|
"$ref": "#/definitions/esri.PolygonSymbol3D"
|
|
20115
20311
|
},
|
|
20312
|
+
{
|
|
20313
|
+
"$ref": "#/definitions/esri.TextSymbol"
|
|
20314
|
+
},
|
|
20116
20315
|
{
|
|
20117
20316
|
"$ref": "#/definitions/HasSymbol"
|
|
20118
20317
|
}
|
|
@@ -22653,6 +22852,22 @@
|
|
|
22653
22852
|
],
|
|
22654
22853
|
"type": "object"
|
|
22655
22854
|
},
|
|
22855
|
+
{
|
|
22856
|
+
"additionalProperties": false,
|
|
22857
|
+
"properties": {
|
|
22858
|
+
"arguments": {
|
|
22859
|
+
"$ref": "#/definitions/layers.set-label-classes:input"
|
|
22860
|
+
},
|
|
22861
|
+
"name": {
|
|
22862
|
+
"$ref": "#/definitions/layers.set-label-classes"
|
|
22863
|
+
}
|
|
22864
|
+
},
|
|
22865
|
+
"required": [
|
|
22866
|
+
"name",
|
|
22867
|
+
"arguments"
|
|
22868
|
+
],
|
|
22869
|
+
"type": "object"
|
|
22870
|
+
},
|
|
22656
22871
|
{
|
|
22657
22872
|
"additionalProperties": false,
|
|
22658
22873
|
"properties": {
|
|
@@ -24562,6 +24777,9 @@
|
|
|
24562
24777
|
{
|
|
24563
24778
|
"$ref": "#/definitions/layers.hide-labels"
|
|
24564
24779
|
},
|
|
24780
|
+
{
|
|
24781
|
+
"$ref": "#/definitions/layers.set-label-classes"
|
|
24782
|
+
},
|
|
24565
24783
|
{
|
|
24566
24784
|
"$ref": "#/definitions/layers.set-popup-template"
|
|
24567
24785
|
},
|
package/package.json
CHANGED
package/version.d.ts
CHANGED
package/version.js
CHANGED