@vertigis/viewer-spec 59.17.0 → 59.18.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/printing.d.ts +68 -26
- package/messaging/schema/common-action.schema.json +35 -24
- package/messaging/schema/mobile-action.schema.json +35 -24
- package/messaging/schema/web-action.schema.json +35 -24
- package/package.json +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
|
@@ -42,6 +42,19 @@ export interface PrintSpatialReference {
|
|
|
42
42
|
*/
|
|
43
43
|
wkt?: string;
|
|
44
44
|
}
|
|
45
|
+
/**
|
|
46
|
+
* Represents the print output dimensions for a MAP ONLY print.
|
|
47
|
+
*/
|
|
48
|
+
export interface PrintOutputDimensions {
|
|
49
|
+
/**
|
|
50
|
+
* The height of the map image in pixels.
|
|
51
|
+
*/
|
|
52
|
+
height: number;
|
|
53
|
+
/**
|
|
54
|
+
* The height of the map image in pixels.
|
|
55
|
+
*/
|
|
56
|
+
width: number;
|
|
57
|
+
}
|
|
45
58
|
/**
|
|
46
59
|
* Represents the print extent.
|
|
47
60
|
*/
|
|
@@ -752,17 +765,46 @@ export interface PreparedPrintJobArgs {
|
|
|
752
765
|
}
|
|
753
766
|
/**
|
|
754
767
|
* The arguments required by the printing.run command when printing with
|
|
755
|
-
* VertiGIS Studio ArcGIS Pro layouts, -layout packages or
|
|
768
|
+
* VertiGIS Studio ArcGIS Pro layouts, -layout packages or MAP ONLY (printing
|
|
756
769
|
* gen2).
|
|
757
770
|
*/
|
|
758
771
|
export interface RunLayoutPrintArgs extends RunPrintArgsBase {
|
|
759
772
|
/**
|
|
760
773
|
* The ID of the layout- (e.g.: vglay_xxx) or layout package (e.g.:
|
|
761
|
-
* vglaypk_xxx) item to print with
|
|
774
|
+
* vglaypk_xxx) item to print with. Deprecated; use portalItem instead.
|
|
775
|
+
*
|
|
776
|
+
* @deprecated
|
|
777
|
+
*/
|
|
778
|
+
layoutId?: string;
|
|
779
|
+
/**
|
|
780
|
+
* The portal item where the print layout or layout package is located. If
|
|
781
|
+
* not defined, a MAP ONLY print is performed.
|
|
782
|
+
*/
|
|
783
|
+
portalItem?: PortalItemLike;
|
|
784
|
+
/**
|
|
785
|
+
* The print scale.
|
|
786
|
+
*/
|
|
787
|
+
scale: number;
|
|
788
|
+
/**
|
|
789
|
+
* The map extent. Defaults to the map's current extent. The actual print
|
|
790
|
+
* extent is calculated from the center point of the map extent, the print
|
|
791
|
+
* scale and the layout frame- or the output dimensions.
|
|
762
792
|
*/
|
|
763
|
-
|
|
793
|
+
extent?: Extent;
|
|
794
|
+
/**
|
|
795
|
+
* The print output dimensions for a MAP ONLY print.
|
|
796
|
+
*/
|
|
797
|
+
outputDimensions?: PrintOutputDimensions;
|
|
798
|
+
/**
|
|
799
|
+
* Custom layout field parameters, specified as key-value pairs. The key is
|
|
800
|
+
* related to the layout field key. If a field for a specified key has an
|
|
801
|
+
* auto-filled value, this value is overwritten by the value provided here.
|
|
802
|
+
* NOTE: See VGS Printing documentation to learn more about layout fields.
|
|
803
|
+
*/
|
|
804
|
+
parameters?: JobParameters;
|
|
764
805
|
/**
|
|
765
|
-
* The print output format
|
|
806
|
+
* The print output format. Defaults to PDF if undefined or if layout
|
|
807
|
+
* package print is performed.
|
|
766
808
|
*/
|
|
767
809
|
outputFormat?: PrintOutputFormat;
|
|
768
810
|
}
|
|
@@ -771,35 +813,14 @@ export interface RunLayoutPrintArgs extends RunPrintArgsBase {
|
|
|
771
813
|
* templates (printing gen1).
|
|
772
814
|
*/
|
|
773
815
|
export interface RunPrintArgs extends RunPrintArgsBase {
|
|
774
|
-
/**
|
|
775
|
-
* The WKID of the spatial reference used to draw a grid on the map(s).
|
|
776
|
-
*/
|
|
777
|
-
grid?: SpatialReference;
|
|
778
|
-
}
|
|
779
|
-
/**
|
|
780
|
-
* The base arguments for the printing.run command.
|
|
781
|
-
*/
|
|
782
|
-
interface RunPrintArgsBase {
|
|
783
|
-
/**
|
|
784
|
-
* The map(s) to print.
|
|
785
|
-
*/
|
|
786
|
-
maps: MapsLike;
|
|
787
816
|
/**
|
|
788
817
|
* The ID of the report item.
|
|
789
818
|
*/
|
|
790
819
|
id?: string;
|
|
791
820
|
/**
|
|
792
|
-
* The
|
|
793
|
-
*/
|
|
794
|
-
title?: string;
|
|
795
|
-
/**
|
|
796
|
-
* The portal item where the report is located.
|
|
821
|
+
* The portal item where the print template is located.
|
|
797
822
|
*/
|
|
798
823
|
portalItem?: PortalItemLike;
|
|
799
|
-
/**
|
|
800
|
-
* The DPI with which to print.
|
|
801
|
-
*/
|
|
802
|
-
dpi?: number;
|
|
803
824
|
/**
|
|
804
825
|
* The scale of the map(s). Defaults to the map's current scale.
|
|
805
826
|
*/
|
|
@@ -809,6 +830,10 @@ interface RunPrintArgsBase {
|
|
|
809
830
|
* extent. If scale is provided, only the center point is used.
|
|
810
831
|
*/
|
|
811
832
|
extent?: Extent;
|
|
833
|
+
/**
|
|
834
|
+
* The WKID of the spatial reference used to draw a grid on the map(s).
|
|
835
|
+
*/
|
|
836
|
+
grid?: SpatialReference;
|
|
812
837
|
/**
|
|
813
838
|
* The initial viewpoint of the 3D map(s). Defaults to the scene's current
|
|
814
839
|
* viewpoint.
|
|
@@ -818,6 +843,23 @@ interface RunPrintArgsBase {
|
|
|
818
843
|
* The rotation of the map(s). Defaults to the map's current rotation.
|
|
819
844
|
*/
|
|
820
845
|
rotation?: number;
|
|
846
|
+
}
|
|
847
|
+
/**
|
|
848
|
+
* The base arguments for the printing.run command.
|
|
849
|
+
*/
|
|
850
|
+
interface RunPrintArgsBase {
|
|
851
|
+
/**
|
|
852
|
+
* The map(s) to print.
|
|
853
|
+
*/
|
|
854
|
+
maps: MapsLike;
|
|
855
|
+
/**
|
|
856
|
+
* The title of the print.
|
|
857
|
+
*/
|
|
858
|
+
title?: string;
|
|
859
|
+
/**
|
|
860
|
+
* The DPI with which to print.
|
|
861
|
+
*/
|
|
862
|
+
dpi?: number;
|
|
821
863
|
/**
|
|
822
864
|
* Additional parameters used in the print template, specified as key-value
|
|
823
865
|
* pairs.
|
|
@@ -3060,6 +3060,25 @@
|
|
|
3060
3060
|
],
|
|
3061
3061
|
"description": "Filters applied to the pointCloud which will hide a point.\n\nSee {@link https://developers.arcgis.com/web-scene-specification/objects/pointCloudFilter/}."
|
|
3062
3062
|
},
|
|
3063
|
+
"PrintOutputDimensions": {
|
|
3064
|
+
"additionalProperties": false,
|
|
3065
|
+
"description": "Represents the print output dimensions for a MAP ONLY print.",
|
|
3066
|
+
"properties": {
|
|
3067
|
+
"height": {
|
|
3068
|
+
"description": "The height of the map image in pixels.",
|
|
3069
|
+
"type": "number"
|
|
3070
|
+
},
|
|
3071
|
+
"width": {
|
|
3072
|
+
"description": "The height of the map image in pixels.",
|
|
3073
|
+
"type": "number"
|
|
3074
|
+
}
|
|
3075
|
+
},
|
|
3076
|
+
"required": [
|
|
3077
|
+
"height",
|
|
3078
|
+
"width"
|
|
3079
|
+
],
|
|
3080
|
+
"type": "object"
|
|
3081
|
+
},
|
|
3063
3082
|
"PrintOutputFormat": {
|
|
3064
3083
|
"description": "Represents the print output format type (printing gen2). Note: Output format is ignored and PDF is used automatically if more than one page is exported.",
|
|
3065
3084
|
"enum": [
|
|
@@ -3156,7 +3175,7 @@
|
|
|
3156
3175
|
},
|
|
3157
3176
|
"RunLayoutPrintArgs": {
|
|
3158
3177
|
"additionalProperties": false,
|
|
3159
|
-
"description": "The arguments required by the printing.run command when printing with VertiGIS Studio ArcGIS Pro layouts, -layout packages or
|
|
3178
|
+
"description": "The arguments required by the printing.run command when printing with VertiGIS Studio ArcGIS Pro layouts, -layout packages or MAP ONLY (printing gen2).",
|
|
3160
3179
|
"properties": {
|
|
3161
3180
|
"dpi": {
|
|
3162
3181
|
"description": "The DPI with which to print.",
|
|
@@ -3164,56 +3183,48 @@
|
|
|
3164
3183
|
},
|
|
3165
3184
|
"extent": {
|
|
3166
3185
|
"$ref": "#/definitions/esri.Extent",
|
|
3167
|
-
"description": "The
|
|
3168
|
-
},
|
|
3169
|
-
"id": {
|
|
3170
|
-
"description": "The ID of the report item.",
|
|
3171
|
-
"type": "string"
|
|
3186
|
+
"description": "The map extent. Defaults to the map's current extent. The actual print extent is calculated from the center point of the map extent, the print scale and the layout frame- or the output dimensions."
|
|
3172
3187
|
},
|
|
3173
3188
|
"instanceId": {
|
|
3174
3189
|
"description": "A unique ID used to track a print job.",
|
|
3175
3190
|
"type": "string"
|
|
3176
3191
|
},
|
|
3177
3192
|
"layoutId": {
|
|
3178
|
-
"description": "The ID of the layout- (e.g.: vglay_xxx) or layout package (e.g.: vglaypk_xxx) item to print with
|
|
3193
|
+
"description": "The ID of the layout- (e.g.: vglay_xxx) or layout package (e.g.: vglaypk_xxx) item to print with. Deprecated; use portalItem instead.",
|
|
3179
3194
|
"type": "string"
|
|
3180
3195
|
},
|
|
3181
3196
|
"maps": {
|
|
3182
3197
|
"$ref": "MapsLike",
|
|
3183
3198
|
"description": "The map(s) to print."
|
|
3184
3199
|
},
|
|
3200
|
+
"outputDimensions": {
|
|
3201
|
+
"$ref": "#/definitions/PrintOutputDimensions",
|
|
3202
|
+
"description": "The print output dimensions for a MAP ONLY print."
|
|
3203
|
+
},
|
|
3185
3204
|
"outputFormat": {
|
|
3186
3205
|
"$ref": "#/definitions/PrintOutputFormat",
|
|
3187
|
-
"description": "The print output format
|
|
3206
|
+
"description": "The print output format. Defaults to PDF if undefined or if layout package print is performed."
|
|
3188
3207
|
},
|
|
3189
3208
|
"parameters": {
|
|
3190
3209
|
"$ref": "#/definitions/JobParameters",
|
|
3191
|
-
"description": "
|
|
3210
|
+
"description": "Custom layout field parameters, specified as key-value pairs. The key is related to the layout field key. If a field for a specified key has an auto-filled value, this value is overwritten by the value provided here. NOTE: See VGS Printing documentation to learn more about layout fields."
|
|
3192
3211
|
},
|
|
3193
3212
|
"portalItem": {
|
|
3194
3213
|
"$ref": "#/definitions/@vertigis.arcgis-extensions.utilities.portal.PortalItemLike",
|
|
3195
|
-
"description": "The portal item where the
|
|
3196
|
-
},
|
|
3197
|
-
"rotation": {
|
|
3198
|
-
"description": "The rotation of the map(s). Defaults to the map's current rotation.",
|
|
3199
|
-
"type": "number"
|
|
3214
|
+
"description": "The portal item where the print layout or layout package is located. If not defined, a MAP ONLY print is performed."
|
|
3200
3215
|
},
|
|
3201
3216
|
"scale": {
|
|
3202
|
-
"description": "The
|
|
3217
|
+
"description": "The print scale.",
|
|
3203
3218
|
"type": "number"
|
|
3204
3219
|
},
|
|
3205
3220
|
"title": {
|
|
3206
|
-
"description": "The title of the
|
|
3221
|
+
"description": "The title of the print.",
|
|
3207
3222
|
"type": "string"
|
|
3208
|
-
},
|
|
3209
|
-
"viewpoint": {
|
|
3210
|
-
"$ref": "#/definitions/esri.Viewpoint",
|
|
3211
|
-
"description": "The initial viewpoint of the 3D map(s). Defaults to the scene's current viewpoint."
|
|
3212
3223
|
}
|
|
3213
3224
|
},
|
|
3214
3225
|
"required": [
|
|
3215
|
-
"
|
|
3216
|
-
"
|
|
3226
|
+
"maps",
|
|
3227
|
+
"scale"
|
|
3217
3228
|
],
|
|
3218
3229
|
"type": "object"
|
|
3219
3230
|
},
|
|
@@ -3251,7 +3262,7 @@
|
|
|
3251
3262
|
},
|
|
3252
3263
|
"portalItem": {
|
|
3253
3264
|
"$ref": "#/definitions/@vertigis.arcgis-extensions.utilities.portal.PortalItemLike",
|
|
3254
|
-
"description": "The portal item where the
|
|
3265
|
+
"description": "The portal item where the print template is located."
|
|
3255
3266
|
},
|
|
3256
3267
|
"rotation": {
|
|
3257
3268
|
"description": "The rotation of the map(s). Defaults to the map's current rotation.",
|
|
@@ -3262,7 +3273,7 @@
|
|
|
3262
3273
|
"type": "number"
|
|
3263
3274
|
},
|
|
3264
3275
|
"title": {
|
|
3265
|
-
"description": "The title of the
|
|
3276
|
+
"description": "The title of the print.",
|
|
3266
3277
|
"type": "string"
|
|
3267
3278
|
},
|
|
3268
3279
|
"viewpoint": {
|
|
@@ -3899,6 +3899,25 @@
|
|
|
3899
3899
|
],
|
|
3900
3900
|
"description": "Filters applied to the pointCloud which will hide a point.\n\nSee {@link https://developers.arcgis.com/web-scene-specification/objects/pointCloudFilter/}."
|
|
3901
3901
|
},
|
|
3902
|
+
"PrintOutputDimensions": {
|
|
3903
|
+
"additionalProperties": false,
|
|
3904
|
+
"description": "Represents the print output dimensions for a MAP ONLY print.",
|
|
3905
|
+
"properties": {
|
|
3906
|
+
"height": {
|
|
3907
|
+
"description": "The height of the map image in pixels.",
|
|
3908
|
+
"type": "number"
|
|
3909
|
+
},
|
|
3910
|
+
"width": {
|
|
3911
|
+
"description": "The height of the map image in pixels.",
|
|
3912
|
+
"type": "number"
|
|
3913
|
+
}
|
|
3914
|
+
},
|
|
3915
|
+
"required": [
|
|
3916
|
+
"height",
|
|
3917
|
+
"width"
|
|
3918
|
+
],
|
|
3919
|
+
"type": "object"
|
|
3920
|
+
},
|
|
3902
3921
|
"PrintOutputFormat": {
|
|
3903
3922
|
"description": "Represents the print output format type (printing gen2). Note: Output format is ignored and PDF is used automatically if more than one page is exported.",
|
|
3904
3923
|
"enum": [
|
|
@@ -4091,7 +4110,7 @@
|
|
|
4091
4110
|
},
|
|
4092
4111
|
"RunLayoutPrintArgs": {
|
|
4093
4112
|
"additionalProperties": false,
|
|
4094
|
-
"description": "The arguments required by the printing.run command when printing with VertiGIS Studio ArcGIS Pro layouts, -layout packages or
|
|
4113
|
+
"description": "The arguments required by the printing.run command when printing with VertiGIS Studio ArcGIS Pro layouts, -layout packages or MAP ONLY (printing gen2).",
|
|
4095
4114
|
"properties": {
|
|
4096
4115
|
"dpi": {
|
|
4097
4116
|
"description": "The DPI with which to print.",
|
|
@@ -4099,56 +4118,48 @@
|
|
|
4099
4118
|
},
|
|
4100
4119
|
"extent": {
|
|
4101
4120
|
"$ref": "#/definitions/esri.Extent",
|
|
4102
|
-
"description": "The
|
|
4103
|
-
},
|
|
4104
|
-
"id": {
|
|
4105
|
-
"description": "The ID of the report item.",
|
|
4106
|
-
"type": "string"
|
|
4121
|
+
"description": "The map extent. Defaults to the map's current extent. The actual print extent is calculated from the center point of the map extent, the print scale and the layout frame- or the output dimensions."
|
|
4107
4122
|
},
|
|
4108
4123
|
"instanceId": {
|
|
4109
4124
|
"description": "A unique ID used to track a print job.",
|
|
4110
4125
|
"type": "string"
|
|
4111
4126
|
},
|
|
4112
4127
|
"layoutId": {
|
|
4113
|
-
"description": "The ID of the layout- (e.g.: vglay_xxx) or layout package (e.g.: vglaypk_xxx) item to print with
|
|
4128
|
+
"description": "The ID of the layout- (e.g.: vglay_xxx) or layout package (e.g.: vglaypk_xxx) item to print with. Deprecated; use portalItem instead.",
|
|
4114
4129
|
"type": "string"
|
|
4115
4130
|
},
|
|
4116
4131
|
"maps": {
|
|
4117
4132
|
"$ref": "MapsLike",
|
|
4118
4133
|
"description": "The map(s) to print."
|
|
4119
4134
|
},
|
|
4135
|
+
"outputDimensions": {
|
|
4136
|
+
"$ref": "#/definitions/PrintOutputDimensions",
|
|
4137
|
+
"description": "The print output dimensions for a MAP ONLY print."
|
|
4138
|
+
},
|
|
4120
4139
|
"outputFormat": {
|
|
4121
4140
|
"$ref": "#/definitions/PrintOutputFormat",
|
|
4122
|
-
"description": "The print output format
|
|
4141
|
+
"description": "The print output format. Defaults to PDF if undefined or if layout package print is performed."
|
|
4123
4142
|
},
|
|
4124
4143
|
"parameters": {
|
|
4125
4144
|
"$ref": "#/definitions/JobParameters",
|
|
4126
|
-
"description": "
|
|
4145
|
+
"description": "Custom layout field parameters, specified as key-value pairs. The key is related to the layout field key. If a field for a specified key has an auto-filled value, this value is overwritten by the value provided here. NOTE: See VGS Printing documentation to learn more about layout fields."
|
|
4127
4146
|
},
|
|
4128
4147
|
"portalItem": {
|
|
4129
4148
|
"$ref": "#/definitions/@vertigis.arcgis-extensions.utilities.portal.PortalItemLike",
|
|
4130
|
-
"description": "The portal item where the
|
|
4131
|
-
},
|
|
4132
|
-
"rotation": {
|
|
4133
|
-
"description": "The rotation of the map(s). Defaults to the map's current rotation.",
|
|
4134
|
-
"type": "number"
|
|
4149
|
+
"description": "The portal item where the print layout or layout package is located. If not defined, a MAP ONLY print is performed."
|
|
4135
4150
|
},
|
|
4136
4151
|
"scale": {
|
|
4137
|
-
"description": "The
|
|
4152
|
+
"description": "The print scale.",
|
|
4138
4153
|
"type": "number"
|
|
4139
4154
|
},
|
|
4140
4155
|
"title": {
|
|
4141
|
-
"description": "The title of the
|
|
4156
|
+
"description": "The title of the print.",
|
|
4142
4157
|
"type": "string"
|
|
4143
|
-
},
|
|
4144
|
-
"viewpoint": {
|
|
4145
|
-
"$ref": "#/definitions/esri.Viewpoint",
|
|
4146
|
-
"description": "The initial viewpoint of the 3D map(s). Defaults to the scene's current viewpoint."
|
|
4147
4158
|
}
|
|
4148
4159
|
},
|
|
4149
4160
|
"required": [
|
|
4150
|
-
"
|
|
4151
|
-
"
|
|
4161
|
+
"maps",
|
|
4162
|
+
"scale"
|
|
4152
4163
|
],
|
|
4153
4164
|
"type": "object"
|
|
4154
4165
|
},
|
|
@@ -4186,7 +4197,7 @@
|
|
|
4186
4197
|
},
|
|
4187
4198
|
"portalItem": {
|
|
4188
4199
|
"$ref": "#/definitions/@vertigis.arcgis-extensions.utilities.portal.PortalItemLike",
|
|
4189
|
-
"description": "The portal item where the
|
|
4200
|
+
"description": "The portal item where the print template is located."
|
|
4190
4201
|
},
|
|
4191
4202
|
"rotation": {
|
|
4192
4203
|
"description": "The rotation of the map(s). Defaults to the map's current rotation.",
|
|
@@ -4197,7 +4208,7 @@
|
|
|
4197
4208
|
"type": "number"
|
|
4198
4209
|
},
|
|
4199
4210
|
"title": {
|
|
4200
|
-
"description": "The title of the
|
|
4211
|
+
"description": "The title of the print.",
|
|
4201
4212
|
"type": "string"
|
|
4202
4213
|
},
|
|
4203
4214
|
"viewpoint": {
|
|
@@ -6088,6 +6088,25 @@
|
|
|
6088
6088
|
"description": "A username for a particular ArcGIS Portal User.",
|
|
6089
6089
|
"type": "string"
|
|
6090
6090
|
},
|
|
6091
|
+
"PrintOutputDimensions": {
|
|
6092
|
+
"additionalProperties": false,
|
|
6093
|
+
"description": "Represents the print output dimensions for a MAP ONLY print.",
|
|
6094
|
+
"properties": {
|
|
6095
|
+
"height": {
|
|
6096
|
+
"description": "The height of the map image in pixels.",
|
|
6097
|
+
"type": "number"
|
|
6098
|
+
},
|
|
6099
|
+
"width": {
|
|
6100
|
+
"description": "The height of the map image in pixels.",
|
|
6101
|
+
"type": "number"
|
|
6102
|
+
}
|
|
6103
|
+
},
|
|
6104
|
+
"required": [
|
|
6105
|
+
"height",
|
|
6106
|
+
"width"
|
|
6107
|
+
],
|
|
6108
|
+
"type": "object"
|
|
6109
|
+
},
|
|
6091
6110
|
"PrintOutputFormat": {
|
|
6092
6111
|
"description": "Represents the print output format type (printing gen2). Note: Output format is ignored and PDF is used automatically if more than one page is exported.",
|
|
6093
6112
|
"enum": [
|
|
@@ -6560,7 +6579,7 @@
|
|
|
6560
6579
|
},
|
|
6561
6580
|
"RunLayoutPrintArgs": {
|
|
6562
6581
|
"additionalProperties": false,
|
|
6563
|
-
"description": "The arguments required by the printing.run command when printing with VertiGIS Studio ArcGIS Pro layouts, -layout packages or
|
|
6582
|
+
"description": "The arguments required by the printing.run command when printing with VertiGIS Studio ArcGIS Pro layouts, -layout packages or MAP ONLY (printing gen2).",
|
|
6564
6583
|
"properties": {
|
|
6565
6584
|
"dpi": {
|
|
6566
6585
|
"description": "The DPI with which to print.",
|
|
@@ -6568,56 +6587,48 @@
|
|
|
6568
6587
|
},
|
|
6569
6588
|
"extent": {
|
|
6570
6589
|
"$ref": "#/definitions/esri.Extent",
|
|
6571
|
-
"description": "The
|
|
6572
|
-
},
|
|
6573
|
-
"id": {
|
|
6574
|
-
"description": "The ID of the report item.",
|
|
6575
|
-
"type": "string"
|
|
6590
|
+
"description": "The map extent. Defaults to the map's current extent. The actual print extent is calculated from the center point of the map extent, the print scale and the layout frame- or the output dimensions."
|
|
6576
6591
|
},
|
|
6577
6592
|
"instanceId": {
|
|
6578
6593
|
"description": "A unique ID used to track a print job.",
|
|
6579
6594
|
"type": "string"
|
|
6580
6595
|
},
|
|
6581
6596
|
"layoutId": {
|
|
6582
|
-
"description": "The ID of the layout- (e.g.: vglay_xxx) or layout package (e.g.: vglaypk_xxx) item to print with
|
|
6597
|
+
"description": "The ID of the layout- (e.g.: vglay_xxx) or layout package (e.g.: vglaypk_xxx) item to print with. Deprecated; use portalItem instead.",
|
|
6583
6598
|
"type": "string"
|
|
6584
6599
|
},
|
|
6585
6600
|
"maps": {
|
|
6586
6601
|
"$ref": "MapsLike",
|
|
6587
6602
|
"description": "The map(s) to print."
|
|
6588
6603
|
},
|
|
6604
|
+
"outputDimensions": {
|
|
6605
|
+
"$ref": "#/definitions/PrintOutputDimensions",
|
|
6606
|
+
"description": "The print output dimensions for a MAP ONLY print."
|
|
6607
|
+
},
|
|
6589
6608
|
"outputFormat": {
|
|
6590
6609
|
"$ref": "#/definitions/PrintOutputFormat",
|
|
6591
|
-
"description": "The print output format
|
|
6610
|
+
"description": "The print output format. Defaults to PDF if undefined or if layout package print is performed."
|
|
6592
6611
|
},
|
|
6593
6612
|
"parameters": {
|
|
6594
6613
|
"$ref": "#/definitions/JobParameters",
|
|
6595
|
-
"description": "
|
|
6614
|
+
"description": "Custom layout field parameters, specified as key-value pairs. The key is related to the layout field key. If a field for a specified key has an auto-filled value, this value is overwritten by the value provided here. NOTE: See VGS Printing documentation to learn more about layout fields."
|
|
6596
6615
|
},
|
|
6597
6616
|
"portalItem": {
|
|
6598
6617
|
"$ref": "#/definitions/@vertigis.arcgis-extensions.utilities.portal.PortalItemLike",
|
|
6599
|
-
"description": "The portal item where the
|
|
6600
|
-
},
|
|
6601
|
-
"rotation": {
|
|
6602
|
-
"description": "The rotation of the map(s). Defaults to the map's current rotation.",
|
|
6603
|
-
"type": "number"
|
|
6618
|
+
"description": "The portal item where the print layout or layout package is located. If not defined, a MAP ONLY print is performed."
|
|
6604
6619
|
},
|
|
6605
6620
|
"scale": {
|
|
6606
|
-
"description": "The
|
|
6621
|
+
"description": "The print scale.",
|
|
6607
6622
|
"type": "number"
|
|
6608
6623
|
},
|
|
6609
6624
|
"title": {
|
|
6610
|
-
"description": "The title of the
|
|
6625
|
+
"description": "The title of the print.",
|
|
6611
6626
|
"type": "string"
|
|
6612
|
-
},
|
|
6613
|
-
"viewpoint": {
|
|
6614
|
-
"$ref": "#/definitions/esri.Viewpoint",
|
|
6615
|
-
"description": "The initial viewpoint of the 3D map(s). Defaults to the scene's current viewpoint."
|
|
6616
6627
|
}
|
|
6617
6628
|
},
|
|
6618
6629
|
"required": [
|
|
6619
|
-
"
|
|
6620
|
-
"
|
|
6630
|
+
"maps",
|
|
6631
|
+
"scale"
|
|
6621
6632
|
],
|
|
6622
6633
|
"type": "object"
|
|
6623
6634
|
},
|
|
@@ -6655,7 +6666,7 @@
|
|
|
6655
6666
|
},
|
|
6656
6667
|
"portalItem": {
|
|
6657
6668
|
"$ref": "#/definitions/@vertigis.arcgis-extensions.utilities.portal.PortalItemLike",
|
|
6658
|
-
"description": "The portal item where the
|
|
6669
|
+
"description": "The portal item where the print template is located."
|
|
6659
6670
|
},
|
|
6660
6671
|
"rotation": {
|
|
6661
6672
|
"description": "The rotation of the map(s). Defaults to the map's current rotation.",
|
|
@@ -6666,7 +6677,7 @@
|
|
|
6666
6677
|
"type": "number"
|
|
6667
6678
|
},
|
|
6668
6679
|
"title": {
|
|
6669
|
-
"description": "The title of the
|
|
6680
|
+
"description": "The title of the print.",
|
|
6670
6681
|
"type": "string"
|
|
6671
6682
|
},
|
|
6672
6683
|
"viewpoint": {
|
package/package.json
CHANGED
package/version.d.ts
CHANGED
package/version.js
CHANGED