@vertigis/viewer-spec 48.12.0 → 48.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/layout/schema/layout-web.xsd +26 -15
- package/messaging/registry/map.d.ts +0 -1
- package/messaging/registry/offline.d.ts +3 -2
- package/messaging/registry/sketching.d.ts +4 -0
- package/messaging/schema/common-action.schema.json +4 -0
- package/messaging/schema/mobile-action.schema.json +5 -1
- package/messaging/schema/web-action.schema.json +4 -0
- package/package.json +3 -3
- package/version.d.ts +1 -1
- package/version.js +1 -1
|
@@ -53,8 +53,8 @@
|
|
|
53
53
|
<annotation>
|
|
54
54
|
<documentation xml:lang="en">
|
|
55
55
|
A geometry toolbar consisting of a collection of widgets and a
|
|
56
|
-
configurable toolbar that is displayed while geometry edits are
|
|
57
|
-
|
|
56
|
+
configurable toolbar that is displayed while geometry edits are being
|
|
57
|
+
performed.
|
|
58
58
|
</documentation>
|
|
59
59
|
</annotation>
|
|
60
60
|
<complexType>
|
|
@@ -95,7 +95,7 @@
|
|
|
95
95
|
<element name="inline" substitutionGroup="base:component">
|
|
96
96
|
<annotation>
|
|
97
97
|
<documentation xml:lang="en">
|
|
98
|
-
A component that allows the integration of Geocortex Inline.
|
|
98
|
+
A component that allows the integration of Geocortex Inline (Deprecated).
|
|
99
99
|
</documentation>
|
|
100
100
|
</annotation>
|
|
101
101
|
<complexType>
|
|
@@ -121,10 +121,9 @@
|
|
|
121
121
|
<element name="map-3d-toggle" substitutionGroup="base:component">
|
|
122
122
|
<annotation>
|
|
123
123
|
<documentation xml:lang="en">
|
|
124
|
-
A button that allows the end user to switch between the webmap
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
a webmap and webscene configured.
|
|
124
|
+
A button that allows the end user to switch between the webmap and the
|
|
125
|
+
webscene for a given map component. Requires an associated map component
|
|
126
|
+
(see the "models" attribute) with both a webmap and webscene configured.
|
|
128
127
|
</documentation>
|
|
129
128
|
</annotation>
|
|
130
129
|
<complexType>
|
|
@@ -192,8 +191,8 @@
|
|
|
192
191
|
<annotation>
|
|
193
192
|
<documentation xml:lang="en">
|
|
194
193
|
A component that allows the user to view results from a search,
|
|
195
|
-
identify, query, or any other activity that produces features in
|
|
196
|
-
|
|
194
|
+
identify, query, or any other activity that produces features in a table
|
|
195
|
+
view.
|
|
197
196
|
</documentation>
|
|
198
197
|
</annotation>
|
|
199
198
|
<complexType>
|
|
@@ -233,9 +232,8 @@
|
|
|
233
232
|
<attribute name="orientation">
|
|
234
233
|
<annotation>
|
|
235
234
|
<documentation xml:lang="en">
|
|
236
|
-
The orientation of the tabs within the
|
|
237
|
-
|
|
238
|
-
and "vertical". The default value is
|
|
235
|
+
The orientation of the tabs within the component. Valid values
|
|
236
|
+
include "horizontal", and "vertical". The default value is
|
|
239
237
|
"horizontal".
|
|
240
238
|
</documentation>
|
|
241
239
|
</annotation>
|
|
@@ -249,9 +247,8 @@
|
|
|
249
247
|
<attribute name="position">
|
|
250
248
|
<annotation>
|
|
251
249
|
<documentation xml:lang="en">
|
|
252
|
-
The position of the tabs within the component.
|
|
253
|
-
|
|
254
|
-
default value is "start".
|
|
250
|
+
The position of the tabs within the component. Valid values
|
|
251
|
+
include "start", and "end". The default value is "start".
|
|
255
252
|
</documentation>
|
|
256
253
|
</annotation>
|
|
257
254
|
<simpleType>
|
|
@@ -292,4 +289,18 @@
|
|
|
292
289
|
</complexContent>
|
|
293
290
|
</complexType>
|
|
294
291
|
</element>
|
|
292
|
+
|
|
293
|
+
<element name="vertigis-inline" substitutionGroup="base:component">
|
|
294
|
+
<annotation>
|
|
295
|
+
<documentation xml:lang="en">
|
|
296
|
+
A component that allows the integration of VertiGIS Inline.
|
|
297
|
+
Requires the VertiGIS Inline library to be loaded in Web.
|
|
298
|
+
</documentation>
|
|
299
|
+
</annotation>
|
|
300
|
+
<complexType>
|
|
301
|
+
<complexContent>
|
|
302
|
+
<extension base="base:Component" />
|
|
303
|
+
</complexContent>
|
|
304
|
+
</complexType>
|
|
305
|
+
</element>
|
|
295
306
|
</schema>
|
|
@@ -204,8 +204,9 @@ export declare class OfflineCommands extends CommandRegistry {
|
|
|
204
204
|
*/
|
|
205
205
|
get cancelDownload(): Command<OfflineCommandArgs>;
|
|
206
206
|
/**
|
|
207
|
-
* Deletes the data stored on the device for the specified offline area.
|
|
208
|
-
* offline
|
|
207
|
+
* Deletes the data stored on the device for the specified offline area. If
|
|
208
|
+
* a custom offline area is specified, and the area is not downloaded,
|
|
209
|
+
* deletes the custom area definition instead.
|
|
209
210
|
*
|
|
210
211
|
* @mobileOnly
|
|
211
212
|
*/
|
|
@@ -228,6 +228,10 @@ export interface CaptureGeometryArgs {
|
|
|
228
228
|
* The settings to be applied to the sketch. Mobile only.
|
|
229
229
|
*/
|
|
230
230
|
editorSettings?: GeometryEditorSettings;
|
|
231
|
+
/**
|
|
232
|
+
* Disables freehand sketching during the draw session. Web only.
|
|
233
|
+
*/
|
|
234
|
+
disableFreehand?: boolean;
|
|
231
235
|
}
|
|
232
236
|
/**
|
|
233
237
|
* Result of the "sketching.capture-geometry" operation.
|
|
@@ -616,6 +616,10 @@
|
|
|
616
616
|
"additionalProperties": false,
|
|
617
617
|
"description": "Arguments for the \"sketching.capture-geometry\" operation.",
|
|
618
618
|
"properties": {
|
|
619
|
+
"disableFreehand": {
|
|
620
|
+
"description": "Disables freehand sketching during the draw session. Web only.",
|
|
621
|
+
"type": "boolean"
|
|
622
|
+
},
|
|
619
623
|
"editorSettings": {
|
|
620
624
|
"$ref": "#/definitions/GeometryEditorSettings",
|
|
621
625
|
"description": "The settings to be applied to the sketch. Mobile only."
|
|
@@ -706,6 +706,10 @@
|
|
|
706
706
|
"additionalProperties": false,
|
|
707
707
|
"description": "Arguments for the \"sketching.capture-geometry\" operation.",
|
|
708
708
|
"properties": {
|
|
709
|
+
"disableFreehand": {
|
|
710
|
+
"description": "Disables freehand sketching during the draw session. Web only.",
|
|
711
|
+
"type": "boolean"
|
|
712
|
+
},
|
|
709
713
|
"editorSettings": {
|
|
710
714
|
"$ref": "#/definitions/GeometryEditorSettings",
|
|
711
715
|
"description": "The settings to be applied to the sketch. Mobile only."
|
|
@@ -13071,7 +13075,7 @@
|
|
|
13071
13075
|
"$ref": "CustomOfflineArea"
|
|
13072
13076
|
},
|
|
13073
13077
|
"offline.delete-area": {
|
|
13074
|
-
"description": "Deletes the data stored on the device for the specified offline area.
|
|
13078
|
+
"description": "Deletes the data stored on the device for the specified offline area. If a custom offline area is specified, and the area is not downloaded, deletes the custom area definition instead.",
|
|
13075
13079
|
"enum": [
|
|
13076
13080
|
"offline.delete-area"
|
|
13077
13081
|
]
|
|
@@ -1056,6 +1056,10 @@
|
|
|
1056
1056
|
"additionalProperties": false,
|
|
1057
1057
|
"description": "Arguments for the \"sketching.capture-geometry\" operation.",
|
|
1058
1058
|
"properties": {
|
|
1059
|
+
"disableFreehand": {
|
|
1060
|
+
"description": "Disables freehand sketching during the draw session. Web only.",
|
|
1061
|
+
"type": "boolean"
|
|
1062
|
+
},
|
|
1059
1063
|
"editorSettings": {
|
|
1060
1064
|
"$ref": "#/definitions/GeometryEditorSettings",
|
|
1061
1065
|
"description": "The settings to be applied to the sketch. Mobile only."
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vertigis/viewer-spec",
|
|
3
|
-
"version": "48.
|
|
3
|
+
"version": "48.14.0",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE",
|
|
5
5
|
"description": "VertiGIS Viewer Specification",
|
|
6
6
|
"type": "module",
|
|
@@ -34,11 +34,11 @@
|
|
|
34
34
|
},
|
|
35
35
|
"author": "VertiGIS Ltd.",
|
|
36
36
|
"peerDependencies": {
|
|
37
|
-
"@vertigis/arcgis-extensions": ">= 35.
|
|
37
|
+
"@vertigis/arcgis-extensions": ">= 35.7.0 < 36.0.0"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
40
|
"@arcgis/core": "4.23.3",
|
|
41
|
-
"@vertigis/arcgis-extensions": "35.
|
|
41
|
+
"@vertigis/arcgis-extensions": "35.7.0",
|
|
42
42
|
"@prettier/plugin-xml": "2.2.0",
|
|
43
43
|
"@types/glob": "7.2.0",
|
|
44
44
|
"@types/node": "14.14.41",
|
package/version.d.ts
CHANGED
package/version.js
CHANGED