@vertigis/viewer-spec 56.11.0 → 56.12.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/registry/map.d.ts +3 -0
- package/messaging/registry/query-builder.d.ts +8 -2
- package/messaging/schema/common-action.schema.json +2 -2
- package/messaging/schema/mobile-action.schema.json +2 -2
- package/messaging/schema/web-action.schema.json +14 -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
|
}
|
|
@@ -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": {
|
|
@@ -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": {
|
|
@@ -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": {
|
|
@@ -3820,7 +3820,7 @@
|
|
|
3820
3820
|
"description": "Arguments for the \"map.get-markup\" operation.",
|
|
3821
3821
|
"properties": {
|
|
3822
3822
|
"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.",
|
|
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-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
3824
|
"type": "string"
|
|
3825
3825
|
},
|
|
3826
3826
|
"geometry": {
|
|
@@ -4531,7 +4531,7 @@
|
|
|
4531
4531
|
"description": "Base arguments for markup commands and operations.",
|
|
4532
4532
|
"properties": {
|
|
4533
4533
|
"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.",
|
|
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-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
4535
|
"type": "string"
|
|
4536
4536
|
},
|
|
4537
4537
|
"maps": {
|
|
@@ -5116,7 +5116,11 @@
|
|
|
5116
5116
|
"properties": {
|
|
5117
5117
|
"geometry": {
|
|
5118
5118
|
"$ref": "#/definitions/GeometryLike",
|
|
5119
|
-
"description": "If specified, limits the results to ones that intersect the given geometry."
|
|
5119
|
+
"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."
|
|
5120
|
+
},
|
|
5121
|
+
"graphics": {
|
|
5122
|
+
"$ref": "#/definitions/GraphicsLike",
|
|
5123
|
+
"description": "Alias of `geometry`, to facilitate command chaining. If both `geometry` and `graphics` are specified, only `graphics` will be used."
|
|
5120
5124
|
},
|
|
5121
5125
|
"layers": {
|
|
5122
5126
|
"$ref": "#/definitions/LayersLike",
|
|
@@ -6003,7 +6007,11 @@
|
|
|
6003
6007
|
"properties": {
|
|
6004
6008
|
"geometry": {
|
|
6005
6009
|
"$ref": "#/definitions/GeometryLike",
|
|
6006
|
-
"description": "If specified, limits the results to ones that intersect the given geometry."
|
|
6010
|
+
"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."
|
|
6011
|
+
},
|
|
6012
|
+
"graphics": {
|
|
6013
|
+
"$ref": "#/definitions/GraphicsLike",
|
|
6014
|
+
"description": "Alias of `geometry`, to facilitate command chaining. If both `geometry` and `graphics` are specified, only `graphics` will be used."
|
|
6007
6015
|
},
|
|
6008
6016
|
"layers": {
|
|
6009
6017
|
"$ref": "#/definitions/LayersLike",
|
package/package.json
CHANGED
package/version.d.ts
CHANGED
package/version.js
CHANGED