@vertigis/viewer-spec 59.26.0 → 59.28.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 +15 -1
- package/messaging/registry/drawing.d.ts +2 -2
- package/messaging/registry/layers.d.ts +2 -2
- package/messaging/registry/map.d.ts +9 -2
- package/messaging/registry/map.js +1 -1
- package/messaging/schema/common-action.schema.json +20 -2
- package/messaging/schema/mobile-action.schema.json +63 -2
- package/messaging/schema/web-action.schema.json +90 -2
- package/package.json +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
package/messaging/common.d.ts
CHANGED
|
@@ -13,7 +13,7 @@ import type SimpleFillSymbol from "@arcgis/core/symbols/SimpleFillSymbol";
|
|
|
13
13
|
import type SimpleLineSymbol from "@arcgis/core/symbols/SimpleLineSymbol";
|
|
14
14
|
import type SimpleMarkerSymbol from "@arcgis/core/symbols/SimpleMarkerSymbol";
|
|
15
15
|
import type TextSymbol from "@arcgis/core/symbols/TextSymbol";
|
|
16
|
-
import type { GeometryUnion } from "@arcgis/core/unionTypes";
|
|
16
|
+
import type { GeometryUnion, RendererUnion } from "@arcgis/core/unionTypes";
|
|
17
17
|
import type { Entity } from "@vertigis/arcgis-extensions/Entity";
|
|
18
18
|
import type { Feature, FeatureProperties } from "@vertigis/arcgis-extensions/data/Feature";
|
|
19
19
|
import type { FeatureList } from "@vertigis/arcgis-extensions/data/FeatureList";
|
|
@@ -24,6 +24,7 @@ import type { TableExtension, TableReference as TableReferenceObject } from "@ve
|
|
|
24
24
|
import type { LabelingInfoJson } from "@vertigis/arcgis-extensions/json/DrawingInfoJson";
|
|
25
25
|
import type { FeatureJson } from "@vertigis/arcgis-extensions/json/FeatureJson";
|
|
26
26
|
import type { GeometryJson } from "@vertigis/arcgis-extensions/json/GeometryJson";
|
|
27
|
+
import type { RendererJson } from "@vertigis/arcgis-extensions/json/RendererJson";
|
|
27
28
|
import type { CIMSymbolReferenceJson, LineSymbol3DJson, PictureFillSymbolJson, PictureMarkerSymbolJson, PointSymbol3DJson, PolygonSymbol3DJson, SimpleFillSymbolJson, SimpleLineSymbolJson, SimpleMarkerSymbolJson, TextSymbolJson } from "@vertigis/arcgis-extensions/json/SymbolJson";
|
|
28
29
|
import type { ViewpointJson } from "@vertigis/arcgis-extensions/json/ViewpointJson";
|
|
29
30
|
import type { BasemapExtension } from "@vertigis/arcgis-extensions/mapping/BasemapExtension";
|
|
@@ -290,6 +291,19 @@ export interface HasSymbols {
|
|
|
290
291
|
*/
|
|
291
292
|
symbols?: SymbolLike | SymbolLike[];
|
|
292
293
|
}
|
|
294
|
+
/**
|
|
295
|
+
* Renderers supported for styling features.
|
|
296
|
+
*/
|
|
297
|
+
export type RendererLike = RendererJson | RendererUnion;
|
|
298
|
+
/**
|
|
299
|
+
* An object that has a `renderer` property.
|
|
300
|
+
*/
|
|
301
|
+
export interface HasRenderer {
|
|
302
|
+
/**
|
|
303
|
+
* The renderer configuration to use for the command/operation.
|
|
304
|
+
*/
|
|
305
|
+
renderer?: RendererLike;
|
|
306
|
+
}
|
|
293
307
|
/**
|
|
294
308
|
* An object that is convertible to an Esri Viewpoint, or that has a viewpoint
|
|
295
309
|
* property.
|
|
@@ -15,7 +15,7 @@ import type { Command } from "../Command.js";
|
|
|
15
15
|
import { CommandRegistry } from "../CommandRegistry.js";
|
|
16
16
|
import type { Operation } from "../Operation.js";
|
|
17
17
|
import { OperationRegistry } from "../OperationRegistry.js";
|
|
18
|
-
import type { CreateGraphicsResult, FeaturesLike, GeometryLike, HasFeatures, HasGraphics, HasLayers, HasMaps, HasSymbol, HasSymbols, HasUITarget, SymbolLike } from "../common.js";
|
|
18
|
+
import type { CreateGraphicsResult, FeaturesLike, GeometryLike, HasFeatures, HasGraphics, HasLayers, HasMaps, HasRenderer, HasSymbol, HasSymbols, HasUITarget, SymbolLike } from "../common.js";
|
|
19
19
|
import type { CaptureGeometryArgs } from "./sketching.js";
|
|
20
20
|
/**
|
|
21
21
|
* Symbols supported for drawing.
|
|
@@ -57,7 +57,7 @@ export interface EditSymbolArgs extends HasSymbol, HasSymbols, HasMaps, HasLayer
|
|
|
57
57
|
* Arguments for the drawing.edit-symbol operation. Only available in VertiGIS
|
|
58
58
|
* Studio Web.
|
|
59
59
|
*/
|
|
60
|
-
export interface EditSymbolResult extends HasMaps, HasLayers, HasGraphics, HasFeatures, HasSymbols, HasSymbol {
|
|
60
|
+
export interface EditSymbolResult extends HasMaps, HasLayers, HasGraphics, HasFeatures, HasSymbols, HasSymbol, HasRenderer {
|
|
61
61
|
}
|
|
62
62
|
/**
|
|
63
63
|
* Arguments for the "drawing.create-graphics" operation. `GeometryLike`,
|
|
@@ -8,7 +8,7 @@ import type { Event } from "../Event.js";
|
|
|
8
8
|
import { EventRegistry } from "../EventRegistry.js";
|
|
9
9
|
import type { Operation } from "../Operation.js";
|
|
10
10
|
import { OperationRegistry } from "../OperationRegistry.js";
|
|
11
|
-
import type { HasFiles, HasLayers, HasMaps, HasSymbol, HasSymbols, LayersLike } from "../common.js";
|
|
11
|
+
import type { HasFiles, HasLayers, HasMaps, HasRenderer, HasSymbol, HasSymbols, LayersLike } from "../common.js";
|
|
12
12
|
/**
|
|
13
13
|
* Arguments for the "layers.visibility-changed" event.
|
|
14
14
|
*/
|
|
@@ -43,7 +43,7 @@ export interface SetLabelVisibilityArgs extends HasLayers, HasMaps {
|
|
|
43
43
|
/**
|
|
44
44
|
* Arguments for the layers.set-symbol command.
|
|
45
45
|
*/
|
|
46
|
-
export type SetSymbolArgs = HasSymbol & HasSymbols & HasLayers & HasMaps;
|
|
46
|
+
export type SetSymbolArgs = HasSymbol & HasSymbols & HasLayers & HasMaps & HasRenderer;
|
|
47
47
|
/**
|
|
48
48
|
* Arguments for the layers.set-visibility command. If no 'maps' are specified,
|
|
49
49
|
* all active maps in the layout will be targeted. If no 'layers' are specified,
|
|
@@ -943,7 +943,7 @@ export declare class MapCommands extends CommandRegistry {
|
|
|
943
943
|
/**
|
|
944
944
|
* Pans (without zooming) to one or many features on the targeted map(s).
|
|
945
945
|
*/
|
|
946
|
-
get panToFeatures(): Command<
|
|
946
|
+
get panToFeatures(): Command<ZoomToFeaturesArgs>;
|
|
947
947
|
/**
|
|
948
948
|
* Pan (without zooming) to one or many geometries on the targeted map(s).
|
|
949
949
|
* Web only.
|
|
@@ -951,6 +951,13 @@ export declare class MapCommands extends CommandRegistry {
|
|
|
951
951
|
* @webOnly
|
|
952
952
|
*/
|
|
953
953
|
get panToGeometry(): Command<Geometries | HasMapGeometry>;
|
|
954
|
+
/**
|
|
955
|
+
* Pan (without zooming) to one or many geometries on the targeted map(s).
|
|
956
|
+
* Mobile only.
|
|
957
|
+
*
|
|
958
|
+
* @mobileOnly
|
|
959
|
+
*/
|
|
960
|
+
get panToGeometries(): Command<HasMapGeometry>;
|
|
954
961
|
/**
|
|
955
962
|
* Pauses sketching on the map. Stores the current sketch editor and
|
|
956
963
|
* geometry for later use. Mobile only.
|
|
@@ -1030,7 +1037,7 @@ export declare class MapCommands extends CommandRegistry {
|
|
|
1030
1037
|
/**
|
|
1031
1038
|
* Zooms to one or many features.
|
|
1032
1039
|
*/
|
|
1033
|
-
get zoomToFeatures(): Command<
|
|
1040
|
+
get zoomToFeatures(): Command<ZoomToFeaturesArgs>;
|
|
1034
1041
|
/**
|
|
1035
1042
|
* Zooms to one or many geometries. Web only.
|
|
1036
1043
|
*
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{CommandRegistry as e}from"../CommandRegistry.js";import{EventRegistry as t}from"../EventRegistry.js";import{OperationRegistry as r}from"../OperationRegistry.js";export class MapCommands extends e{_prefix="map";get addMarkup(){return this._get("add-markup")}get addLayers(){return this._get("add-layers")}get applyFilterEffect(){return this._get("apply-filter-effect")}get applyLayerPreset(){return this._get("apply-layer-preset")}get createNote(){return this._get("create-note")}get editNote(){return this._get("edit-note")}get removeFilterEffects(){return this._get("remove-filter-effects")}get clearFilterEffects(){return this._get("clear-filter-effects")}get clearMarkup(){return this._get("clear-markup")}get disableMapClick(){return this._get("disable-map-click")}get displayExtentSelector(){return this._get("display-extent-selector")}get enableMapClick(){return this._get("enable-map-click")}get goToFeatures(){return this._get("go-to-features")}get goToGeometry(){return this._get("go-to-geometry")}get goToNextViewpoint(){return this._get("go-to-next-viewpoint")}get goToPreviousViewpoint(){return this._get("go-to-previous-viewpoint")}get goToViewpoint(){return this._get("go-to-viewpoint")}get goToScale(){return this._get("go-to-scale")}get goToInitialViewpoint(){return this._get("go-to-initial-viewpoint")}get goToLayerExtent(){return this._get("go-to-layer-extent")}get hideExtentSelector(){return this._get("hide-extent-selector")}get hideMarkup(){return this._get("hide-markup")}get panToFeatures(){return this._get("pan-to-features")}get panToGeometry(){return this._get("pan-to-geometry")}get pauseSketch(){return this._get("pause-sketch")}get removeLayers(){return this._get("remove-layers")}get replace(){return this._get("replace")}get replaceAdditionalLayers(){return this._get("replace-additional-layers")}get replaceMmpk(){return this._get("replace-mmpk")}get resumeSketch(){return this._get("resume-sketch")}get rotateBy(){return this._get("rotate-by")}get rotateTo(){return this._get("rotate-to")}get refresh(){return this._get("refresh")}get setViewMode(){return this._get("set-view-mode")}get showMarkup(){return this._get("show-markup")}get updateLayer(){return this._get("update-layer")}get zoomToFeatures(){return this._get("zoom-to-features")}get zoomToGeometry(){return this._get("zoom-to-geometry")}get zoomIn(){return this._get("zoom-in")}get zoomOut(){return this._get("zoom-out")}get zoomToScale(){return this._get("zoom-to-scale")}get zoomToInitialViewpoint(){return this._get("zoom-to-initial-viewpoint")}get zoomToNextViewpoint(){return this._get("zoom-to-next-viewpoint")}get zoomToPreviousViewpoint(){return this._get("zoom-to-previous-viewpoint")}get zoomToViewpoint(){return this._get("zoom-to-viewpoint")}get zoomToLayerExtent(){return this._get("zoom-to-layer-extent")}get zoomToLayerVisibleScale(){return this._get("zoom-to-layer-visible-scale")}}export class MapEvents extends t{_prefix="map";get initialized(){return this._get("initialized")}get initializing(){return this._get("initializing")}get markupAdded(){return this._get("markup-added")}get markupCleared(){return this._get("markup-cleared")}get navigationCompleted(){return this._get("navigation-completed")}get refreshed(){return this._get("refreshed")}get refreshing(){return this._get("refreshing")}get rotated(){return this._get("rotated")}get rotating(){return this._get("rotating")}get switched(){return this._get("switched")}get viewModeChanged(){return this._get("view-mode-changed")}get viewpointChanged(){return this._get("viewpoint-changed")}get imageExported(){return this._get("image-exported")}}export class MapOperations extends r{_prefix="map";get getUserCoordinatesInput(){return this._get("get-user-coordinates-input")}get getCoordinateTransformation(){return this._get("get-coordinate-transformation")}get exportImage(){return this._get("export-image")}get exportWebMapOrScene(){return this._get("export-web-map-or-scene")}get getMarkup(){return this._get("get-markup")}get getExtent(){return this._get("get-extent")}get getGeometryFromSelector(){return this._get("get-geometry-from-selector")}get getInitialViewpoint(){return this._get("get-initial-viewpoint")}get getViewpoint(){return this._get("get-viewpoint")}get getSpatialReference(){return this._get("get-spatial-reference")}get getVisibleCenter(){return this._get("get-visible-center")}get hide(){return this._get("hide")}get show(){return this._get("show")}get startSketch(){return this._get("start-sketch")}get stopSketch(){return this._get("stop-sketch")}get getViewInsets(){return this._get("get-view-insets")}}
|
|
1
|
+
import{CommandRegistry as e}from"../CommandRegistry.js";import{EventRegistry as t}from"../EventRegistry.js";import{OperationRegistry as r}from"../OperationRegistry.js";export class MapCommands extends e{_prefix="map";get addMarkup(){return this._get("add-markup")}get addLayers(){return this._get("add-layers")}get applyFilterEffect(){return this._get("apply-filter-effect")}get applyLayerPreset(){return this._get("apply-layer-preset")}get createNote(){return this._get("create-note")}get editNote(){return this._get("edit-note")}get removeFilterEffects(){return this._get("remove-filter-effects")}get clearFilterEffects(){return this._get("clear-filter-effects")}get clearMarkup(){return this._get("clear-markup")}get disableMapClick(){return this._get("disable-map-click")}get displayExtentSelector(){return this._get("display-extent-selector")}get enableMapClick(){return this._get("enable-map-click")}get goToFeatures(){return this._get("go-to-features")}get goToGeometry(){return this._get("go-to-geometry")}get goToNextViewpoint(){return this._get("go-to-next-viewpoint")}get goToPreviousViewpoint(){return this._get("go-to-previous-viewpoint")}get goToViewpoint(){return this._get("go-to-viewpoint")}get goToScale(){return this._get("go-to-scale")}get goToInitialViewpoint(){return this._get("go-to-initial-viewpoint")}get goToLayerExtent(){return this._get("go-to-layer-extent")}get hideExtentSelector(){return this._get("hide-extent-selector")}get hideMarkup(){return this._get("hide-markup")}get panToFeatures(){return this._get("pan-to-features")}get panToGeometry(){return this._get("pan-to-geometry")}get panToGeometries(){return this._get("pan-to-geometries")}get pauseSketch(){return this._get("pause-sketch")}get removeLayers(){return this._get("remove-layers")}get replace(){return this._get("replace")}get replaceAdditionalLayers(){return this._get("replace-additional-layers")}get replaceMmpk(){return this._get("replace-mmpk")}get resumeSketch(){return this._get("resume-sketch")}get rotateBy(){return this._get("rotate-by")}get rotateTo(){return this._get("rotate-to")}get refresh(){return this._get("refresh")}get setViewMode(){return this._get("set-view-mode")}get showMarkup(){return this._get("show-markup")}get updateLayer(){return this._get("update-layer")}get zoomToFeatures(){return this._get("zoom-to-features")}get zoomToGeometry(){return this._get("zoom-to-geometry")}get zoomIn(){return this._get("zoom-in")}get zoomOut(){return this._get("zoom-out")}get zoomToScale(){return this._get("zoom-to-scale")}get zoomToInitialViewpoint(){return this._get("zoom-to-initial-viewpoint")}get zoomToNextViewpoint(){return this._get("zoom-to-next-viewpoint")}get zoomToPreviousViewpoint(){return this._get("zoom-to-previous-viewpoint")}get zoomToViewpoint(){return this._get("zoom-to-viewpoint")}get zoomToLayerExtent(){return this._get("zoom-to-layer-extent")}get zoomToLayerVisibleScale(){return this._get("zoom-to-layer-visible-scale")}}export class MapEvents extends t{_prefix="map";get initialized(){return this._get("initialized")}get initializing(){return this._get("initializing")}get markupAdded(){return this._get("markup-added")}get markupCleared(){return this._get("markup-cleared")}get navigationCompleted(){return this._get("navigation-completed")}get refreshed(){return this._get("refreshed")}get refreshing(){return this._get("refreshing")}get rotated(){return this._get("rotated")}get rotating(){return this._get("rotating")}get switched(){return this._get("switched")}get viewModeChanged(){return this._get("view-mode-changed")}get viewpointChanged(){return this._get("viewpoint-changed")}get imageExported(){return this._get("image-exported")}}export class MapOperations extends r{_prefix="map";get getUserCoordinatesInput(){return this._get("get-user-coordinates-input")}get getCoordinateTransformation(){return this._get("get-coordinate-transformation")}get exportImage(){return this._get("export-image")}get exportWebMapOrScene(){return this._get("export-web-map-or-scene")}get getMarkup(){return this._get("get-markup")}get getExtent(){return this._get("get-extent")}get getGeometryFromSelector(){return this._get("get-geometry-from-selector")}get getInitialViewpoint(){return this._get("get-initial-viewpoint")}get getViewpoint(){return this._get("get-viewpoint")}get getSpatialReference(){return this._get("get-spatial-reference")}get getVisibleCenter(){return this._get("get-visible-center")}get hide(){return this._get("hide")}get show(){return this._get("show")}get startSketch(){return this._get("start-sketch")}get stopSketch(){return this._get("stop-sketch")}get getViewInsets(){return this._get("get-view-insets")}}
|
|
@@ -4206,6 +4206,24 @@
|
|
|
4206
4206
|
],
|
|
4207
4207
|
"type": "object"
|
|
4208
4208
|
},
|
|
4209
|
+
"ZoomToFeaturesArgs": {
|
|
4210
|
+
"additionalProperties": false,
|
|
4211
|
+
"description": "Arguments for the map.zoom-to-features command.",
|
|
4212
|
+
"properties": {
|
|
4213
|
+
"features": {
|
|
4214
|
+
"$ref": "#/definitions/FeaturesLike",
|
|
4215
|
+
"description": "The feature(s) to zoom to."
|
|
4216
|
+
},
|
|
4217
|
+
"maps": {
|
|
4218
|
+
"$ref": "MapsLike",
|
|
4219
|
+
"description": "The map(s) to zoom. If omitted, all maps will be zoomed."
|
|
4220
|
+
}
|
|
4221
|
+
},
|
|
4222
|
+
"required": [
|
|
4223
|
+
"features"
|
|
4224
|
+
],
|
|
4225
|
+
"type": "object"
|
|
4226
|
+
},
|
|
4209
4227
|
"ZoomToViewpointArgs": {
|
|
4210
4228
|
"additionalProperties": false,
|
|
4211
4229
|
"description": "Arguments for the map.zoom-to-viewpoint command.",
|
|
@@ -14801,7 +14819,7 @@
|
|
|
14801
14819
|
]
|
|
14802
14820
|
},
|
|
14803
14821
|
"map.pan-to-features:input": {
|
|
14804
|
-
"$ref": "#/definitions/
|
|
14822
|
+
"$ref": "#/definitions/ZoomToFeaturesArgs"
|
|
14805
14823
|
},
|
|
14806
14824
|
"map.rotate-by": {
|
|
14807
14825
|
"description": "Rotates the map by the specified amount.",
|
|
@@ -14828,7 +14846,7 @@
|
|
|
14828
14846
|
]
|
|
14829
14847
|
},
|
|
14830
14848
|
"map.zoom-to-features:input": {
|
|
14831
|
-
"$ref": "#/definitions/
|
|
14849
|
+
"$ref": "#/definitions/ZoomToFeaturesArgs"
|
|
14832
14850
|
},
|
|
14833
14851
|
"map.zoom-to-initial-viewpoint": {
|
|
14834
14852
|
"description": "Zooms the map to its initial viewpoint.",
|
|
@@ -3105,6 +3105,21 @@
|
|
|
3105
3105
|
],
|
|
3106
3106
|
"type": "string"
|
|
3107
3107
|
},
|
|
3108
|
+
"HasMapGeometry": {
|
|
3109
|
+
"additionalProperties": false,
|
|
3110
|
+
"description": "A result geometry which also indicates which map it came from.",
|
|
3111
|
+
"properties": {
|
|
3112
|
+
"geometry": {
|
|
3113
|
+
"$ref": "#/definitions/GeometryLike",
|
|
3114
|
+
"description": "The geometry to target."
|
|
3115
|
+
},
|
|
3116
|
+
"maps": {
|
|
3117
|
+
"$ref": "MapsLike",
|
|
3118
|
+
"description": "The map(s) to target."
|
|
3119
|
+
}
|
|
3120
|
+
},
|
|
3121
|
+
"type": "object"
|
|
3122
|
+
},
|
|
3108
3123
|
"HasMaps": {
|
|
3109
3124
|
"additionalProperties": false,
|
|
3110
3125
|
"description": "Defines an object that has a `maps` property.",
|
|
@@ -5423,6 +5438,24 @@
|
|
|
5423
5438
|
],
|
|
5424
5439
|
"type": "object"
|
|
5425
5440
|
},
|
|
5441
|
+
"ZoomToFeaturesArgs": {
|
|
5442
|
+
"additionalProperties": false,
|
|
5443
|
+
"description": "Arguments for the map.zoom-to-features command.",
|
|
5444
|
+
"properties": {
|
|
5445
|
+
"features": {
|
|
5446
|
+
"$ref": "#/definitions/FeaturesLike",
|
|
5447
|
+
"description": "The feature(s) to zoom to."
|
|
5448
|
+
},
|
|
5449
|
+
"maps": {
|
|
5450
|
+
"$ref": "MapsLike",
|
|
5451
|
+
"description": "The map(s) to zoom. If omitted, all maps will be zoomed."
|
|
5452
|
+
}
|
|
5453
|
+
},
|
|
5454
|
+
"required": [
|
|
5455
|
+
"features"
|
|
5456
|
+
],
|
|
5457
|
+
"type": "object"
|
|
5458
|
+
},
|
|
5426
5459
|
"ZoomToViewpointArgs": {
|
|
5427
5460
|
"additionalProperties": false,
|
|
5428
5461
|
"description": "Arguments for the map.zoom-to-viewpoint command.",
|
|
@@ -16542,7 +16575,16 @@
|
|
|
16542
16575
|
]
|
|
16543
16576
|
},
|
|
16544
16577
|
"map.pan-to-features:input": {
|
|
16545
|
-
"$ref": "#/definitions/
|
|
16578
|
+
"$ref": "#/definitions/ZoomToFeaturesArgs"
|
|
16579
|
+
},
|
|
16580
|
+
"map.pan-to-geometries": {
|
|
16581
|
+
"description": "Pan (without zooming) to one or many geometries on the targeted map(s). Mobile only.",
|
|
16582
|
+
"enum": [
|
|
16583
|
+
"map.pan-to-geometries"
|
|
16584
|
+
]
|
|
16585
|
+
},
|
|
16586
|
+
"map.pan-to-geometries:input": {
|
|
16587
|
+
"$ref": "#/definitions/HasMapGeometry"
|
|
16546
16588
|
},
|
|
16547
16589
|
"map.pause-sketch": {
|
|
16548
16590
|
"description": "Pauses sketching on the map. Stores the current sketch editor and geometry for later use. Mobile only.",
|
|
@@ -16659,7 +16701,7 @@
|
|
|
16659
16701
|
]
|
|
16660
16702
|
},
|
|
16661
16703
|
"map.zoom-to-features:input": {
|
|
16662
|
-
"$ref": "#/definitions/
|
|
16704
|
+
"$ref": "#/definitions/ZoomToFeaturesArgs"
|
|
16663
16705
|
},
|
|
16664
16706
|
"map.zoom-to-initial-viewpoint": {
|
|
16665
16707
|
"description": "Zooms the map to its initial viewpoint.",
|
|
@@ -18621,6 +18663,22 @@
|
|
|
18621
18663
|
],
|
|
18622
18664
|
"type": "object"
|
|
18623
18665
|
},
|
|
18666
|
+
{
|
|
18667
|
+
"additionalProperties": false,
|
|
18668
|
+
"properties": {
|
|
18669
|
+
"arguments": {
|
|
18670
|
+
"$ref": "#/definitions/map.pan-to-geometries:input"
|
|
18671
|
+
},
|
|
18672
|
+
"name": {
|
|
18673
|
+
"$ref": "#/definitions/map.pan-to-geometries"
|
|
18674
|
+
}
|
|
18675
|
+
},
|
|
18676
|
+
"required": [
|
|
18677
|
+
"name",
|
|
18678
|
+
"arguments"
|
|
18679
|
+
],
|
|
18680
|
+
"type": "object"
|
|
18681
|
+
},
|
|
18624
18682
|
{
|
|
18625
18683
|
"additionalProperties": false,
|
|
18626
18684
|
"properties": {
|
|
@@ -19963,6 +20021,9 @@
|
|
|
19963
20021
|
{
|
|
19964
20022
|
"$ref": "#/definitions/map.pan-to-features"
|
|
19965
20023
|
},
|
|
20024
|
+
{
|
|
20025
|
+
"$ref": "#/definitions/map.pan-to-geometries"
|
|
20026
|
+
},
|
|
19966
20027
|
{
|
|
19967
20028
|
"$ref": "#/definitions/map.pause-sketch"
|
|
19968
20029
|
},
|
|
@@ -3493,6 +3493,10 @@
|
|
|
3493
3493
|
"$ref": "MapsLike",
|
|
3494
3494
|
"description": "Map(s) to use for the command/operation."
|
|
3495
3495
|
},
|
|
3496
|
+
"renderer": {
|
|
3497
|
+
"$ref": "#/definitions/RendererLike",
|
|
3498
|
+
"description": "The renderer configuration to use for the command/operation."
|
|
3499
|
+
},
|
|
3496
3500
|
"symbol": {
|
|
3497
3501
|
"$ref": "SymbolLike",
|
|
3498
3502
|
"description": "The symbol to use for the command/operation."
|
|
@@ -7149,6 +7153,68 @@
|
|
|
7149
7153
|
],
|
|
7150
7154
|
"description": "A renderer.\n\nPart of the ArcGIS REST API (see http://resources.arcgis.com/en/help/rest/apiref/renderer.html)."
|
|
7151
7155
|
},
|
|
7156
|
+
"RendererLike": {
|
|
7157
|
+
"anyOf": [
|
|
7158
|
+
{
|
|
7159
|
+
"$ref": "#/definitions/esri.rest-api.RendererJson.ClassBreaksRendererJson"
|
|
7160
|
+
},
|
|
7161
|
+
{
|
|
7162
|
+
"$ref": "#/definitions/esri.rest-api.RendererJson.HeatmapRendererJson"
|
|
7163
|
+
},
|
|
7164
|
+
{
|
|
7165
|
+
"$ref": "#/definitions/esri.rest-api.RendererJson.PointCloudClassBreaksRendererJson"
|
|
7166
|
+
},
|
|
7167
|
+
{
|
|
7168
|
+
"$ref": "#/definitions/esri.rest-api.RendererJson.PointCloudRGBRendererJson"
|
|
7169
|
+
},
|
|
7170
|
+
{
|
|
7171
|
+
"$ref": "#/definitions/esri.rest-api.RendererJson.PointCloudStretchRendererJson"
|
|
7172
|
+
},
|
|
7173
|
+
{
|
|
7174
|
+
"$ref": "#/definitions/esri.rest-api.RendererJson.PointCloudUniqueValueRendererJson"
|
|
7175
|
+
},
|
|
7176
|
+
{
|
|
7177
|
+
"$ref": "#/definitions/esri.rest-api.RendererJson.PredominanceRendererJson"
|
|
7178
|
+
},
|
|
7179
|
+
{
|
|
7180
|
+
"$ref": "#/definitions/esri.rest-api.RendererJson.SimpleRendererJson"
|
|
7181
|
+
},
|
|
7182
|
+
{
|
|
7183
|
+
"$ref": "#/definitions/esri.rest-api.RendererJson.TemporalRendererJson"
|
|
7184
|
+
},
|
|
7185
|
+
{
|
|
7186
|
+
"$ref": "#/definitions/esri.rest-api.RendererJson.UniqueValueFromStyleRendererJson"
|
|
7187
|
+
},
|
|
7188
|
+
{
|
|
7189
|
+
"$ref": "#/definitions/esri.rest-api.RendererJson.UniqueValueRendererJson"
|
|
7190
|
+
},
|
|
7191
|
+
{
|
|
7192
|
+
"$ref": "#/definitions/esri.rest-api.RendererJson.VectorFieldRendererJson"
|
|
7193
|
+
},
|
|
7194
|
+
{
|
|
7195
|
+
"$ref": "esri.HeatmapRenderer"
|
|
7196
|
+
},
|
|
7197
|
+
{
|
|
7198
|
+
"$ref": "esri.SimpleRenderer"
|
|
7199
|
+
},
|
|
7200
|
+
{
|
|
7201
|
+
"$ref": "esri.ClassBreaksRenderer"
|
|
7202
|
+
},
|
|
7203
|
+
{
|
|
7204
|
+
"$ref": "esri.UniqueValueRenderer"
|
|
7205
|
+
},
|
|
7206
|
+
{
|
|
7207
|
+
"$ref": "esri.DotDensityRenderer"
|
|
7208
|
+
},
|
|
7209
|
+
{
|
|
7210
|
+
"$ref": "esri.DictionaryRenderer"
|
|
7211
|
+
},
|
|
7212
|
+
{
|
|
7213
|
+
"$ref": "esri.PieChartRenderer"
|
|
7214
|
+
}
|
|
7215
|
+
],
|
|
7216
|
+
"description": "Renderers supported for styling features."
|
|
7217
|
+
},
|
|
7152
7218
|
"RepeatActionArgs": {
|
|
7153
7219
|
"additionalProperties": false,
|
|
7154
7220
|
"description": "Arguments for the system.repeat-action command.",
|
|
@@ -8084,6 +8150,10 @@
|
|
|
8084
8150
|
"$ref": "MapsLike",
|
|
8085
8151
|
"description": "Map(s) to use for the command/operation."
|
|
8086
8152
|
},
|
|
8153
|
+
"renderer": {
|
|
8154
|
+
"$ref": "#/definitions/RendererLike",
|
|
8155
|
+
"description": "The renderer configuration to use for the command/operation."
|
|
8156
|
+
},
|
|
8087
8157
|
"symbol": {
|
|
8088
8158
|
"$ref": "SymbolLike",
|
|
8089
8159
|
"description": "The symbol to use for the command/operation."
|
|
@@ -9985,6 +10055,24 @@
|
|
|
9985
10055
|
],
|
|
9986
10056
|
"type": "object"
|
|
9987
10057
|
},
|
|
10058
|
+
"ZoomToFeaturesArgs": {
|
|
10059
|
+
"additionalProperties": false,
|
|
10060
|
+
"description": "Arguments for the map.zoom-to-features command.",
|
|
10061
|
+
"properties": {
|
|
10062
|
+
"features": {
|
|
10063
|
+
"$ref": "#/definitions/FeaturesLike",
|
|
10064
|
+
"description": "The feature(s) to zoom to."
|
|
10065
|
+
},
|
|
10066
|
+
"maps": {
|
|
10067
|
+
"$ref": "MapsLike",
|
|
10068
|
+
"description": "The map(s) to zoom. If omitted, all maps will be zoomed."
|
|
10069
|
+
}
|
|
10070
|
+
},
|
|
10071
|
+
"required": [
|
|
10072
|
+
"features"
|
|
10073
|
+
],
|
|
10074
|
+
"type": "object"
|
|
10075
|
+
},
|
|
9988
10076
|
"ZoomToLayerArgs": {
|
|
9989
10077
|
"additionalProperties": false,
|
|
9990
10078
|
"description": "Arguments for the map.zoom-to-layer-extent and map.zoom-to-layer-visible-scale commands.",
|
|
@@ -23238,7 +23326,7 @@
|
|
|
23238
23326
|
]
|
|
23239
23327
|
},
|
|
23240
23328
|
"map.pan-to-features:input": {
|
|
23241
|
-
"$ref": "#/definitions/
|
|
23329
|
+
"$ref": "#/definitions/ZoomToFeaturesArgs"
|
|
23242
23330
|
},
|
|
23243
23331
|
"map.pan-to-geometry": {
|
|
23244
23332
|
"description": "Pan (without zooming) to one or many geometries on the targeted map(s). Web only.",
|
|
@@ -23554,7 +23642,7 @@
|
|
|
23554
23642
|
]
|
|
23555
23643
|
},
|
|
23556
23644
|
"map.zoom-to-features:input": {
|
|
23557
|
-
"$ref": "#/definitions/
|
|
23645
|
+
"$ref": "#/definitions/ZoomToFeaturesArgs"
|
|
23558
23646
|
},
|
|
23559
23647
|
"map.zoom-to-geometry": {
|
|
23560
23648
|
"description": "Zooms to one or many geometries. Web only.",
|
package/package.json
CHANGED
package/version.d.ts
CHANGED
package/version.js
CHANGED