@vertigis/viewer-spec 49.9.0 → 50.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/README.md +1 -1
- package/analytics/MobileAction.d.ts +54 -0
- package/analytics/MobileAction.js +1 -0
- package/app-config/mobile/BasemapModelProperties.d.ts +1 -1
- package/app-config/mobile/VertigisMobileModelProperties.d.ts +2 -2
- package/app-config/schema/mobile-app-config.schema.json +1 -1
- package/app-config/schema/web-app-config.schema.json +1 -1
- package/app-config/web/ResultsModelProperties.d.ts +1 -1
- package/app-config/web/VertigisWebModelProperties.d.ts +2 -3
- package/docs/presentation.md +30 -23
- package/messaging/DotNetTypes.d.ts +4 -0
- package/messaging/DotNetTypes.js +1 -0
- package/messaging/common.d.ts +53 -2
- package/messaging/common.js +1 -1
- package/messaging/mobile.d.ts +1 -8
- package/messaging/registry/Events.d.ts +6 -0
- package/messaging/registry/Events.js +1 -1
- package/messaging/registry/app.d.ts +32 -32
- package/messaging/registry/app.js +1 -1
- package/messaging/registry/auth.d.ts +44 -11
- package/messaging/registry/auth.js +1 -1
- package/messaging/registry/basemap.d.ts +19 -1
- package/messaging/registry/basemap.js +1 -1
- package/messaging/registry/bookmark.d.ts +41 -0
- package/messaging/registry/bookmark.js +1 -0
- package/messaging/registry/device.d.ts +12 -0
- package/messaging/registry/device.js +1 -1
- package/messaging/registry/file.d.ts +10 -0
- package/messaging/registry/file.js +1 -1
- package/messaging/registry/geolocation.d.ts +163 -7
- package/messaging/registry/geolocation.js +1 -1
- package/messaging/registry/geometry-toolbar.d.ts +5 -5
- package/messaging/registry/highlights.d.ts +6 -7
- package/messaging/registry/map.d.ts +85 -14
- package/messaging/registry/map.js +1 -1
- package/messaging/registry/measurement.d.ts +36 -4
- package/messaging/registry/measurement.js +1 -1
- package/messaging/registry/offline.d.ts +6 -0
- package/messaging/registry/offline.js +1 -1
- package/messaging/registry/panel.d.ts +8 -1
- package/messaging/registry/panel.js +1 -1
- package/messaging/registry/photos.js +1 -1
- package/messaging/registry/results.d.ts +40 -0
- package/messaging/registry/results.js +1 -1
- package/messaging/registry/search.d.ts +31 -7
- package/messaging/registry/search.js +1 -1
- package/messaging/registry/settings.d.ts +40 -0
- package/messaging/registry/settings.js +1 -0
- package/messaging/registry/shortcut.d.ts +40 -0
- package/messaging/registry/shortcut.js +1 -0
- package/messaging/registry/sketching.d.ts +4 -4
- package/messaging/registry/system.d.ts +21 -0
- package/messaging/registry/system.js +1 -1
- package/messaging/registry/tasks.d.ts +26 -16
- package/messaging/registry/tasks.js +1 -1
- package/messaging/registry/ui.d.ts +4 -4
- package/messaging/registry/workflow.d.ts +6 -9
- package/messaging/schema/common-action.schema.json +43 -38
- package/messaging/schema/common-event.schema.json +193 -11
- package/messaging/schema/mobile-action.schema.json +91 -79
- package/messaging/schema/mobile-event.schema.json +1075 -107
- package/messaging/schema/web-action.schema.json +67 -62
- package/messaging/schema/web-event.schema.json +130 -20
- package/package.json +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
package/README.md
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
# Geocortex Viewer Specification
|
|
2
2
|
|
|
3
|
-
This package contains specifications for app config JSON, layout XML, and a reference of all commands, operations, and events for
|
|
3
|
+
This package contains specifications for app config JSON, layout XML, and a reference of all commands, operations, and events for VertiGIS Studio Web and Mobile. For more information on extending these products, visit our [Developer Center](https://developers.vertigisstudio.com).
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
import type { CommonAction } from "./CommonAction";
|
|
2
|
+
/**
|
|
3
|
+
* Names of `action-*` events generated for VertiGIS Studio Analytics in
|
|
4
|
+
* VertiGIS Studio Mobile.
|
|
5
|
+
*/
|
|
6
|
+
export declare type MobileAction = CommonAction
|
|
7
|
+
/**
|
|
8
|
+
* Generic action. No payload.
|
|
9
|
+
*/
|
|
10
|
+
| "app-refresh"
|
|
11
|
+
/**
|
|
12
|
+
* Layer action. Payload: MIME type of the attachment.
|
|
13
|
+
*/
|
|
14
|
+
| "attachment-update"
|
|
15
|
+
/**
|
|
16
|
+
* Generic action. Payload: file name.
|
|
17
|
+
*/
|
|
18
|
+
| "file-open"
|
|
19
|
+
/**
|
|
20
|
+
* Generic action. Payload: device name.
|
|
21
|
+
*/
|
|
22
|
+
| "gnss-device-select"
|
|
23
|
+
/**
|
|
24
|
+
* Generic action. Payload: antenna height.
|
|
25
|
+
*/
|
|
26
|
+
| "gnss-device-antenna-height-set"
|
|
27
|
+
/**
|
|
28
|
+
* Generic action. Payload: [wkid, transformation name].
|
|
29
|
+
*/
|
|
30
|
+
| "gnss-device-transformation-override"
|
|
31
|
+
/**
|
|
32
|
+
* Generic action. Payload: log level.
|
|
33
|
+
*/
|
|
34
|
+
| "settings-log-level-set"
|
|
35
|
+
/**
|
|
36
|
+
* Generic action. Payload: boolean value indicating if setting is set to true.
|
|
37
|
+
*/
|
|
38
|
+
| "settings-measurement-system-set"
|
|
39
|
+
/**
|
|
40
|
+
* Generic action. Payload: photo resize option.
|
|
41
|
+
*/
|
|
42
|
+
| "settings-photo-quality-set"
|
|
43
|
+
/**
|
|
44
|
+
* Generic action. Payload: boolean value indicating if setting is set to true.
|
|
45
|
+
*/
|
|
46
|
+
| "settings-remember-layer-visibility-set"
|
|
47
|
+
/**
|
|
48
|
+
* Generic action. Payload: boolean value indicating if setting is set to true.
|
|
49
|
+
*/
|
|
50
|
+
| "settings-remember-map-extent-set"
|
|
51
|
+
/**
|
|
52
|
+
* Generic action. No payload.
|
|
53
|
+
*/
|
|
54
|
+
| "user-signout";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -5,7 +5,7 @@ import type { BasemapExtensionProperties } from "@vertigis/arcgis-extensions/map
|
|
|
5
5
|
export interface BasemapModelProperties extends BasemapExtensionProperties {
|
|
6
6
|
/**
|
|
7
7
|
* Whether this Basemap is only made up of offline layers. Only used by
|
|
8
|
-
*
|
|
8
|
+
* Studio Mobile Designer.
|
|
9
9
|
*/
|
|
10
10
|
offline?: boolean;
|
|
11
11
|
}
|
|
@@ -58,8 +58,8 @@ export interface VertigisMobileModelProperties extends ApplicationModelPropertie
|
|
|
58
58
|
*/
|
|
59
59
|
remoteConfigUrl?: string;
|
|
60
60
|
/**
|
|
61
|
-
* The version of
|
|
62
|
-
*
|
|
61
|
+
* The version of VertiGIS Studio Mobile that was used to create this app
|
|
62
|
+
* configuration.
|
|
63
63
|
*/
|
|
64
64
|
version?: string;
|
|
65
65
|
}
|