@vertigis/viewer-spec 59.16.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.
@@ -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 map only (printing
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 or "MAP_ONLY" for map only prints.
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
- layoutId: string;
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 or PDF as default.
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 title of the report.
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.
@@ -157,7 +157,8 @@ export interface IdentifyArgs {
157
157
  /**
158
158
  * The map to identify. Can be used instead of or in addition to "sources".
159
159
  * Layers on the map will be used as sources according to the
160
- * "layersInScaleRangeOnly" and "visibleLayersOnly" flags.
160
+ * "layersInScaleRangeOnly", "layersWithPopupEnabledOnly", and
161
+ * "visibleLayersOnly" flags.
161
162
  */
162
163
  maps?: MapsLike;
163
164
  /**
@@ -166,6 +167,12 @@ export interface IdentifyArgs {
166
167
  * VertiGIS Studio Mobile.
167
168
  */
168
169
  layersInScaleRangeOnly?: boolean;
170
+ /**
171
+ * When "map" is specified, this determines whether to include only layers
172
+ * that have the `popupEnabled` layer property set to true. The default is
173
+ * false. Not supported in VertiGIS Studio Mobile.
174
+ */
175
+ layersWithPopupEnabledOnly?: boolean;
169
176
  /**
170
177
  * When "map" is specified, this determines whether to include only visible
171
178
  * layers. The default is true. Not supported in VertiGIS Studio Mobile.
@@ -2671,9 +2671,13 @@
2671
2671
  "description": "When \"map\" is specified, this determines whether to include only layers that are in visible scale range. The default is false. Not supported in VertiGIS Studio Mobile.",
2672
2672
  "type": "boolean"
2673
2673
  },
2674
+ "layersWithPopupEnabledOnly": {
2675
+ "description": "When \"map\" is specified, this determines whether to include only layers that have the `popupEnabled` layer property set to true. The default is false. Not supported in VertiGIS Studio Mobile.",
2676
+ "type": "boolean"
2677
+ },
2674
2678
  "maps": {
2675
2679
  "$ref": "MapsLike",
2676
- "description": "The map to identify. Can be used instead of or in addition to \"sources\". Layers on the map will be used as sources according to the \"layersInScaleRangeOnly\" and \"visibleLayersOnly\" flags."
2680
+ "description": "The map to identify. Can be used instead of or in addition to \"sources\". Layers on the map will be used as sources according to the \"layersInScaleRangeOnly\", \"layersWithPopupEnabledOnly\", and \"visibleLayersOnly\" flags."
2677
2681
  },
2678
2682
  "maxAllowableOffset": {
2679
2683
  "description": "The maximum allowable offset used for generalizing returned geometries. Not supported in VertiGIS Studio Mobile.",
@@ -3056,6 +3060,25 @@
3056
3060
  ],
3057
3061
  "description": "Filters applied to the pointCloud which will hide a point.\n\nSee {@link https://developers.arcgis.com/web-scene-specification/objects/pointCloudFilter/}."
3058
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
+ },
3059
3082
  "PrintOutputFormat": {
3060
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.",
3061
3084
  "enum": [
@@ -3152,7 +3175,7 @@
3152
3175
  },
3153
3176
  "RunLayoutPrintArgs": {
3154
3177
  "additionalProperties": false,
3155
- "description": "The arguments required by the printing.run command when printing with VertiGIS Studio ArcGIS Pro layouts, -layout packages or map only (printing gen2).",
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).",
3156
3179
  "properties": {
3157
3180
  "dpi": {
3158
3181
  "description": "The DPI with which to print.",
@@ -3160,56 +3183,48 @@
3160
3183
  },
3161
3184
  "extent": {
3162
3185
  "$ref": "#/definitions/esri.Extent",
3163
- "description": "The initial extent of the 2D map(s). Defaults to the map's current extent. If scale is provided, only the center point is used."
3164
- },
3165
- "id": {
3166
- "description": "The ID of the report item.",
3167
- "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."
3168
3187
  },
3169
3188
  "instanceId": {
3170
3189
  "description": "A unique ID used to track a print job.",
3171
3190
  "type": "string"
3172
3191
  },
3173
3192
  "layoutId": {
3174
- "description": "The ID of the layout- (e.g.: vglay_xxx) or layout package (e.g.: vglaypk_xxx) item to print with or \"MAP_ONLY\" for map only prints.",
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.",
3175
3194
  "type": "string"
3176
3195
  },
3177
3196
  "maps": {
3178
3197
  "$ref": "MapsLike",
3179
3198
  "description": "The map(s) to print."
3180
3199
  },
3200
+ "outputDimensions": {
3201
+ "$ref": "#/definitions/PrintOutputDimensions",
3202
+ "description": "The print output dimensions for a MAP ONLY print."
3203
+ },
3181
3204
  "outputFormat": {
3182
3205
  "$ref": "#/definitions/PrintOutputFormat",
3183
- "description": "The print output format or PDF as default."
3206
+ "description": "The print output format. Defaults to PDF if undefined or if layout package print is performed."
3184
3207
  },
3185
3208
  "parameters": {
3186
3209
  "$ref": "#/definitions/JobParameters",
3187
- "description": "Additional parameters used in the print template, specified as key-value pairs."
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."
3188
3211
  },
3189
3212
  "portalItem": {
3190
3213
  "$ref": "#/definitions/@vertigis.arcgis-extensions.utilities.portal.PortalItemLike",
3191
- "description": "The portal item where the report is located."
3192
- },
3193
- "rotation": {
3194
- "description": "The rotation of the map(s). Defaults to the map's current rotation.",
3195
- "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."
3196
3215
  },
3197
3216
  "scale": {
3198
- "description": "The scale of the map(s). Defaults to the map's current scale.",
3217
+ "description": "The print scale.",
3199
3218
  "type": "number"
3200
3219
  },
3201
3220
  "title": {
3202
- "description": "The title of the report.",
3221
+ "description": "The title of the print.",
3203
3222
  "type": "string"
3204
- },
3205
- "viewpoint": {
3206
- "$ref": "#/definitions/esri.Viewpoint",
3207
- "description": "The initial viewpoint of the 3D map(s). Defaults to the scene's current viewpoint."
3208
3223
  }
3209
3224
  },
3210
3225
  "required": [
3211
- "layoutId",
3212
- "maps"
3226
+ "maps",
3227
+ "scale"
3213
3228
  ],
3214
3229
  "type": "object"
3215
3230
  },
@@ -3247,7 +3262,7 @@
3247
3262
  },
3248
3263
  "portalItem": {
3249
3264
  "$ref": "#/definitions/@vertigis.arcgis-extensions.utilities.portal.PortalItemLike",
3250
- "description": "The portal item where the report is located."
3265
+ "description": "The portal item where the print template is located."
3251
3266
  },
3252
3267
  "rotation": {
3253
3268
  "description": "The rotation of the map(s). Defaults to the map's current rotation.",
@@ -3258,7 +3273,7 @@
3258
3273
  "type": "number"
3259
3274
  },
3260
3275
  "title": {
3261
- "description": "The title of the report.",
3276
+ "description": "The title of the print.",
3262
3277
  "type": "string"
3263
3278
  },
3264
3279
  "viewpoint": {
@@ -3207,9 +3207,13 @@
3207
3207
  "description": "When \"map\" is specified, this determines whether to include only layers that are in visible scale range. The default is false. Not supported in VertiGIS Studio Mobile.",
3208
3208
  "type": "boolean"
3209
3209
  },
3210
+ "layersWithPopupEnabledOnly": {
3211
+ "description": "When \"map\" is specified, this determines whether to include only layers that have the `popupEnabled` layer property set to true. The default is false. Not supported in VertiGIS Studio Mobile.",
3212
+ "type": "boolean"
3213
+ },
3210
3214
  "maps": {
3211
3215
  "$ref": "MapsLike",
3212
- "description": "The map to identify. Can be used instead of or in addition to \"sources\". Layers on the map will be used as sources according to the \"layersInScaleRangeOnly\" and \"visibleLayersOnly\" flags."
3216
+ "description": "The map to identify. Can be used instead of or in addition to \"sources\". Layers on the map will be used as sources according to the \"layersInScaleRangeOnly\", \"layersWithPopupEnabledOnly\", and \"visibleLayersOnly\" flags."
3213
3217
  },
3214
3218
  "maxAllowableOffset": {
3215
3219
  "description": "The maximum allowable offset used for generalizing returned geometries. Not supported in VertiGIS Studio Mobile.",
@@ -3895,6 +3899,25 @@
3895
3899
  ],
3896
3900
  "description": "Filters applied to the pointCloud which will hide a point.\n\nSee {@link https://developers.arcgis.com/web-scene-specification/objects/pointCloudFilter/}."
3897
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
+ },
3898
3921
  "PrintOutputFormat": {
3899
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.",
3900
3923
  "enum": [
@@ -4087,7 +4110,7 @@
4087
4110
  },
4088
4111
  "RunLayoutPrintArgs": {
4089
4112
  "additionalProperties": false,
4090
- "description": "The arguments required by the printing.run command when printing with VertiGIS Studio ArcGIS Pro layouts, -layout packages or map only (printing gen2).",
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).",
4091
4114
  "properties": {
4092
4115
  "dpi": {
4093
4116
  "description": "The DPI with which to print.",
@@ -4095,56 +4118,48 @@
4095
4118
  },
4096
4119
  "extent": {
4097
4120
  "$ref": "#/definitions/esri.Extent",
4098
- "description": "The initial extent of the 2D map(s). Defaults to the map's current extent. If scale is provided, only the center point is used."
4099
- },
4100
- "id": {
4101
- "description": "The ID of the report item.",
4102
- "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."
4103
4122
  },
4104
4123
  "instanceId": {
4105
4124
  "description": "A unique ID used to track a print job.",
4106
4125
  "type": "string"
4107
4126
  },
4108
4127
  "layoutId": {
4109
- "description": "The ID of the layout- (e.g.: vglay_xxx) or layout package (e.g.: vglaypk_xxx) item to print with or \"MAP_ONLY\" for map only prints.",
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.",
4110
4129
  "type": "string"
4111
4130
  },
4112
4131
  "maps": {
4113
4132
  "$ref": "MapsLike",
4114
4133
  "description": "The map(s) to print."
4115
4134
  },
4135
+ "outputDimensions": {
4136
+ "$ref": "#/definitions/PrintOutputDimensions",
4137
+ "description": "The print output dimensions for a MAP ONLY print."
4138
+ },
4116
4139
  "outputFormat": {
4117
4140
  "$ref": "#/definitions/PrintOutputFormat",
4118
- "description": "The print output format or PDF as default."
4141
+ "description": "The print output format. Defaults to PDF if undefined or if layout package print is performed."
4119
4142
  },
4120
4143
  "parameters": {
4121
4144
  "$ref": "#/definitions/JobParameters",
4122
- "description": "Additional parameters used in the print template, specified as key-value pairs."
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."
4123
4146
  },
4124
4147
  "portalItem": {
4125
4148
  "$ref": "#/definitions/@vertigis.arcgis-extensions.utilities.portal.PortalItemLike",
4126
- "description": "The portal item where the report is located."
4127
- },
4128
- "rotation": {
4129
- "description": "The rotation of the map(s). Defaults to the map's current rotation.",
4130
- "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."
4131
4150
  },
4132
4151
  "scale": {
4133
- "description": "The scale of the map(s). Defaults to the map's current scale.",
4152
+ "description": "The print scale.",
4134
4153
  "type": "number"
4135
4154
  },
4136
4155
  "title": {
4137
- "description": "The title of the report.",
4156
+ "description": "The title of the print.",
4138
4157
  "type": "string"
4139
- },
4140
- "viewpoint": {
4141
- "$ref": "#/definitions/esri.Viewpoint",
4142
- "description": "The initial viewpoint of the 3D map(s). Defaults to the scene's current viewpoint."
4143
4158
  }
4144
4159
  },
4145
4160
  "required": [
4146
- "layoutId",
4147
- "maps"
4161
+ "maps",
4162
+ "scale"
4148
4163
  ],
4149
4164
  "type": "object"
4150
4165
  },
@@ -4182,7 +4197,7 @@
4182
4197
  },
4183
4198
  "portalItem": {
4184
4199
  "$ref": "#/definitions/@vertigis.arcgis-extensions.utilities.portal.PortalItemLike",
4185
- "description": "The portal item where the report is located."
4200
+ "description": "The portal item where the print template is located."
4186
4201
  },
4187
4202
  "rotation": {
4188
4203
  "description": "The rotation of the map(s). Defaults to the map's current rotation.",
@@ -4193,7 +4208,7 @@
4193
4208
  "type": "number"
4194
4209
  },
4195
4210
  "title": {
4196
- "description": "The title of the report.",
4211
+ "description": "The title of the print.",
4197
4212
  "type": "string"
4198
4213
  },
4199
4214
  "viewpoint": {
@@ -5037,9 +5037,13 @@
5037
5037
  "description": "When \"map\" is specified, this determines whether to include only layers that are in visible scale range. The default is false. Not supported in VertiGIS Studio Mobile.",
5038
5038
  "type": "boolean"
5039
5039
  },
5040
+ "layersWithPopupEnabledOnly": {
5041
+ "description": "When \"map\" is specified, this determines whether to include only layers that have the `popupEnabled` layer property set to true. The default is false. Not supported in VertiGIS Studio Mobile.",
5042
+ "type": "boolean"
5043
+ },
5040
5044
  "maps": {
5041
5045
  "$ref": "MapsLike",
5042
- "description": "The map to identify. Can be used instead of or in addition to \"sources\". Layers on the map will be used as sources according to the \"layersInScaleRangeOnly\" and \"visibleLayersOnly\" flags."
5046
+ "description": "The map to identify. Can be used instead of or in addition to \"sources\". Layers on the map will be used as sources according to the \"layersInScaleRangeOnly\", \"layersWithPopupEnabledOnly\", and \"visibleLayersOnly\" flags."
5043
5047
  },
5044
5048
  "maxAllowableOffset": {
5045
5049
  "description": "The maximum allowable offset used for generalizing returned geometries. Not supported in VertiGIS Studio Mobile.",
@@ -6084,6 +6088,25 @@
6084
6088
  "description": "A username for a particular ArcGIS Portal User.",
6085
6089
  "type": "string"
6086
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
+ },
6087
6110
  "PrintOutputFormat": {
6088
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.",
6089
6112
  "enum": [
@@ -6556,7 +6579,7 @@
6556
6579
  },
6557
6580
  "RunLayoutPrintArgs": {
6558
6581
  "additionalProperties": false,
6559
- "description": "The arguments required by the printing.run command when printing with VertiGIS Studio ArcGIS Pro layouts, -layout packages or map only (printing gen2).",
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).",
6560
6583
  "properties": {
6561
6584
  "dpi": {
6562
6585
  "description": "The DPI with which to print.",
@@ -6564,56 +6587,48 @@
6564
6587
  },
6565
6588
  "extent": {
6566
6589
  "$ref": "#/definitions/esri.Extent",
6567
- "description": "The initial extent of the 2D map(s). Defaults to the map's current extent. If scale is provided, only the center point is used."
6568
- },
6569
- "id": {
6570
- "description": "The ID of the report item.",
6571
- "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."
6572
6591
  },
6573
6592
  "instanceId": {
6574
6593
  "description": "A unique ID used to track a print job.",
6575
6594
  "type": "string"
6576
6595
  },
6577
6596
  "layoutId": {
6578
- "description": "The ID of the layout- (e.g.: vglay_xxx) or layout package (e.g.: vglaypk_xxx) item to print with or \"MAP_ONLY\" for map only prints.",
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.",
6579
6598
  "type": "string"
6580
6599
  },
6581
6600
  "maps": {
6582
6601
  "$ref": "MapsLike",
6583
6602
  "description": "The map(s) to print."
6584
6603
  },
6604
+ "outputDimensions": {
6605
+ "$ref": "#/definitions/PrintOutputDimensions",
6606
+ "description": "The print output dimensions for a MAP ONLY print."
6607
+ },
6585
6608
  "outputFormat": {
6586
6609
  "$ref": "#/definitions/PrintOutputFormat",
6587
- "description": "The print output format or PDF as default."
6610
+ "description": "The print output format. Defaults to PDF if undefined or if layout package print is performed."
6588
6611
  },
6589
6612
  "parameters": {
6590
6613
  "$ref": "#/definitions/JobParameters",
6591
- "description": "Additional parameters used in the print template, specified as key-value pairs."
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."
6592
6615
  },
6593
6616
  "portalItem": {
6594
6617
  "$ref": "#/definitions/@vertigis.arcgis-extensions.utilities.portal.PortalItemLike",
6595
- "description": "The portal item where the report is located."
6596
- },
6597
- "rotation": {
6598
- "description": "The rotation of the map(s). Defaults to the map's current rotation.",
6599
- "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."
6600
6619
  },
6601
6620
  "scale": {
6602
- "description": "The scale of the map(s). Defaults to the map's current scale.",
6621
+ "description": "The print scale.",
6603
6622
  "type": "number"
6604
6623
  },
6605
6624
  "title": {
6606
- "description": "The title of the report.",
6625
+ "description": "The title of the print.",
6607
6626
  "type": "string"
6608
- },
6609
- "viewpoint": {
6610
- "$ref": "#/definitions/esri.Viewpoint",
6611
- "description": "The initial viewpoint of the 3D map(s). Defaults to the scene's current viewpoint."
6612
6627
  }
6613
6628
  },
6614
6629
  "required": [
6615
- "layoutId",
6616
- "maps"
6630
+ "maps",
6631
+ "scale"
6617
6632
  ],
6618
6633
  "type": "object"
6619
6634
  },
@@ -6651,7 +6666,7 @@
6651
6666
  },
6652
6667
  "portalItem": {
6653
6668
  "$ref": "#/definitions/@vertigis.arcgis-extensions.utilities.portal.PortalItemLike",
6654
- "description": "The portal item where the report is located."
6669
+ "description": "The portal item where the print template is located."
6655
6670
  },
6656
6671
  "rotation": {
6657
6672
  "description": "The rotation of the map(s). Defaults to the map's current rotation.",
@@ -6662,7 +6677,7 @@
6662
6677
  "type": "number"
6663
6678
  },
6664
6679
  "title": {
6665
- "description": "The title of the report.",
6680
+ "description": "The title of the print.",
6666
6681
  "type": "string"
6667
6682
  },
6668
6683
  "viewpoint": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vertigis/viewer-spec",
3
- "version": "59.16.0",
3
+ "version": "59.18.0",
4
4
  "license": "SEE LICENSE IN LICENSE",
5
5
  "description": "VertiGIS Viewer Specification",
6
6
  "type": "module",
package/version.d.ts CHANGED
@@ -1,4 +1,4 @@
1
1
  /**
2
2
  * The current version of the VertiGIS Studio Viewer Specification.
3
3
  */
4
- export declare const version = "59.16.0";
4
+ export declare const version = "59.18.0";
package/version.js CHANGED
@@ -1,4 +1,4 @@
1
1
  /**
2
2
  * The current version of the VertiGIS Studio Viewer Specification.
3
3
  */
4
- export const version = "59.16.0";
4
+ export const version = "59.18.0";