@vertigis/viewer-spec 47.6.0 → 47.6.1
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/AppConfig.d.ts +3 -6
- package/app-config/common/BrandingThemeProperties.d.ts +2 -4
- package/app-config/common/HighlightModelProperties.d.ts +2 -4
- package/app-config/common/LayerPresetsModelProperties.d.ts +1 -2
- package/app-config/common/LayoutProperties.d.ts +3 -3
- package/app-config/common/RegionModelProperties.d.ts +1 -2
- package/app-config/common/SearchModelProperties.d.ts +2 -2
- package/app-config/common/WorkflowModelProperties.d.ts +2 -4
- package/app-config/mobile/FeatureDetailsModelProperties.d.ts +2 -1
- package/app-config/mobile/SearchModelProperties.d.ts +3 -1
- package/app-config/mobile/VertigisMobileModelProperties.d.ts +1 -2
- package/app-config/schema/common-app-config.schema.json +1 -1
- 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/DrawModelProperties.d.ts +1 -2
- package/app-config/web/FeatureDetailsModelProperties.d.ts +2 -2
- package/app-config/web/HasVisibilityFilters.d.ts +4 -4
- package/app-config/web/KpiCardModelProperties.d.ts +10 -10
- package/app-config/web/MapCoordinatesModelProperties.d.ts +1 -2
- package/app-config/web/MapModelProperties.d.ts +2 -4
- package/app-config/web/MeasurementModelProperties.d.ts +1 -2
- package/app-config/web/ResultsModelProperties.d.ts +2 -2
- package/app-config/web/SearchModelProperties.d.ts +1 -2
- package/app-config/web/VertigisWebModelProperties.d.ts +4 -6
- package/layout/schema/layout-common.xsd +843 -830
- package/layout/schema/layout-mobile.xsd +241 -234
- package/layout/schema/layout-web.xsd +281 -277
- package/layout/schema/schema-reference-example.xml +11 -10
- package/messaging/Command.d.ts +1 -2
- package/messaging/Event.d.ts +2 -4
- package/messaging/MessageBus.d.ts +2 -2
- package/messaging/Operation.d.ts +1 -2
- package/messaging/common.d.ts +9 -14
- package/messaging/registry/app.d.ts +6 -10
- package/messaging/registry/arcade.d.ts +3 -7
- package/messaging/registry/auth.d.ts +6 -10
- package/messaging/registry/basemap.d.ts +8 -8
- package/messaging/registry/charts.d.ts +2 -2
- package/messaging/registry/debugConsole.d.ts +3 -4
- package/messaging/registry/drawing.d.ts +3 -6
- package/messaging/registry/edit.d.ts +9 -14
- package/messaging/registry/geolocation.d.ts +13 -20
- package/messaging/registry/geometry.d.ts +26 -31
- package/messaging/registry/kpi.d.ts +2 -4
- package/messaging/registry/layer-comparison.d.ts +2 -2
- package/messaging/registry/layout.d.ts +1 -2
- package/messaging/registry/location-marker.d.ts +5 -10
- package/messaging/registry/map.d.ts +21 -22
- package/messaging/registry/measurement.d.ts +6 -8
- package/messaging/registry/messaging.d.ts +3 -3
- package/messaging/registry/offline.d.ts +19 -24
- package/messaging/registry/panel.d.ts +1 -2
- package/messaging/registry/portal.d.ts +1 -2
- package/messaging/registry/printing.d.ts +3 -4
- package/messaging/registry/results.d.ts +8 -16
- package/messaging/registry/sketching.d.ts +27 -40
- package/messaging/registry/system.d.ts +6 -6
- package/messaging/registry/tasks.d.ts +4 -6
- package/messaging/registry/ui.d.ts +12 -18
- package/messaging/registry/viewer.d.ts +1 -2
- package/messaging/registry/workflow.d.ts +2 -4
- package/messaging/schema/web-action.schema.json +1 -1
- package/package.json +17 -17
- package/version.d.ts +1 -1
- package/version.js +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" ?>
|
|
2
2
|
<schema
|
|
3
3
|
xmlns="http://www.w3.org/2001/XMLSchema"
|
|
4
4
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
@@ -6,251 +6,258 @@
|
|
|
6
6
|
xmlns:tns="https://geocortex.com/layout/mobile/v1"
|
|
7
7
|
targetNamespace="https://geocortex.com/layout/mobile/v1"
|
|
8
8
|
elementFormDefault="qualified"
|
|
9
|
-
xmlns:xs="http://www.w3.org/2001/XMLSchema"
|
|
9
|
+
xmlns:xs="http://www.w3.org/2001/XMLSchema"
|
|
10
|
+
>
|
|
11
|
+
<import namespace="https://geocortex.com/layout/v1" schemaLocation="./layout-common.xsd" />
|
|
10
12
|
|
|
11
|
-
|
|
13
|
+
<element name="taskbar" substitutionGroup="base:component">
|
|
14
|
+
<annotation>
|
|
15
|
+
<documentation xml:lang="en">
|
|
16
|
+
Organizes child components into separate items in the taskbar.
|
|
17
|
+
The item names will correspond to the child components' titles.
|
|
18
|
+
The item icons will correspond to the child components' icons.
|
|
19
|
+
</documentation>
|
|
20
|
+
</annotation>
|
|
21
|
+
<complexType>
|
|
22
|
+
<complexContent>
|
|
23
|
+
<extension base="base:Component">
|
|
24
|
+
<choice>
|
|
25
|
+
<element ref="base:component" minOccurs="0" maxOccurs="unbounded" />
|
|
26
|
+
</choice>
|
|
27
|
+
<attribute name="orientation">
|
|
28
|
+
<annotation>
|
|
29
|
+
<documentation xml:lang="en">
|
|
30
|
+
The orientation of the taskbar. The default is auto.
|
|
31
|
+
</documentation>
|
|
32
|
+
</annotation>
|
|
33
|
+
<simpleType>
|
|
34
|
+
<restriction base="string">
|
|
35
|
+
<enumeration value="auto" />
|
|
36
|
+
<enumeration value="horizontal" />
|
|
37
|
+
<enumeration value="vertical" />
|
|
38
|
+
</restriction>
|
|
39
|
+
</simpleType>
|
|
40
|
+
</attribute>
|
|
41
|
+
</extension>
|
|
42
|
+
</complexContent>
|
|
43
|
+
</complexType>
|
|
44
|
+
</element>
|
|
12
45
|
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
<attribute name="orientation">
|
|
28
|
-
<annotation>
|
|
29
|
-
<documentation xml:lang="en">
|
|
30
|
-
The orientation of the taskbar. The default is auto.
|
|
31
|
-
</documentation>
|
|
32
|
-
</annotation>
|
|
33
|
-
<simpleType>
|
|
34
|
-
<restriction base="string">
|
|
35
|
-
<enumeration value="auto"/>
|
|
36
|
-
<enumeration value="horizontal"/>
|
|
37
|
-
<enumeration value="vertical"/>
|
|
38
|
-
</restriction>
|
|
39
|
-
</simpleType>
|
|
40
|
-
</attribute>
|
|
41
|
-
</extension>
|
|
42
|
-
</complexContent>
|
|
43
|
-
</complexType>
|
|
44
|
-
</element>
|
|
46
|
+
<element name="offline-areas" substitutionGroup="base:component">
|
|
47
|
+
<annotation>
|
|
48
|
+
<documentation xml:lang="en">
|
|
49
|
+
Displays a list of offline map areas from Portal or ArcGIS
|
|
50
|
+
Online, and allows users to download, sync, or remove their
|
|
51
|
+
data.
|
|
52
|
+
</documentation>
|
|
53
|
+
</annotation>
|
|
54
|
+
<complexType>
|
|
55
|
+
<complexContent>
|
|
56
|
+
<extension base="base:Component" />
|
|
57
|
+
</complexContent>
|
|
58
|
+
</complexType>
|
|
59
|
+
</element>
|
|
45
60
|
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
</
|
|
57
|
-
|
|
58
|
-
</complexType>
|
|
59
|
-
</element>
|
|
61
|
+
<element name="create-offline-area" substitutionGroup="base:component">
|
|
62
|
+
<annotation>
|
|
63
|
+
<documentation xml:lang="en">
|
|
64
|
+
Displays a form to use to create a new custom offline map area.
|
|
65
|
+
</documentation>
|
|
66
|
+
</annotation>
|
|
67
|
+
<complexType>
|
|
68
|
+
<complexContent>
|
|
69
|
+
<extension base="base:Component" />
|
|
70
|
+
</complexContent>
|
|
71
|
+
</complexType>
|
|
72
|
+
</element>
|
|
60
73
|
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
<
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
+
<element name="search-new-extent" substitutionGroup="base:component">
|
|
75
|
+
<annotation>
|
|
76
|
+
<documentation xml:lang="en">
|
|
77
|
+
A component that provides a single button that allows the user
|
|
78
|
+
to "search this area" when the extent of the map changes to be
|
|
79
|
+
different than the extent that was originally searched.
|
|
80
|
+
</documentation>
|
|
81
|
+
</annotation>
|
|
82
|
+
<complexType>
|
|
83
|
+
<complexContent>
|
|
84
|
+
<extension base="base:Component" />
|
|
85
|
+
</complexContent>
|
|
86
|
+
</complexType>
|
|
87
|
+
</element>
|
|
74
88
|
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
</
|
|
86
|
-
|
|
87
|
-
</complexType>
|
|
88
|
-
</element>
|
|
89
|
+
<element name="version" substitutionGroup="base:component">
|
|
90
|
+
<annotation>
|
|
91
|
+
<documentation xml:lang="en">
|
|
92
|
+
A component that displays a string indicating the current version of the app.
|
|
93
|
+
</documentation>
|
|
94
|
+
</annotation>
|
|
95
|
+
<complexType>
|
|
96
|
+
<complexContent>
|
|
97
|
+
<extension base="base:Component" />
|
|
98
|
+
</complexContent>
|
|
99
|
+
</complexType>
|
|
100
|
+
</element>
|
|
89
101
|
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
102
|
+
<element name="status-bar-buffer" substitutionGroup="base:component">
|
|
103
|
+
<annotation>
|
|
104
|
+
<documentation xml:lang="en">
|
|
105
|
+
A component that takes up an amount of vertical space equal to
|
|
106
|
+
the size of the taskbar on the current platform.
|
|
107
|
+
</documentation>
|
|
108
|
+
</annotation>
|
|
109
|
+
<complexType>
|
|
110
|
+
<complexContent>
|
|
111
|
+
<extension base="base:Component" />
|
|
112
|
+
</complexContent>
|
|
113
|
+
</complexType>
|
|
114
|
+
</element>
|
|
103
115
|
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
</
|
|
115
|
-
|
|
116
|
-
</complexType>
|
|
117
|
-
</element>
|
|
116
|
+
<element name="add-feature-select-layer" substitutionGroup="base:component">
|
|
117
|
+
<annotation>
|
|
118
|
+
<documentation xml:lang="en">
|
|
119
|
+
A component that allows a user to select a layer to which a feature will be added.
|
|
120
|
+
</documentation>
|
|
121
|
+
</annotation>
|
|
122
|
+
<complexType>
|
|
123
|
+
<complexContent mixed="true">
|
|
124
|
+
<extension base="base:Component" />
|
|
125
|
+
</complexContent>
|
|
126
|
+
</complexType>
|
|
127
|
+
</element>
|
|
118
128
|
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
129
|
+
<element name="add-feature" substitutionGroup="base:component">
|
|
130
|
+
<annotation>
|
|
131
|
+
<documentation xml:lang="en">
|
|
132
|
+
A component that displays a form for collecting feature attributes and
|
|
133
|
+
geometry. Allows a user to save their new feature.
|
|
134
|
+
</documentation>
|
|
135
|
+
</annotation>
|
|
136
|
+
<complexType>
|
|
137
|
+
<complexContent mixed="true">
|
|
138
|
+
<extension base="base:Component" />
|
|
139
|
+
</complexContent>
|
|
140
|
+
</complexType>
|
|
141
|
+
</element>
|
|
131
142
|
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
143
|
+
<element name="update-feature" substitutionGroup="base:component">
|
|
144
|
+
<annotation>
|
|
145
|
+
<documentation xml:lang="en">
|
|
146
|
+
A component that displays a form for editing a feature's attributes and
|
|
147
|
+
geometry. Allows a user to save their changes to the feature.
|
|
148
|
+
</documentation>
|
|
149
|
+
</annotation>
|
|
150
|
+
<complexType>
|
|
151
|
+
<complexContent mixed="true">
|
|
152
|
+
<extension base="base:Component" />
|
|
153
|
+
</complexContent>
|
|
154
|
+
</complexType>
|
|
155
|
+
</element>
|
|
144
156
|
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
<
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
+
<element name="add-related-feature" substitutionGroup="base:component">
|
|
158
|
+
<annotation>
|
|
159
|
+
<documentation xml:lang="en">
|
|
160
|
+
A component that displays a form for collecting feature attributes and
|
|
161
|
+
geometry. Allows a user to save their new feature and relates this feature with an
|
|
162
|
+
existing feature based on the relationship properties of the feature sources.
|
|
163
|
+
</documentation>
|
|
164
|
+
</annotation>
|
|
165
|
+
<complexType>
|
|
166
|
+
<complexContent mixed="true">
|
|
167
|
+
<extension base="base:Component" />
|
|
168
|
+
</complexContent>
|
|
169
|
+
</complexType>
|
|
170
|
+
</element>
|
|
157
171
|
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
<
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
172
|
+
<element name="gnss-metadata" substitutionGroup="base:component">
|
|
173
|
+
<annotation>
|
|
174
|
+
<documentation xml:lang="en">
|
|
175
|
+
A component that provides a real-time display of specific
|
|
176
|
+
metadata values being received from a connected and active GNSS
|
|
177
|
+
receiver.
|
|
178
|
+
</documentation>
|
|
179
|
+
</annotation>
|
|
180
|
+
<complexType>
|
|
181
|
+
<complexContent mixed="true">
|
|
182
|
+
<extension base="base:Component" />
|
|
183
|
+
</complexContent>
|
|
184
|
+
</complexType>
|
|
185
|
+
</element>
|
|
170
186
|
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
<
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
187
|
+
<element name="gnss-device-selection" substitutionGroup="base:component">
|
|
188
|
+
<annotation>
|
|
189
|
+
<documentation xml:lang="en">
|
|
190
|
+
A component that provides a form which allows the user to view and select between
|
|
191
|
+
multiple connected GNSS sources (including external devices and integrated
|
|
192
|
+
GPS). Selecting one will activate it as the current source of geolocation for the
|
|
193
|
+
app.
|
|
194
|
+
</documentation>
|
|
195
|
+
</annotation>
|
|
196
|
+
<complexType>
|
|
197
|
+
<complexContent mixed="true">
|
|
198
|
+
<extension base="base:Component" />
|
|
199
|
+
</complexContent>
|
|
200
|
+
</complexType>
|
|
201
|
+
</element>
|
|
184
202
|
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
203
|
+
<element name="gnss-device-settings" substitutionGroup="base:component">
|
|
204
|
+
<annotation>
|
|
205
|
+
<documentation xml:lang="en">
|
|
206
|
+
A component that provides a form which allows the user to view, edit and save the
|
|
207
|
+
settings for an external GNSS device.
|
|
208
|
+
</documentation>
|
|
209
|
+
</annotation>
|
|
210
|
+
<complexType>
|
|
211
|
+
<complexContent mixed="true">
|
|
212
|
+
<extension base="base:Component" />
|
|
213
|
+
</complexContent>
|
|
214
|
+
</complexType>
|
|
215
|
+
</element>
|
|
197
216
|
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
217
|
+
<element name="geometry-toolbar" substitutionGroup="base:component">
|
|
218
|
+
<annotation>
|
|
219
|
+
<documentation xml:lang="en">
|
|
220
|
+
A component that displays a toolbar containing buttons for geometry and measurement
|
|
221
|
+
operations.
|
|
222
|
+
</documentation>
|
|
223
|
+
</annotation>
|
|
224
|
+
<complexType>
|
|
225
|
+
<complexContent mixed="true">
|
|
226
|
+
<extension base="base:Component">
|
|
227
|
+
<attribute name="style">
|
|
228
|
+
<annotation>
|
|
229
|
+
<documentation xml:lang="en">
|
|
230
|
+
The desired visual style for the component.
|
|
231
|
+
</documentation>
|
|
232
|
+
</annotation>
|
|
233
|
+
<simpleType>
|
|
234
|
+
<restriction base="string">
|
|
235
|
+
<enumeration value="round" />
|
|
236
|
+
<enumeration value="square" />
|
|
237
|
+
</restriction>
|
|
238
|
+
</simpleType>
|
|
239
|
+
</attribute>
|
|
240
|
+
</extension>
|
|
241
|
+
</complexContent>
|
|
242
|
+
</complexType>
|
|
243
|
+
</element>
|
|
210
244
|
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
<
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
</restriction>
|
|
231
|
-
</simpleType>
|
|
232
|
-
</attribute>
|
|
233
|
-
</extension>
|
|
234
|
-
</complexContent>
|
|
235
|
-
</complexType>
|
|
236
|
-
</element>
|
|
237
|
-
|
|
238
|
-
<element name="scroll" substitutionGroup="base:component">
|
|
239
|
-
<annotation>
|
|
240
|
-
<documentation xml:lang="en">
|
|
241
|
-
A component that allows a user to scroll content.
|
|
242
|
-
Note: Nested scrolling is not supported, so only nest non-scrolling components.
|
|
243
|
-
</documentation>
|
|
244
|
-
</annotation>
|
|
245
|
-
<complexType>
|
|
246
|
-
<complexContent mixed="true">
|
|
247
|
-
<extension base="base:Component">
|
|
248
|
-
<choice>
|
|
249
|
-
<element ref="base:component" minOccurs="0" maxOccurs="unbounded"/>
|
|
250
|
-
</choice>
|
|
251
|
-
</extension>
|
|
252
|
-
</complexContent>
|
|
253
|
-
</complexType>
|
|
254
|
-
</element>
|
|
255
|
-
|
|
256
|
-
</schema>
|
|
245
|
+
<element name="scroll" substitutionGroup="base:component">
|
|
246
|
+
<annotation>
|
|
247
|
+
<documentation xml:lang="en">
|
|
248
|
+
A component that allows a user to scroll content. Note: Nested
|
|
249
|
+
scrolling is not supported, so only nest non-scrolling
|
|
250
|
+
components.
|
|
251
|
+
</documentation>
|
|
252
|
+
</annotation>
|
|
253
|
+
<complexType>
|
|
254
|
+
<complexContent mixed="true">
|
|
255
|
+
<extension base="base:Component">
|
|
256
|
+
<choice>
|
|
257
|
+
<element ref="base:component" minOccurs="0" maxOccurs="unbounded" />
|
|
258
|
+
</choice>
|
|
259
|
+
</extension>
|
|
260
|
+
</complexContent>
|
|
261
|
+
</complexType>
|
|
262
|
+
</element>
|
|
263
|
+
</schema>
|