@vertigis/viewer-spec 59.17.0 → 59.19.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 +75 -26
- package/messaging/schema/common-action.schema.json +36 -21
- package/messaging/schema/mobile-action.schema.json +36 -21
- package/messaging/schema/web-action.schema.json +36 -21
- 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,53 @@ 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 {
|
|
772
|
+
/**
|
|
773
|
+
* The ID of the layout item to print with. Deprecated; use portalItem
|
|
774
|
+
* instead.
|
|
775
|
+
*
|
|
776
|
+
* @deprecated
|
|
777
|
+
*/
|
|
778
|
+
id?: string;
|
|
759
779
|
/**
|
|
760
780
|
* The ID of the layout- (e.g.: vglay_xxx) or layout package (e.g.:
|
|
761
|
-
* vglaypk_xxx) item to print with
|
|
781
|
+
* vglaypk_xxx) item to print with. Deprecated; use portalItem instead.
|
|
782
|
+
*
|
|
783
|
+
* @deprecated
|
|
784
|
+
*/
|
|
785
|
+
layoutId?: string;
|
|
786
|
+
/**
|
|
787
|
+
* The portal item where the print layout or layout package is located. If
|
|
788
|
+
* not defined, a MAP ONLY print is performed.
|
|
789
|
+
*/
|
|
790
|
+
portalItem?: PortalItemLike;
|
|
791
|
+
/**
|
|
792
|
+
* The print scale.
|
|
762
793
|
*/
|
|
763
|
-
|
|
794
|
+
scale: number;
|
|
795
|
+
/**
|
|
796
|
+
* The map extent. Defaults to the map's current extent. The actual print
|
|
797
|
+
* extent is calculated from the center point of the map extent, the print
|
|
798
|
+
* scale and the layout frame- or the output dimensions.
|
|
799
|
+
*/
|
|
800
|
+
extent?: Extent;
|
|
801
|
+
/**
|
|
802
|
+
* The print output dimensions for a MAP ONLY print.
|
|
803
|
+
*/
|
|
804
|
+
outputDimensions?: PrintOutputDimensions;
|
|
805
|
+
/**
|
|
806
|
+
* Custom layout field parameters, specified as key-value pairs. The key is
|
|
807
|
+
* related to the layout field key. If a field for a specified key has an
|
|
808
|
+
* auto-filled value, this value is overwritten by the value provided here.
|
|
809
|
+
* NOTE: See VGS Printing documentation to learn more about layout fields.
|
|
810
|
+
*/
|
|
811
|
+
parameters?: JobParameters;
|
|
764
812
|
/**
|
|
765
|
-
* The print output format
|
|
813
|
+
* The print output format. Defaults to PDF if undefined or if layout
|
|
814
|
+
* package print is performed.
|
|
766
815
|
*/
|
|
767
816
|
outputFormat?: PrintOutputFormat;
|
|
768
817
|
}
|
|
@@ -771,35 +820,14 @@ export interface RunLayoutPrintArgs extends RunPrintArgsBase {
|
|
|
771
820
|
* templates (printing gen1).
|
|
772
821
|
*/
|
|
773
822
|
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
823
|
/**
|
|
788
824
|
* The ID of the report item.
|
|
789
825
|
*/
|
|
790
826
|
id?: string;
|
|
791
827
|
/**
|
|
792
|
-
* The
|
|
793
|
-
*/
|
|
794
|
-
title?: string;
|
|
795
|
-
/**
|
|
796
|
-
* The portal item where the report is located.
|
|
828
|
+
* The portal item where the print template is located.
|
|
797
829
|
*/
|
|
798
830
|
portalItem?: PortalItemLike;
|
|
799
|
-
/**
|
|
800
|
-
* The DPI with which to print.
|
|
801
|
-
*/
|
|
802
|
-
dpi?: number;
|
|
803
831
|
/**
|
|
804
832
|
* The scale of the map(s). Defaults to the map's current scale.
|
|
805
833
|
*/
|
|
@@ -809,6 +837,10 @@ interface RunPrintArgsBase {
|
|
|
809
837
|
* extent. If scale is provided, only the center point is used.
|
|
810
838
|
*/
|
|
811
839
|
extent?: Extent;
|
|
840
|
+
/**
|
|
841
|
+
* The WKID of the spatial reference used to draw a grid on the map(s).
|
|
842
|
+
*/
|
|
843
|
+
grid?: SpatialReference;
|
|
812
844
|
/**
|
|
813
845
|
* The initial viewpoint of the 3D map(s). Defaults to the scene's current
|
|
814
846
|
* viewpoint.
|
|
@@ -818,6 +850,23 @@ interface RunPrintArgsBase {
|
|
|
818
850
|
* The rotation of the map(s). Defaults to the map's current rotation.
|
|
819
851
|
*/
|
|
820
852
|
rotation?: number;
|
|
853
|
+
}
|
|
854
|
+
/**
|
|
855
|
+
* The base arguments for the printing.run command.
|
|
856
|
+
*/
|
|
857
|
+
interface RunPrintArgsBase {
|
|
858
|
+
/**
|
|
859
|
+
* The map(s) to print.
|
|
860
|
+
*/
|
|
861
|
+
maps: MapsLike;
|
|
862
|
+
/**
|
|
863
|
+
* The title of the print.
|
|
864
|
+
*/
|
|
865
|
+
title?: string;
|
|
866
|
+
/**
|
|
867
|
+
* The DPI with which to print.
|
|
868
|
+
*/
|
|
869
|
+
dpi?: number;
|
|
821
870
|
/**
|
|
822
871
|
* Additional parameters used in the print template, specified as key-value
|
|
823
872
|
* 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,10 +3183,10 @@
|
|
|
3164
3183
|
},
|
|
3165
3184
|
"extent": {
|
|
3166
3185
|
"$ref": "#/definitions/esri.Extent",
|
|
3167
|
-
"description": "The
|
|
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."
|
|
3168
3187
|
},
|
|
3169
3188
|
"id": {
|
|
3170
|
-
"description": "The ID of the
|
|
3189
|
+
"description": "The ID of the layout item to print with. Deprecated; use portalItem instead.",
|
|
3171
3190
|
"type": "string"
|
|
3172
3191
|
},
|
|
3173
3192
|
"instanceId": {
|
|
@@ -3175,45 +3194,41 @@
|
|
|
3175
3194
|
"type": "string"
|
|
3176
3195
|
},
|
|
3177
3196
|
"layoutId": {
|
|
3178
|
-
"description": "The ID of the layout- (e.g.: vglay_xxx) or layout package (e.g.: vglaypk_xxx) item to print with
|
|
3197
|
+
"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
3198
|
"type": "string"
|
|
3180
3199
|
},
|
|
3181
3200
|
"maps": {
|
|
3182
3201
|
"$ref": "MapsLike",
|
|
3183
3202
|
"description": "The map(s) to print."
|
|
3184
3203
|
},
|
|
3204
|
+
"outputDimensions": {
|
|
3205
|
+
"$ref": "#/definitions/PrintOutputDimensions",
|
|
3206
|
+
"description": "The print output dimensions for a MAP ONLY print."
|
|
3207
|
+
},
|
|
3185
3208
|
"outputFormat": {
|
|
3186
3209
|
"$ref": "#/definitions/PrintOutputFormat",
|
|
3187
|
-
"description": "The print output format
|
|
3210
|
+
"description": "The print output format. Defaults to PDF if undefined or if layout package print is performed."
|
|
3188
3211
|
},
|
|
3189
3212
|
"parameters": {
|
|
3190
3213
|
"$ref": "#/definitions/JobParameters",
|
|
3191
|
-
"description": "
|
|
3214
|
+
"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
3215
|
},
|
|
3193
3216
|
"portalItem": {
|
|
3194
3217
|
"$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"
|
|
3218
|
+
"description": "The portal item where the print layout or layout package is located. If not defined, a MAP ONLY print is performed."
|
|
3200
3219
|
},
|
|
3201
3220
|
"scale": {
|
|
3202
|
-
"description": "The
|
|
3221
|
+
"description": "The print scale.",
|
|
3203
3222
|
"type": "number"
|
|
3204
3223
|
},
|
|
3205
3224
|
"title": {
|
|
3206
|
-
"description": "The title of the
|
|
3225
|
+
"description": "The title of the print.",
|
|
3207
3226
|
"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
3227
|
}
|
|
3213
3228
|
},
|
|
3214
3229
|
"required": [
|
|
3215
|
-
"
|
|
3216
|
-
"
|
|
3230
|
+
"maps",
|
|
3231
|
+
"scale"
|
|
3217
3232
|
],
|
|
3218
3233
|
"type": "object"
|
|
3219
3234
|
},
|
|
@@ -3251,7 +3266,7 @@
|
|
|
3251
3266
|
},
|
|
3252
3267
|
"portalItem": {
|
|
3253
3268
|
"$ref": "#/definitions/@vertigis.arcgis-extensions.utilities.portal.PortalItemLike",
|
|
3254
|
-
"description": "The portal item where the
|
|
3269
|
+
"description": "The portal item where the print template is located."
|
|
3255
3270
|
},
|
|
3256
3271
|
"rotation": {
|
|
3257
3272
|
"description": "The rotation of the map(s). Defaults to the map's current rotation.",
|
|
@@ -3262,7 +3277,7 @@
|
|
|
3262
3277
|
"type": "number"
|
|
3263
3278
|
},
|
|
3264
3279
|
"title": {
|
|
3265
|
-
"description": "The title of the
|
|
3280
|
+
"description": "The title of the print.",
|
|
3266
3281
|
"type": "string"
|
|
3267
3282
|
},
|
|
3268
3283
|
"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,10 +4118,10 @@
|
|
|
4099
4118
|
},
|
|
4100
4119
|
"extent": {
|
|
4101
4120
|
"$ref": "#/definitions/esri.Extent",
|
|
4102
|
-
"description": "The
|
|
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."
|
|
4103
4122
|
},
|
|
4104
4123
|
"id": {
|
|
4105
|
-
"description": "The ID of the
|
|
4124
|
+
"description": "The ID of the layout item to print with. Deprecated; use portalItem instead.",
|
|
4106
4125
|
"type": "string"
|
|
4107
4126
|
},
|
|
4108
4127
|
"instanceId": {
|
|
@@ -4110,45 +4129,41 @@
|
|
|
4110
4129
|
"type": "string"
|
|
4111
4130
|
},
|
|
4112
4131
|
"layoutId": {
|
|
4113
|
-
"description": "The ID of the layout- (e.g.: vglay_xxx) or layout package (e.g.: vglaypk_xxx) item to print with
|
|
4132
|
+
"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
4133
|
"type": "string"
|
|
4115
4134
|
},
|
|
4116
4135
|
"maps": {
|
|
4117
4136
|
"$ref": "MapsLike",
|
|
4118
4137
|
"description": "The map(s) to print."
|
|
4119
4138
|
},
|
|
4139
|
+
"outputDimensions": {
|
|
4140
|
+
"$ref": "#/definitions/PrintOutputDimensions",
|
|
4141
|
+
"description": "The print output dimensions for a MAP ONLY print."
|
|
4142
|
+
},
|
|
4120
4143
|
"outputFormat": {
|
|
4121
4144
|
"$ref": "#/definitions/PrintOutputFormat",
|
|
4122
|
-
"description": "The print output format
|
|
4145
|
+
"description": "The print output format. Defaults to PDF if undefined or if layout package print is performed."
|
|
4123
4146
|
},
|
|
4124
4147
|
"parameters": {
|
|
4125
4148
|
"$ref": "#/definitions/JobParameters",
|
|
4126
|
-
"description": "
|
|
4149
|
+
"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
4150
|
},
|
|
4128
4151
|
"portalItem": {
|
|
4129
4152
|
"$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"
|
|
4153
|
+
"description": "The portal item where the print layout or layout package is located. If not defined, a MAP ONLY print is performed."
|
|
4135
4154
|
},
|
|
4136
4155
|
"scale": {
|
|
4137
|
-
"description": "The
|
|
4156
|
+
"description": "The print scale.",
|
|
4138
4157
|
"type": "number"
|
|
4139
4158
|
},
|
|
4140
4159
|
"title": {
|
|
4141
|
-
"description": "The title of the
|
|
4160
|
+
"description": "The title of the print.",
|
|
4142
4161
|
"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
4162
|
}
|
|
4148
4163
|
},
|
|
4149
4164
|
"required": [
|
|
4150
|
-
"
|
|
4151
|
-
"
|
|
4165
|
+
"maps",
|
|
4166
|
+
"scale"
|
|
4152
4167
|
],
|
|
4153
4168
|
"type": "object"
|
|
4154
4169
|
},
|
|
@@ -4186,7 +4201,7 @@
|
|
|
4186
4201
|
},
|
|
4187
4202
|
"portalItem": {
|
|
4188
4203
|
"$ref": "#/definitions/@vertigis.arcgis-extensions.utilities.portal.PortalItemLike",
|
|
4189
|
-
"description": "The portal item where the
|
|
4204
|
+
"description": "The portal item where the print template is located."
|
|
4190
4205
|
},
|
|
4191
4206
|
"rotation": {
|
|
4192
4207
|
"description": "The rotation of the map(s). Defaults to the map's current rotation.",
|
|
@@ -4197,7 +4212,7 @@
|
|
|
4197
4212
|
"type": "number"
|
|
4198
4213
|
},
|
|
4199
4214
|
"title": {
|
|
4200
|
-
"description": "The title of the
|
|
4215
|
+
"description": "The title of the print.",
|
|
4201
4216
|
"type": "string"
|
|
4202
4217
|
},
|
|
4203
4218
|
"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,10 +6587,10 @@
|
|
|
6568
6587
|
},
|
|
6569
6588
|
"extent": {
|
|
6570
6589
|
"$ref": "#/definitions/esri.Extent",
|
|
6571
|
-
"description": "The
|
|
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."
|
|
6572
6591
|
},
|
|
6573
6592
|
"id": {
|
|
6574
|
-
"description": "The ID of the
|
|
6593
|
+
"description": "The ID of the layout item to print with. Deprecated; use portalItem instead.",
|
|
6575
6594
|
"type": "string"
|
|
6576
6595
|
},
|
|
6577
6596
|
"instanceId": {
|
|
@@ -6579,45 +6598,41 @@
|
|
|
6579
6598
|
"type": "string"
|
|
6580
6599
|
},
|
|
6581
6600
|
"layoutId": {
|
|
6582
|
-
"description": "The ID of the layout- (e.g.: vglay_xxx) or layout package (e.g.: vglaypk_xxx) item to print with
|
|
6601
|
+
"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
6602
|
"type": "string"
|
|
6584
6603
|
},
|
|
6585
6604
|
"maps": {
|
|
6586
6605
|
"$ref": "MapsLike",
|
|
6587
6606
|
"description": "The map(s) to print."
|
|
6588
6607
|
},
|
|
6608
|
+
"outputDimensions": {
|
|
6609
|
+
"$ref": "#/definitions/PrintOutputDimensions",
|
|
6610
|
+
"description": "The print output dimensions for a MAP ONLY print."
|
|
6611
|
+
},
|
|
6589
6612
|
"outputFormat": {
|
|
6590
6613
|
"$ref": "#/definitions/PrintOutputFormat",
|
|
6591
|
-
"description": "The print output format
|
|
6614
|
+
"description": "The print output format. Defaults to PDF if undefined or if layout package print is performed."
|
|
6592
6615
|
},
|
|
6593
6616
|
"parameters": {
|
|
6594
6617
|
"$ref": "#/definitions/JobParameters",
|
|
6595
|
-
"description": "
|
|
6618
|
+
"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
6619
|
},
|
|
6597
6620
|
"portalItem": {
|
|
6598
6621
|
"$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"
|
|
6622
|
+
"description": "The portal item where the print layout or layout package is located. If not defined, a MAP ONLY print is performed."
|
|
6604
6623
|
},
|
|
6605
6624
|
"scale": {
|
|
6606
|
-
"description": "The
|
|
6625
|
+
"description": "The print scale.",
|
|
6607
6626
|
"type": "number"
|
|
6608
6627
|
},
|
|
6609
6628
|
"title": {
|
|
6610
|
-
"description": "The title of the
|
|
6629
|
+
"description": "The title of the print.",
|
|
6611
6630
|
"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
6631
|
}
|
|
6617
6632
|
},
|
|
6618
6633
|
"required": [
|
|
6619
|
-
"
|
|
6620
|
-
"
|
|
6634
|
+
"maps",
|
|
6635
|
+
"scale"
|
|
6621
6636
|
],
|
|
6622
6637
|
"type": "object"
|
|
6623
6638
|
},
|
|
@@ -6655,7 +6670,7 @@
|
|
|
6655
6670
|
},
|
|
6656
6671
|
"portalItem": {
|
|
6657
6672
|
"$ref": "#/definitions/@vertigis.arcgis-extensions.utilities.portal.PortalItemLike",
|
|
6658
|
-
"description": "The portal item where the
|
|
6673
|
+
"description": "The portal item where the print template is located."
|
|
6659
6674
|
},
|
|
6660
6675
|
"rotation": {
|
|
6661
6676
|
"description": "The rotation of the map(s). Defaults to the map's current rotation.",
|
|
@@ -6666,7 +6681,7 @@
|
|
|
6666
6681
|
"type": "number"
|
|
6667
6682
|
},
|
|
6668
6683
|
"title": {
|
|
6669
|
-
"description": "The title of the
|
|
6684
|
+
"description": "The title of the print.",
|
|
6670
6685
|
"type": "string"
|
|
6671
6686
|
},
|
|
6672
6687
|
"viewpoint": {
|
package/package.json
CHANGED
package/version.d.ts
CHANGED
package/version.js
CHANGED