@vertigis/viewer-spec 61.11.0 → 61.13.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/schema/web-app-config.schema.json +1 -1
- package/app-config/web/PrintFormModelProperties.d.ts +12 -0
- package/messaging/registry/printing.d.ts +9 -0
- package/messaging/registry/ui.d.ts +4 -0
- package/messaging/schema/common-action.schema.json +1 -1
- package/messaging/schema/mobile-action.schema.json +1 -1
- package/messaging/schema/web-action.schema.json +1 -1
- package/messaging/schema/web-event.schema.json +1 -1
- package/messaging/schema/web-ui-command-definitions.md +2 -0
- package/package.json +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
|
@@ -24,6 +24,10 @@ export interface SpatialReferenceGrid {
|
|
|
24
24
|
*/
|
|
25
25
|
wkt?: string;
|
|
26
26
|
}
|
|
27
|
+
/**
|
|
28
|
+
* A map attribution visibility.
|
|
29
|
+
*/
|
|
30
|
+
export type MapAttributionVisibility = "default" | "visible" | "hidden";
|
|
27
31
|
/**
|
|
28
32
|
* Configuration for a print form component.
|
|
29
33
|
*/
|
|
@@ -56,6 +60,14 @@ export interface PrintFormModelProperties extends ComponentModelProperties {
|
|
|
56
60
|
* Whether the line print type should be enabled.
|
|
57
61
|
*/
|
|
58
62
|
linePrintEnabled?: boolean;
|
|
63
|
+
/**
|
|
64
|
+
* Whether the map attribution selection should be enabled.
|
|
65
|
+
*/
|
|
66
|
+
mapAttributionEnabled?: boolean;
|
|
67
|
+
/**
|
|
68
|
+
* The selected map attribution visibility.
|
|
69
|
+
*/
|
|
70
|
+
mapAttributionVisibility?: MapAttributionVisibility;
|
|
59
71
|
/**
|
|
60
72
|
* Whether strict mode for prints should be enabled.
|
|
61
73
|
*/
|
|
@@ -121,6 +121,15 @@ export interface MapOptions {
|
|
|
121
121
|
* use a negative value.
|
|
122
122
|
*/
|
|
123
123
|
rotation?: number;
|
|
124
|
+
/**
|
|
125
|
+
* Whether to show the map attribution for the exported layout print.
|
|
126
|
+
* Requires a map attribution element in the related layout, otherwise the
|
|
127
|
+
* ArcGIS default map attribution is automatically visible on the map.
|
|
128
|
+
* Overwrites the visibility configured for the layout's map attribution
|
|
129
|
+
* element. If this property is undefined, the configured map attribution
|
|
130
|
+
* element visibility is used.
|
|
131
|
+
*/
|
|
132
|
+
showAttribution?: boolean;
|
|
124
133
|
}
|
|
125
134
|
/**
|
|
126
135
|
* Represents the export options.
|
|
@@ -401,6 +401,10 @@ export declare class UICommands extends CommandRegistry {
|
|
|
401
401
|
/**
|
|
402
402
|
* Deactivates a component with the given ID, causing it to disappear. For
|
|
403
403
|
* VertiGIS Studio Mobile, only ID is supported.
|
|
404
|
+
*
|
|
405
|
+
* Note: for components hosted in the taskbar, this will not necessarily
|
|
406
|
+
* cause the associated taskbar button to disappear. For that functionality,
|
|
407
|
+
* see the command "ui.make-unavailable".
|
|
404
408
|
*/
|
|
405
409
|
get deactivate(): Command<DeactivateArgs>;
|
|
406
410
|
/**
|