@vertigis/viewer-spec 48.13.0 → 49.0.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/registry/offline.d.ts +3 -2
- package/messaging/registry/sketching.d.ts +5 -1
- package/messaging/schema/common-action.schema.json +6 -2
- package/messaging/schema/mobile-action.schema.json +7 -3
- package/messaging/schema/web-action.schema.json +6 -2
- package/package.json +3 -3
- package/version.d.ts +1 -1
- package/version.js +1 -1
|
@@ -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.
|
|
@@ -523,7 +527,7 @@ export declare type EditorGeometryMode = "line" | "area";
|
|
|
523
527
|
/**
|
|
524
528
|
* The editor interaction mode.
|
|
525
529
|
*/
|
|
526
|
-
export declare type EditorInteractionMode = "
|
|
530
|
+
export declare type EditorInteractionMode = "centerCrosshairMode" | "pointerMode";
|
|
527
531
|
/**
|
|
528
532
|
* Settings for a sketch.
|
|
529
533
|
*/
|
|
@@ -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."
|
|
@@ -1180,8 +1184,8 @@
|
|
|
1180
1184
|
"EditorInteractionMode": {
|
|
1181
1185
|
"description": "The editor interaction mode.",
|
|
1182
1186
|
"enum": [
|
|
1183
|
-
"
|
|
1184
|
-
"
|
|
1187
|
+
"centerCrosshairMode",
|
|
1188
|
+
"pointerMode"
|
|
1185
1189
|
],
|
|
1186
1190
|
"type": "string"
|
|
1187
1191
|
},
|
|
@@ -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."
|
|
@@ -1407,8 +1411,8 @@
|
|
|
1407
1411
|
"EditorInteractionMode": {
|
|
1408
1412
|
"description": "The editor interaction mode.",
|
|
1409
1413
|
"enum": [
|
|
1410
|
-
"
|
|
1411
|
-
"
|
|
1414
|
+
"centerCrosshairMode",
|
|
1415
|
+
"pointerMode"
|
|
1412
1416
|
],
|
|
1413
1417
|
"type": "string"
|
|
1414
1418
|
},
|
|
@@ -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."
|
|
@@ -1953,8 +1957,8 @@
|
|
|
1953
1957
|
"EditorInteractionMode": {
|
|
1954
1958
|
"description": "The editor interaction mode.",
|
|
1955
1959
|
"enum": [
|
|
1956
|
-
"
|
|
1957
|
-
"
|
|
1960
|
+
"centerCrosshairMode",
|
|
1961
|
+
"pointerMode"
|
|
1958
1962
|
],
|
|
1959
1963
|
"type": "string"
|
|
1960
1964
|
},
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vertigis/viewer-spec",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "49.0.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