@vertigis/viewer-spec 59.5.0 → 59.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/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/messaging/registry/printing.d.ts +744 -7
- package/messaging/registry/printing.js +1 -1
- package/messaging/schema/common-action.schema.json +528 -25
- package/messaging/schema/common-event.schema.json +503 -0
- package/messaging/schema/mobile-action.schema.json +528 -25
- package/messaging/schema/mobile-event.schema.json +503 -0
- package/messaging/schema/web-action.schema.json +537 -25
- package/messaging/schema/web-event.schema.json +1797 -44
- package/package.json +2 -2
- package/version.d.ts +1 -1
- package/version.js +1 -1
|
@@ -1076,6 +1076,9 @@
|
|
|
1076
1076
|
{
|
|
1077
1077
|
"$ref": "#/definitions/esri.rest-api.KMLLayerJson.KMLLayerJson"
|
|
1078
1078
|
},
|
|
1079
|
+
{
|
|
1080
|
+
"$ref": "#/definitions/esri.rest-api.MediaLayerJson.MediaLayerJson"
|
|
1081
|
+
},
|
|
1079
1082
|
{
|
|
1080
1083
|
"$ref": "#/definitions/esri.rest-api.MapServiceLayerJson.MapServiceLayerJson"
|
|
1081
1084
|
},
|
|
@@ -5374,25 +5377,6 @@
|
|
|
5374
5377
|
],
|
|
5375
5378
|
"description": "One or more objects that are convertible to layer extensions."
|
|
5376
5379
|
},
|
|
5377
|
-
"LayoutExportFormats": {
|
|
5378
|
-
"description": "The export formats allowed for the layout print.",
|
|
5379
|
-
"enum": [
|
|
5380
|
-
"AIX",
|
|
5381
|
-
"BMP",
|
|
5382
|
-
"EPS",
|
|
5383
|
-
"GIF",
|
|
5384
|
-
"JPG",
|
|
5385
|
-
"MF",
|
|
5386
|
-
"PDF",
|
|
5387
|
-
"PNG",
|
|
5388
|
-
"PNG32",
|
|
5389
|
-
"SVG",
|
|
5390
|
-
"SVGZ",
|
|
5391
|
-
"TGA",
|
|
5392
|
-
"TIFF"
|
|
5393
|
-
],
|
|
5394
|
-
"type": "string"
|
|
5395
|
-
},
|
|
5396
5380
|
"LengthMeasurementUnits": {
|
|
5397
5381
|
"description": "The units for length measurements supported by ArcGIS.",
|
|
5398
5382
|
"enum": [
|
|
@@ -5860,6 +5844,9 @@
|
|
|
5860
5844
|
{
|
|
5861
5845
|
"$ref": "#/definitions/esri.rest-api.KMLLayerJson.KMLLayerJson"
|
|
5862
5846
|
},
|
|
5847
|
+
{
|
|
5848
|
+
"$ref": "#/definitions/esri.rest-api.MediaLayerJson.MediaLayerJson"
|
|
5849
|
+
},
|
|
5863
5850
|
{
|
|
5864
5851
|
"$ref": "#/definitions/esri.rest-api.MapServiceLayerJson.MapServiceLayerJson"
|
|
5865
5852
|
},
|
|
@@ -5946,6 +5933,9 @@
|
|
|
5946
5933
|
{
|
|
5947
5934
|
"$ref": "#/definitions/esri.rest-api.KMLLayerJson.KMLLayerJson"
|
|
5948
5935
|
},
|
|
5936
|
+
{
|
|
5937
|
+
"$ref": "#/definitions/esri.rest-api.MediaLayerJson.MediaLayerJson"
|
|
5938
|
+
},
|
|
5949
5939
|
{
|
|
5950
5940
|
"$ref": "#/definitions/esri.rest-api.MapServiceLayerJson.MapServiceLayerJson"
|
|
5951
5941
|
},
|
|
@@ -6044,6 +6034,25 @@
|
|
|
6044
6034
|
"description": "A username for a particular ArcGIS Portal User.",
|
|
6045
6035
|
"type": "string"
|
|
6046
6036
|
},
|
|
6037
|
+
"PrintOutputFormat": {
|
|
6038
|
+
"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.",
|
|
6039
|
+
"enum": [
|
|
6040
|
+
"AIX",
|
|
6041
|
+
"BMP",
|
|
6042
|
+
"EMF",
|
|
6043
|
+
"EPS",
|
|
6044
|
+
"GIF",
|
|
6045
|
+
"JPG",
|
|
6046
|
+
"PDF",
|
|
6047
|
+
"PNG",
|
|
6048
|
+
"PNG32",
|
|
6049
|
+
"SVG",
|
|
6050
|
+
"SVGZ",
|
|
6051
|
+
"TGA",
|
|
6052
|
+
"TIFF"
|
|
6053
|
+
],
|
|
6054
|
+
"type": "string"
|
|
6055
|
+
},
|
|
6047
6056
|
"ProjectArgs": {
|
|
6048
6057
|
"additionalProperties": false,
|
|
6049
6058
|
"description": "Arguments for the geometry.project operation.",
|
|
@@ -6490,16 +6499,12 @@
|
|
|
6490
6499
|
},
|
|
6491
6500
|
"RunLayoutPrintArgs": {
|
|
6492
6501
|
"additionalProperties": false,
|
|
6493
|
-
"description": "The arguments required by the printing.run command when printing with ArcGIS Pro layouts.",
|
|
6502
|
+
"description": "The arguments required by the printing.run command when printing with VertiGIS Studio ArcGIS Pro layouts or -layout packages (printing gen2).",
|
|
6494
6503
|
"properties": {
|
|
6495
6504
|
"dpi": {
|
|
6496
6505
|
"description": "The DPI with which to print.",
|
|
6497
6506
|
"type": "number"
|
|
6498
6507
|
},
|
|
6499
|
-
"exportFormat": {
|
|
6500
|
-
"$ref": "#/definitions/LayoutExportFormats",
|
|
6501
|
-
"description": "The export format of the layout print."
|
|
6502
|
-
},
|
|
6503
6508
|
"extent": {
|
|
6504
6509
|
"$ref": "#/definitions/esri.Extent",
|
|
6505
6510
|
"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."
|
|
@@ -6520,6 +6525,10 @@
|
|
|
6520
6525
|
"$ref": "MapsLike",
|
|
6521
6526
|
"description": "The map(s) to print."
|
|
6522
6527
|
},
|
|
6528
|
+
"outputFormat": {
|
|
6529
|
+
"$ref": "#/definitions/PrintOutputFormat",
|
|
6530
|
+
"description": "The print output format."
|
|
6531
|
+
},
|
|
6523
6532
|
"parameters": {
|
|
6524
6533
|
"$ref": "#/definitions/JobParameters",
|
|
6525
6534
|
"description": "Additional parameters used in the print template, specified as key-value pairs."
|
|
@@ -6553,7 +6562,7 @@
|
|
|
6553
6562
|
},
|
|
6554
6563
|
"RunPrintArgs": {
|
|
6555
6564
|
"additionalProperties": false,
|
|
6556
|
-
"description": "The arguments required by the printing.run command when printing with templates.",
|
|
6565
|
+
"description": "The arguments required by the printing.run command when printing with templates (printing gen1).",
|
|
6557
6566
|
"properties": {
|
|
6558
6567
|
"dpi": {
|
|
6559
6568
|
"description": "The DPI with which to print.",
|
|
@@ -10253,6 +10262,20 @@
|
|
|
10253
10262
|
"description": "Determines whether the layer is initially visible in the web map.",
|
|
10254
10263
|
"type": "boolean"
|
|
10255
10264
|
},
|
|
10265
|
+
"visibilityTimeExtent": {
|
|
10266
|
+
"description": "Represents time extent that will control when a layer should be visible based on webmap's current time. Visibility time extent only affects the layer visibility and will not filter the data.",
|
|
10267
|
+
"items": [
|
|
10268
|
+
{
|
|
10269
|
+
"type": "number"
|
|
10270
|
+
},
|
|
10271
|
+
{
|
|
10272
|
+
"type": "number"
|
|
10273
|
+
}
|
|
10274
|
+
],
|
|
10275
|
+
"maxItems": 2,
|
|
10276
|
+
"minItems": 2,
|
|
10277
|
+
"type": "array"
|
|
10278
|
+
},
|
|
10256
10279
|
"visibleLayers": {
|
|
10257
10280
|
"description": "An array of sublayer ids that should appear visible. These ids refer to subsets of the Annotation features in the AnnotationLayer, identified by their AnnotationClassId.",
|
|
10258
10281
|
"items": {
|
|
@@ -10432,6 +10455,20 @@
|
|
|
10432
10455
|
"visibility": {
|
|
10433
10456
|
"description": "Determines whether the layer is initially visible in the web map.",
|
|
10434
10457
|
"type": "boolean"
|
|
10458
|
+
},
|
|
10459
|
+
"visibilityTimeExtent": {
|
|
10460
|
+
"description": "Represents time extent that will control when a layer should be visible based on webmap's current time. Visibility time extent only affects the layer visibility and will not filter the data.",
|
|
10461
|
+
"items": [
|
|
10462
|
+
{
|
|
10463
|
+
"type": "number"
|
|
10464
|
+
},
|
|
10465
|
+
{
|
|
10466
|
+
"type": "number"
|
|
10467
|
+
}
|
|
10468
|
+
],
|
|
10469
|
+
"maxItems": 2,
|
|
10470
|
+
"minItems": 2,
|
|
10471
|
+
"type": "array"
|
|
10435
10472
|
}
|
|
10436
10473
|
},
|
|
10437
10474
|
"required": [
|
|
@@ -10731,6 +10768,20 @@
|
|
|
10731
10768
|
"visibility": {
|
|
10732
10769
|
"description": "Determines whether the layer is initially visible in the web map.",
|
|
10733
10770
|
"type": "boolean"
|
|
10771
|
+
},
|
|
10772
|
+
"visibilityTimeExtent": {
|
|
10773
|
+
"description": "Represents time extent that will control when a layer should be visible based on webmap's current time. Visibility time extent only affects the layer visibility and will not filter the data.",
|
|
10774
|
+
"items": [
|
|
10775
|
+
{
|
|
10776
|
+
"type": "number"
|
|
10777
|
+
},
|
|
10778
|
+
{
|
|
10779
|
+
"type": "number"
|
|
10780
|
+
}
|
|
10781
|
+
],
|
|
10782
|
+
"maxItems": 2,
|
|
10783
|
+
"minItems": 2,
|
|
10784
|
+
"type": "array"
|
|
10734
10785
|
}
|
|
10735
10786
|
},
|
|
10736
10787
|
"required": [
|
|
@@ -11356,6 +11407,20 @@
|
|
|
11356
11407
|
"description": "Determines whether the layer is initially visible in the web map.",
|
|
11357
11408
|
"type": "boolean"
|
|
11358
11409
|
},
|
|
11410
|
+
"visibilityTimeExtent": {
|
|
11411
|
+
"description": "Represents time extent that will control when a layer should be visible based on webmap's current time. Visibility time extent only affects the layer visibility and will not filter the data.",
|
|
11412
|
+
"items": [
|
|
11413
|
+
{
|
|
11414
|
+
"type": "number"
|
|
11415
|
+
},
|
|
11416
|
+
{
|
|
11417
|
+
"type": "number"
|
|
11418
|
+
}
|
|
11419
|
+
],
|
|
11420
|
+
"maxItems": 2,
|
|
11421
|
+
"minItems": 2,
|
|
11422
|
+
"type": "array"
|
|
11423
|
+
},
|
|
11359
11424
|
"visibleLayers": {
|
|
11360
11425
|
"description": "An array of sublayer ids that should appear visible. Used with feature layers that are based on feature collections.",
|
|
11361
11426
|
"items": {
|
|
@@ -12006,6 +12071,20 @@
|
|
|
12006
12071
|
"visibility": {
|
|
12007
12072
|
"description": "Determines whether the layer is initially visible in the web map.",
|
|
12008
12073
|
"type": "boolean"
|
|
12074
|
+
},
|
|
12075
|
+
"visibilityTimeExtent": {
|
|
12076
|
+
"description": "Represents time extent that will control when a layer should be visible based on webmap's current time. Visibility time extent only affects the layer visibility and will not filter the data.",
|
|
12077
|
+
"items": [
|
|
12078
|
+
{
|
|
12079
|
+
"type": "number"
|
|
12080
|
+
},
|
|
12081
|
+
{
|
|
12082
|
+
"type": "number"
|
|
12083
|
+
}
|
|
12084
|
+
],
|
|
12085
|
+
"maxItems": 2,
|
|
12086
|
+
"minItems": 2,
|
|
12087
|
+
"type": "array"
|
|
12009
12088
|
}
|
|
12010
12089
|
},
|
|
12011
12090
|
"required": [
|
|
@@ -12133,6 +12212,20 @@
|
|
|
12133
12212
|
"visibility": {
|
|
12134
12213
|
"description": "Determines whether the layer is initially visible in the web map.",
|
|
12135
12214
|
"type": "boolean"
|
|
12215
|
+
},
|
|
12216
|
+
"visibilityTimeExtent": {
|
|
12217
|
+
"description": "Represents time extent that will control when a layer should be visible based on webmap's current time. Visibility time extent only affects the layer visibility and will not filter the data.",
|
|
12218
|
+
"items": [
|
|
12219
|
+
{
|
|
12220
|
+
"type": "number"
|
|
12221
|
+
},
|
|
12222
|
+
{
|
|
12223
|
+
"type": "number"
|
|
12224
|
+
}
|
|
12225
|
+
],
|
|
12226
|
+
"maxItems": 2,
|
|
12227
|
+
"minItems": 2,
|
|
12228
|
+
"type": "array"
|
|
12136
12229
|
}
|
|
12137
12230
|
},
|
|
12138
12231
|
"required": [
|
|
@@ -12429,6 +12522,20 @@
|
|
|
12429
12522
|
"inherited"
|
|
12430
12523
|
],
|
|
12431
12524
|
"type": "string"
|
|
12525
|
+
},
|
|
12526
|
+
"visibilityTimeExtent": {
|
|
12527
|
+
"description": "Represents time extent that will control when a layer should be visible based on webmap's current time. Visibility time extent only affects the layer visibility and will not filter the data.",
|
|
12528
|
+
"items": [
|
|
12529
|
+
{
|
|
12530
|
+
"type": "number"
|
|
12531
|
+
},
|
|
12532
|
+
{
|
|
12533
|
+
"type": "number"
|
|
12534
|
+
}
|
|
12535
|
+
],
|
|
12536
|
+
"maxItems": 2,
|
|
12537
|
+
"minItems": 2,
|
|
12538
|
+
"type": "array"
|
|
12432
12539
|
}
|
|
12433
12540
|
},
|
|
12434
12541
|
"required": [
|
|
@@ -12630,6 +12737,20 @@
|
|
|
12630
12737
|
"visibility": {
|
|
12631
12738
|
"description": "Determines whether the layer is initially visible in the web map.",
|
|
12632
12739
|
"type": "boolean"
|
|
12740
|
+
},
|
|
12741
|
+
"visibilityTimeExtent": {
|
|
12742
|
+
"description": "Represents time extent that will control when a layer should be visible based on webmap's current time. Visibility time extent only affects the layer visibility and will not filter the data.",
|
|
12743
|
+
"items": [
|
|
12744
|
+
{
|
|
12745
|
+
"type": "number"
|
|
12746
|
+
},
|
|
12747
|
+
{
|
|
12748
|
+
"type": "number"
|
|
12749
|
+
}
|
|
12750
|
+
],
|
|
12751
|
+
"maxItems": 2,
|
|
12752
|
+
"minItems": 2,
|
|
12753
|
+
"type": "array"
|
|
12633
12754
|
}
|
|
12634
12755
|
},
|
|
12635
12756
|
"required": [
|
|
@@ -12814,6 +12935,20 @@
|
|
|
12814
12935
|
"visibility": {
|
|
12815
12936
|
"description": "Determines whether the layer is initially visible in the web map.",
|
|
12816
12937
|
"type": "boolean"
|
|
12938
|
+
},
|
|
12939
|
+
"visibilityTimeExtent": {
|
|
12940
|
+
"description": "Represents time extent that will control when a layer should be visible based on webmap's current time. Visibility time extent only affects the layer visibility and will not filter the data.",
|
|
12941
|
+
"items": [
|
|
12942
|
+
{
|
|
12943
|
+
"type": "number"
|
|
12944
|
+
},
|
|
12945
|
+
{
|
|
12946
|
+
"type": "number"
|
|
12947
|
+
}
|
|
12948
|
+
],
|
|
12949
|
+
"maxItems": 2,
|
|
12950
|
+
"minItems": 2,
|
|
12951
|
+
"type": "array"
|
|
12817
12952
|
}
|
|
12818
12953
|
},
|
|
12819
12954
|
"required": [
|
|
@@ -12935,6 +13070,20 @@
|
|
|
12935
13070
|
"visibility": {
|
|
12936
13071
|
"description": "Determines whether the layer is initially visible in the web map.",
|
|
12937
13072
|
"type": "boolean"
|
|
13073
|
+
},
|
|
13074
|
+
"visibilityTimeExtent": {
|
|
13075
|
+
"description": "Represents time extent that will control when a layer should be visible based on webmap's current time. Visibility time extent only affects the layer visibility and will not filter the data.",
|
|
13076
|
+
"items": [
|
|
13077
|
+
{
|
|
13078
|
+
"type": "number"
|
|
13079
|
+
},
|
|
13080
|
+
{
|
|
13081
|
+
"type": "number"
|
|
13082
|
+
}
|
|
13083
|
+
],
|
|
13084
|
+
"maxItems": 2,
|
|
13085
|
+
"minItems": 2,
|
|
13086
|
+
"type": "array"
|
|
12938
13087
|
}
|
|
12939
13088
|
},
|
|
12940
13089
|
"required": [
|
|
@@ -13284,6 +13433,20 @@
|
|
|
13284
13433
|
"description": "Determines whether the layer is initially visible in the web map.",
|
|
13285
13434
|
"type": "boolean"
|
|
13286
13435
|
},
|
|
13436
|
+
"visibilityTimeExtent": {
|
|
13437
|
+
"description": "Represents time extent that will control when a layer should be visible based on webmap's current time. Visibility time extent only affects the layer visibility and will not filter the data.",
|
|
13438
|
+
"items": [
|
|
13439
|
+
{
|
|
13440
|
+
"type": "number"
|
|
13441
|
+
},
|
|
13442
|
+
{
|
|
13443
|
+
"type": "number"
|
|
13444
|
+
}
|
|
13445
|
+
],
|
|
13446
|
+
"maxItems": 2,
|
|
13447
|
+
"minItems": 2,
|
|
13448
|
+
"type": "array"
|
|
13449
|
+
},
|
|
13287
13450
|
"visibleFolders": {
|
|
13288
13451
|
"description": "Array of numeric IDs of folders that will be made visible.",
|
|
13289
13452
|
"items": {
|
|
@@ -14375,6 +14538,20 @@
|
|
|
14375
14538
|
"description": "Determines whether the layer is initially visible in the web map.",
|
|
14376
14539
|
"type": "boolean"
|
|
14377
14540
|
},
|
|
14541
|
+
"visibilityTimeExtent": {
|
|
14542
|
+
"description": "Represents time extent that will control when a layer should be visible based on webmap's current time. Visibility time extent only affects the layer visibility and will not filter the data.",
|
|
14543
|
+
"items": [
|
|
14544
|
+
{
|
|
14545
|
+
"type": "number"
|
|
14546
|
+
},
|
|
14547
|
+
{
|
|
14548
|
+
"type": "number"
|
|
14549
|
+
}
|
|
14550
|
+
],
|
|
14551
|
+
"maxItems": 2,
|
|
14552
|
+
"minItems": 2,
|
|
14553
|
+
"type": "array"
|
|
14554
|
+
},
|
|
14378
14555
|
"visibleLayers": {
|
|
14379
14556
|
"description": "An array of layers that should appear visible. Used with ArcGIS map services that are not tiled in addition to WMS layers. Array of items of the following types: Number With ArcGIS map services, the array contains integers of the index positions of each visible layer.",
|
|
14380
14557
|
"items": {
|
|
@@ -14388,6 +14565,184 @@
|
|
|
14388
14565
|
],
|
|
14389
14566
|
"type": "object"
|
|
14390
14567
|
},
|
|
14568
|
+
"esri.rest-api.MediaLayerJson.GeoreferenceJson": {
|
|
14569
|
+
"additionalProperties": false,
|
|
14570
|
+
"description": "The georeference used to place a media in a MediaLayer.\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/mediaLayer_georeference/} {@link https://developers.arcgis.com/web-scene-specification/objects/mediaLayer_georeference/}.",
|
|
14571
|
+
"properties": {
|
|
14572
|
+
"coefficients": {
|
|
14573
|
+
"description": "An array of 8 coefficients representing the projective transformation..",
|
|
14574
|
+
"items": {
|
|
14575
|
+
"type": "number"
|
|
14576
|
+
},
|
|
14577
|
+
"type": "array"
|
|
14578
|
+
},
|
|
14579
|
+
"controlPoints": {
|
|
14580
|
+
"description": "An array of 4 user defined control points placed on the media..",
|
|
14581
|
+
"items": {
|
|
14582
|
+
"$ref": "__type"
|
|
14583
|
+
},
|
|
14584
|
+
"type": "array"
|
|
14585
|
+
},
|
|
14586
|
+
"height": {
|
|
14587
|
+
"description": "Numeric value indicating the height of media in pixels.",
|
|
14588
|
+
"type": "number"
|
|
14589
|
+
},
|
|
14590
|
+
"spatialReference": {
|
|
14591
|
+
"$ref": "#/definitions/esri.rest-api.SpatialReferenceJson.SpatialReferenceJson",
|
|
14592
|
+
"description": "Image format of the cached tiles."
|
|
14593
|
+
},
|
|
14594
|
+
"width": {
|
|
14595
|
+
"description": "Numeric value indicating the width of media in pixels.",
|
|
14596
|
+
"type": "number"
|
|
14597
|
+
}
|
|
14598
|
+
},
|
|
14599
|
+
"type": "object"
|
|
14600
|
+
},
|
|
14601
|
+
"esri.rest-api.MediaLayerJson.MediaLayerJson": {
|
|
14602
|
+
"additionalProperties": false,
|
|
14603
|
+
"description": "The MediaLayer is used to add image and video elements to the map at a specified geographic location. This layer can be used to display old scanned maps, weather data, satellite imagery, aerial and drone images, fantasy images and video feedback, etc. The geographic location of the image or video can be set using the extent and rotation, corner points or control points.\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/mediaLayer/} {@link https://developers.arcgis.com/web-scene-specification/objects/mediaLayer/}.",
|
|
14604
|
+
"properties": {
|
|
14605
|
+
"blendMode": {
|
|
14606
|
+
"description": "Blend modes are used to blend layers together to create an interesting effect in a layer, or even to produce what seems like a new layer.",
|
|
14607
|
+
"enum": [
|
|
14608
|
+
"average",
|
|
14609
|
+
"color",
|
|
14610
|
+
"color-burn",
|
|
14611
|
+
"color-dodge",
|
|
14612
|
+
"darken",
|
|
14613
|
+
"destination-atop",
|
|
14614
|
+
"destination-in",
|
|
14615
|
+
"destination-out",
|
|
14616
|
+
"destination-over",
|
|
14617
|
+
"difference",
|
|
14618
|
+
"exclusion",
|
|
14619
|
+
"hard-light",
|
|
14620
|
+
"hue",
|
|
14621
|
+
"invert",
|
|
14622
|
+
"lighten",
|
|
14623
|
+
"lighter",
|
|
14624
|
+
"luminosity",
|
|
14625
|
+
"minus",
|
|
14626
|
+
"multiply",
|
|
14627
|
+
"normal",
|
|
14628
|
+
"overlay",
|
|
14629
|
+
"plus",
|
|
14630
|
+
"reflect",
|
|
14631
|
+
"saturation",
|
|
14632
|
+
"screen",
|
|
14633
|
+
"soft-light",
|
|
14634
|
+
"source-atop",
|
|
14635
|
+
"source-in",
|
|
14636
|
+
"source-out",
|
|
14637
|
+
"vivid-light",
|
|
14638
|
+
"xor"
|
|
14639
|
+
],
|
|
14640
|
+
"type": "string"
|
|
14641
|
+
},
|
|
14642
|
+
"effect": {
|
|
14643
|
+
"$ref": "#/definitions/EffectJson",
|
|
14644
|
+
"description": "Effect provides various filter functions to achieve different visual effects similar to how image filters (photo apps) work."
|
|
14645
|
+
},
|
|
14646
|
+
"georeference": {
|
|
14647
|
+
"$ref": "#/definitions/esri.rest-api.MediaLayerJson.GeoreferenceJson",
|
|
14648
|
+
"description": "Attribution to the Web Tile Layer provider. It is displayed in the attribution on the web map. Input required by the user when the layer is added to the web map."
|
|
14649
|
+
},
|
|
14650
|
+
"id": {
|
|
14651
|
+
"description": "A unique identifying string for the layer.",
|
|
14652
|
+
"type": "string"
|
|
14653
|
+
},
|
|
14654
|
+
"itemId": {
|
|
14655
|
+
"description": "Optional string containing the item ID of the Media Layer item registered on ArcGIS Online or your organization's portal.",
|
|
14656
|
+
"type": "string"
|
|
14657
|
+
},
|
|
14658
|
+
"layerType": {
|
|
14659
|
+
"const": "MediaLayer",
|
|
14660
|
+
"description": "The type of layer.",
|
|
14661
|
+
"type": "string"
|
|
14662
|
+
},
|
|
14663
|
+
"listMode": {
|
|
14664
|
+
"description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}.",
|
|
14665
|
+
"enum": [
|
|
14666
|
+
"hide",
|
|
14667
|
+
"hide-children",
|
|
14668
|
+
"show"
|
|
14669
|
+
],
|
|
14670
|
+
"type": "string"
|
|
14671
|
+
},
|
|
14672
|
+
"maxScale": {
|
|
14673
|
+
"description": "A number representing the maximum scale at which the layer will be visible. The number is the scale's denominator; thus, a value of 2400 represents a scale of 1/2,400. A value of 0 indicates that the layer will be visible no matter how far you zoom in.",
|
|
14674
|
+
"type": "number"
|
|
14675
|
+
},
|
|
14676
|
+
"mediaType": {
|
|
14677
|
+
"description": "Indicates the type of media that the url points to. The currently supported media types are image and video. Images must be in JPEG or PNG format. For supported video formats, please refer to the MDN video codec guide. 'mediaType' is applicable only when the url is defined.",
|
|
14678
|
+
"enum": [
|
|
14679
|
+
"image",
|
|
14680
|
+
"video"
|
|
14681
|
+
],
|
|
14682
|
+
"type": "string"
|
|
14683
|
+
},
|
|
14684
|
+
"minScale": {
|
|
14685
|
+
"description": "A number representing the minimum scale at which the layer will be visible. The number is the scale's denominator; thus, a value of 2400 represents a scale of 1/2,400.",
|
|
14686
|
+
"type": "number"
|
|
14687
|
+
},
|
|
14688
|
+
"opacity": {
|
|
14689
|
+
"description": "The degree of transparency applied to the layer on the client side, where\n0 is full transparency and 1 is no transparency.",
|
|
14690
|
+
"type": "number"
|
|
14691
|
+
},
|
|
14692
|
+
"refreshInterval": {
|
|
14693
|
+
"description": "When the refresh interval is set on a layer, the client must refresh that layer only, not the entire web map. The default value is '0', meaning the no refresh. You can enable a refresh interval on the following types of layers: ArcGIS Server web service, hosted feature layer, hosted tile layer, OGC WMS, OGS WMTS, tile layer, GeoRSS, Living Atlas layers, basemaps (including Bing Maps basemaps), CSV from the web with latitude and longitude fields, and KML when added to ArcGIS Online through the My Content page. See {@link https://doc.arcgis.com/en/arcgis-online/create-maps/set-refresh-interval.htm}.",
|
|
14694
|
+
"type": "number"
|
|
14695
|
+
},
|
|
14696
|
+
"showLegend": {
|
|
14697
|
+
"description": "Indicates whether to allow map authors the ability to control what layers should be shown in a client's legend.",
|
|
14698
|
+
"type": "boolean"
|
|
14699
|
+
},
|
|
14700
|
+
"title": {
|
|
14701
|
+
"description": "A user-friendly title for the layer that can be used in a table of contents. If this is not included, then a title is derived from the service.",
|
|
14702
|
+
"type": "string"
|
|
14703
|
+
},
|
|
14704
|
+
"type": {
|
|
14705
|
+
"description": "(Deprecated, use layerType instead.) If the layer is referenced through a URL, but is not an ArcGIS web service, then this parameter can be supplied to denote the layer type.",
|
|
14706
|
+
"enum": [
|
|
14707
|
+
"BingMapsAerial",
|
|
14708
|
+
"BingMapsHybrid",
|
|
14709
|
+
"BingMapsRoad",
|
|
14710
|
+
"CSV",
|
|
14711
|
+
"KML",
|
|
14712
|
+
"OpenStreetMap",
|
|
14713
|
+
"WMS",
|
|
14714
|
+
"WebTiledLayer"
|
|
14715
|
+
],
|
|
14716
|
+
"type": "string"
|
|
14717
|
+
},
|
|
14718
|
+
"url": {
|
|
14719
|
+
"description": "Url URL to the media file. It is not applicable when itemId is defined. The url is relative when the media file is stored as an item resource. Relative urls are only applicable for image media types. Video media types only support external video urls at this time. See related mediaType property.",
|
|
14720
|
+
"type": "string"
|
|
14721
|
+
},
|
|
14722
|
+
"visibility": {
|
|
14723
|
+
"description": "Determines whether the layer is initially visible in the web map.",
|
|
14724
|
+
"type": "boolean"
|
|
14725
|
+
},
|
|
14726
|
+
"visibilityTimeExtent": {
|
|
14727
|
+
"description": "Represents time extent that will control when a layer should be visible based on webmap's current time. Visibility time extent only affects the layer visibility and will not filter the data.",
|
|
14728
|
+
"items": [
|
|
14729
|
+
{
|
|
14730
|
+
"type": "number"
|
|
14731
|
+
},
|
|
14732
|
+
{
|
|
14733
|
+
"type": "number"
|
|
14734
|
+
}
|
|
14735
|
+
],
|
|
14736
|
+
"maxItems": 2,
|
|
14737
|
+
"minItems": 2,
|
|
14738
|
+
"type": "array"
|
|
14739
|
+
}
|
|
14740
|
+
},
|
|
14741
|
+
"required": [
|
|
14742
|
+
"layerType"
|
|
14743
|
+
],
|
|
14744
|
+
"type": "object"
|
|
14745
|
+
},
|
|
14391
14746
|
"esri.rest-api.MosaicRuleJson.MosaicRuleJson": {
|
|
14392
14747
|
"additionalProperties": false,
|
|
14393
14748
|
"description": "Specifies the mosaic rule when defining how individual images should be mosaiced. It specifies selection, mosaic method, sort order, overlapping pixel resolution, etc. Mosaic rules are for mosaicing rasters in the mosaic dataset.\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/mosaicRule/} {@link https://developers.arcgis.com/web-scene-specification/objects/mosaicRule/}.",
|
|
@@ -14505,6 +14860,9 @@
|
|
|
14505
14860
|
{
|
|
14506
14861
|
"$ref": "#/definitions/esri.rest-api.KMLLayerJson.KMLLayerJson"
|
|
14507
14862
|
},
|
|
14863
|
+
{
|
|
14864
|
+
"$ref": "#/definitions/esri.rest-api.MediaLayerJson.MediaLayerJson"
|
|
14865
|
+
},
|
|
14508
14866
|
{
|
|
14509
14867
|
"$ref": "#/definitions/esri.rest-api.MapServiceLayerJson.MapServiceLayerJson"
|
|
14510
14868
|
},
|
|
@@ -14661,6 +15019,20 @@
|
|
|
14661
15019
|
"visibility": {
|
|
14662
15020
|
"description": "Determines whether the layer is initially visible in the web map.",
|
|
14663
15021
|
"type": "boolean"
|
|
15022
|
+
},
|
|
15023
|
+
"visibilityTimeExtent": {
|
|
15024
|
+
"description": "Represents time extent that will control when a layer should be visible based on webmap's current time. Visibility time extent only affects the layer visibility and will not filter the data.",
|
|
15025
|
+
"items": [
|
|
15026
|
+
{
|
|
15027
|
+
"type": "number"
|
|
15028
|
+
},
|
|
15029
|
+
{
|
|
15030
|
+
"type": "number"
|
|
15031
|
+
}
|
|
15032
|
+
],
|
|
15033
|
+
"maxItems": 2,
|
|
15034
|
+
"minItems": 2,
|
|
15035
|
+
"type": "array"
|
|
14664
15036
|
}
|
|
14665
15037
|
},
|
|
14666
15038
|
"required": [
|
|
@@ -16540,6 +16912,20 @@
|
|
|
16540
16912
|
"visibility": {
|
|
16541
16913
|
"description": "Determines whether the layer is initially visible in the web map.",
|
|
16542
16914
|
"type": "boolean"
|
|
16915
|
+
},
|
|
16916
|
+
"visibilityTimeExtent": {
|
|
16917
|
+
"description": "Represents time extent that will control when a layer should be visible based on webmap's current time. Visibility time extent only affects the layer visibility and will not filter the data.",
|
|
16918
|
+
"items": [
|
|
16919
|
+
{
|
|
16920
|
+
"type": "number"
|
|
16921
|
+
},
|
|
16922
|
+
{
|
|
16923
|
+
"type": "number"
|
|
16924
|
+
}
|
|
16925
|
+
],
|
|
16926
|
+
"maxItems": 2,
|
|
16927
|
+
"minItems": 2,
|
|
16928
|
+
"type": "array"
|
|
16543
16929
|
}
|
|
16544
16930
|
},
|
|
16545
16931
|
"required": [
|
|
@@ -16756,6 +17142,20 @@
|
|
|
16756
17142
|
"description": "Determines whether the layer is initially visible in the web map.",
|
|
16757
17143
|
"type": "boolean"
|
|
16758
17144
|
},
|
|
17145
|
+
"visibilityTimeExtent": {
|
|
17146
|
+
"description": "Represents time extent that will control when a layer should be visible based on webmap's current time. Visibility time extent only affects the layer visibility and will not filter the data.",
|
|
17147
|
+
"items": [
|
|
17148
|
+
{
|
|
17149
|
+
"type": "number"
|
|
17150
|
+
},
|
|
17151
|
+
{
|
|
17152
|
+
"type": "number"
|
|
17153
|
+
}
|
|
17154
|
+
],
|
|
17155
|
+
"maxItems": 2,
|
|
17156
|
+
"minItems": 2,
|
|
17157
|
+
"type": "array"
|
|
17158
|
+
},
|
|
16759
17159
|
"visibleLayers": {
|
|
16760
17160
|
"description": "An array of sublayer ids that should appear visible. Used with feature layers that are based on feature collections.",
|
|
16761
17161
|
"items": {
|
|
@@ -16984,6 +17384,20 @@
|
|
|
16984
17384
|
"visibility": {
|
|
16985
17385
|
"description": "Determines whether the layer is initially visible in the web map.",
|
|
16986
17386
|
"type": "boolean"
|
|
17387
|
+
},
|
|
17388
|
+
"visibilityTimeExtent": {
|
|
17389
|
+
"description": "Represents time extent that will control when a layer should be visible based on webmap's current time. Visibility time extent only affects the layer visibility and will not filter the data.",
|
|
17390
|
+
"items": [
|
|
17391
|
+
{
|
|
17392
|
+
"type": "number"
|
|
17393
|
+
},
|
|
17394
|
+
{
|
|
17395
|
+
"type": "number"
|
|
17396
|
+
}
|
|
17397
|
+
],
|
|
17398
|
+
"maxItems": 2,
|
|
17399
|
+
"minItems": 2,
|
|
17400
|
+
"type": "array"
|
|
16987
17401
|
}
|
|
16988
17402
|
},
|
|
16989
17403
|
"required": [
|
|
@@ -17125,6 +17539,20 @@
|
|
|
17125
17539
|
"visibility": {
|
|
17126
17540
|
"description": "Determines whether the layer is initially visible in the web map.",
|
|
17127
17541
|
"type": "boolean"
|
|
17542
|
+
},
|
|
17543
|
+
"visibilityTimeExtent": {
|
|
17544
|
+
"description": "Represents time extent that will control when a layer should be visible based on webmap's current time. Visibility time extent only affects the layer visibility and will not filter the data.",
|
|
17545
|
+
"items": [
|
|
17546
|
+
{
|
|
17547
|
+
"type": "number"
|
|
17548
|
+
},
|
|
17549
|
+
{
|
|
17550
|
+
"type": "number"
|
|
17551
|
+
}
|
|
17552
|
+
],
|
|
17553
|
+
"maxItems": 2,
|
|
17554
|
+
"minItems": 2,
|
|
17555
|
+
"type": "array"
|
|
17128
17556
|
}
|
|
17129
17557
|
},
|
|
17130
17558
|
"required": [
|
|
@@ -18431,6 +18859,20 @@
|
|
|
18431
18859
|
"visibility": {
|
|
18432
18860
|
"description": "Determines whether the layer is initially visible in the web map.",
|
|
18433
18861
|
"type": "boolean"
|
|
18862
|
+
},
|
|
18863
|
+
"visibilityTimeExtent": {
|
|
18864
|
+
"description": "Represents time extent that will control when a layer should be visible based on webmap's current time. Visibility time extent only affects the layer visibility and will not filter the data.",
|
|
18865
|
+
"items": [
|
|
18866
|
+
{
|
|
18867
|
+
"type": "number"
|
|
18868
|
+
},
|
|
18869
|
+
{
|
|
18870
|
+
"type": "number"
|
|
18871
|
+
}
|
|
18872
|
+
],
|
|
18873
|
+
"maxItems": 2,
|
|
18874
|
+
"minItems": 2,
|
|
18875
|
+
"type": "array"
|
|
18434
18876
|
}
|
|
18435
18877
|
},
|
|
18436
18878
|
"required": [
|
|
@@ -18579,6 +19021,20 @@
|
|
|
18579
19021
|
"visibility": {
|
|
18580
19022
|
"description": "Determines whether the layer is initially visible in the web map.",
|
|
18581
19023
|
"type": "boolean"
|
|
19024
|
+
},
|
|
19025
|
+
"visibilityTimeExtent": {
|
|
19026
|
+
"description": "Represents time extent that will control when a layer should be visible based on webmap's current time. Visibility time extent only affects the layer visibility and will not filter the data.",
|
|
19027
|
+
"items": [
|
|
19028
|
+
{
|
|
19029
|
+
"type": "number"
|
|
19030
|
+
},
|
|
19031
|
+
{
|
|
19032
|
+
"type": "number"
|
|
19033
|
+
}
|
|
19034
|
+
],
|
|
19035
|
+
"maxItems": 2,
|
|
19036
|
+
"minItems": 2,
|
|
19037
|
+
"type": "array"
|
|
18582
19038
|
}
|
|
18583
19039
|
},
|
|
18584
19040
|
"required": [
|
|
@@ -18737,6 +19193,20 @@
|
|
|
18737
19193
|
"visibility": {
|
|
18738
19194
|
"description": "Determines whether the layer is initially visible in the web map.",
|
|
18739
19195
|
"type": "boolean"
|
|
19196
|
+
},
|
|
19197
|
+
"visibilityTimeExtent": {
|
|
19198
|
+
"description": "Represents time extent that will control when a layer should be visible based on webmap's current time. Visibility time extent only affects the layer visibility and will not filter the data.",
|
|
19199
|
+
"items": [
|
|
19200
|
+
{
|
|
19201
|
+
"type": "number"
|
|
19202
|
+
},
|
|
19203
|
+
{
|
|
19204
|
+
"type": "number"
|
|
19205
|
+
}
|
|
19206
|
+
],
|
|
19207
|
+
"maxItems": 2,
|
|
19208
|
+
"minItems": 2,
|
|
19209
|
+
"type": "array"
|
|
18740
19210
|
}
|
|
18741
19211
|
},
|
|
18742
19212
|
"required": [
|
|
@@ -18967,6 +19437,20 @@
|
|
|
18967
19437
|
"description": "Determines whether the layer is initially visible in the web map.",
|
|
18968
19438
|
"type": "boolean"
|
|
18969
19439
|
},
|
|
19440
|
+
"visibilityTimeExtent": {
|
|
19441
|
+
"description": "Represents time extent that will control when a layer should be visible based on webmap's current time. Visibility time extent only affects the layer visibility and will not filter the data.",
|
|
19442
|
+
"items": [
|
|
19443
|
+
{
|
|
19444
|
+
"type": "number"
|
|
19445
|
+
},
|
|
19446
|
+
{
|
|
19447
|
+
"type": "number"
|
|
19448
|
+
}
|
|
19449
|
+
],
|
|
19450
|
+
"maxItems": 2,
|
|
19451
|
+
"minItems": 2,
|
|
19452
|
+
"type": "array"
|
|
19453
|
+
},
|
|
18970
19454
|
"wfsInfo": {
|
|
18971
19455
|
"$ref": "#/definitions/esri.rest-api.WFSLayerJson.WFSInfoJson",
|
|
18972
19456
|
"description": "Object that defines and provides information about layers in a WFS service."
|
|
@@ -19164,6 +19648,20 @@
|
|
|
19164
19648
|
"description": "Determines whether the layer is initially visible in the web map.",
|
|
19165
19649
|
"type": "boolean"
|
|
19166
19650
|
},
|
|
19651
|
+
"visibilityTimeExtent": {
|
|
19652
|
+
"description": "Represents time extent that will control when a layer should be visible based on webmap's current time. Visibility time extent only affects the layer visibility and will not filter the data.",
|
|
19653
|
+
"items": [
|
|
19654
|
+
{
|
|
19655
|
+
"type": "number"
|
|
19656
|
+
},
|
|
19657
|
+
{
|
|
19658
|
+
"type": "number"
|
|
19659
|
+
}
|
|
19660
|
+
],
|
|
19661
|
+
"maxItems": 2,
|
|
19662
|
+
"minItems": 2,
|
|
19663
|
+
"type": "array"
|
|
19664
|
+
},
|
|
19167
19665
|
"visibleLayers": {
|
|
19168
19666
|
"description": "An array of layers that should appear visible. The array contains the names of the visible layers.",
|
|
19169
19667
|
"items": {
|
|
@@ -19407,6 +19905,20 @@
|
|
|
19407
19905
|
"description": "Determines whether the layer is initially visible in the web map.",
|
|
19408
19906
|
"type": "boolean"
|
|
19409
19907
|
},
|
|
19908
|
+
"visibilityTimeExtent": {
|
|
19909
|
+
"description": "Represents time extent that will control when a layer should be visible based on webmap's current time. Visibility time extent only affects the layer visibility and will not filter the data.",
|
|
19910
|
+
"items": [
|
|
19911
|
+
{
|
|
19912
|
+
"type": "number"
|
|
19913
|
+
},
|
|
19914
|
+
{
|
|
19915
|
+
"type": "number"
|
|
19916
|
+
}
|
|
19917
|
+
],
|
|
19918
|
+
"maxItems": 2,
|
|
19919
|
+
"minItems": 2,
|
|
19920
|
+
"type": "array"
|
|
19921
|
+
},
|
|
19410
19922
|
"wmtsInfo": {
|
|
19411
19923
|
"$ref": "#/definitions/esri.rest-api.WebTileLayerJson.WMTSInfoJson",
|
|
19412
19924
|
"description": "An object representing information about this layer if it is a WMTS layer."
|