@vertigis/viewer-spec 56.32.0 → 56.32.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.
@@ -525,6 +525,10 @@
525
525
  "title": {
526
526
  "description": "The layer's title.",
527
527
  "type": "string"
528
+ },
529
+ "url": {
530
+ "description": "The layer's url.",
531
+ "type": "string"
528
532
  }
529
533
  },
530
534
  "type": "object"
@@ -3275,6 +3279,9 @@
3275
3279
  {
3276
3280
  "$ref": "#/definitions/esri.rest-api.WebTileLayerJson.WebTileLayerJson"
3277
3281
  },
3282
+ {
3283
+ "$ref": "#/definitions/esri.rest-api.WFSLayerJson.WFSLayerJson"
3284
+ },
3278
3285
  {
3279
3286
  "$ref": "#/definitions/esri.rest-api.WMSLayerJson.WMSLayerJson"
3280
3287
  }
@@ -5714,6 +5721,10 @@
5714
5721
  "description": "A unique identifying string for the layer.",
5715
5722
  "type": "string"
5716
5723
  },
5724
+ "itemId": {
5725
+ "description": "Optional string containing the item ID of the service if it's registered on ArcGIS Online or your organization's portal.",
5726
+ "type": "string"
5727
+ },
5717
5728
  "layerDefinition": {
5718
5729
  "$ref": "#/definitions/esri.rest-api.LayerDefinitionJson.LayerDefinitionJson",
5719
5730
  "description": "A layerDefinition object defining the attribute schema and drawing information for the layer."
@@ -12283,9 +12294,6 @@
12283
12294
  "type": "number"
12284
12295
  }
12285
12296
  },
12286
- "required": [
12287
- "color"
12288
- ],
12289
12297
  "type": "object"
12290
12298
  },
12291
12299
  "esri.rest-api.SymbolJson.CIMSymbolJson": {
@@ -12330,8 +12338,6 @@
12330
12338
  }
12331
12339
  },
12332
12340
  "required": [
12333
- "color",
12334
- "size",
12335
12341
  "type"
12336
12342
  ],
12337
12343
  "type": "object"
@@ -12619,9 +12625,6 @@
12619
12625
  "type": "number"
12620
12626
  }
12621
12627
  },
12622
- "required": [
12623
- "color"
12624
- ],
12625
12628
  "type": "object"
12626
12629
  },
12627
12630
  "esri.rest-api.SymbolJson.MeshSymbol3DJson": {
@@ -12653,8 +12656,26 @@
12653
12656
  "properties": {
12654
12657
  "anchor": {
12655
12658
  "description": "The positioning of the object relative to the geometry. Must be one of the following values: center, bottom, origin.",
12659
+ "enum": [
12660
+ "bottom",
12661
+ "center",
12662
+ "origin",
12663
+ "relative",
12664
+ "top"
12665
+ ],
12656
12666
  "type": "string"
12657
12667
  },
12668
+ "anchorPosition": {
12669
+ "description": "When anchor equals \"relative\", this property specifies the positioning of the object relative to the geometry as a fraction of the symbol layer's bounding box. Otherwise it is ignored.",
12670
+ "items": {
12671
+ "type": "number"
12672
+ },
12673
+ "type": "array"
12674
+ },
12675
+ "castShadows": {
12676
+ "description": "Boolean to control the shadow casting behavior of the rendered geometries.",
12677
+ "type": "boolean"
12678
+ },
12658
12679
  "depth": {
12659
12680
  "description": "Object depth in meters, positive only.",
12660
12681
  "type": "number"
@@ -12715,10 +12736,6 @@
12715
12736
  "type": "number"
12716
12737
  }
12717
12738
  },
12718
- "required": [
12719
- "color",
12720
- "size"
12721
- ],
12722
12739
  "type": "object"
12723
12740
  },
12724
12741
  "esri.rest-api.SymbolJson.PathSymbol3DLayerJson": {
@@ -13921,6 +13938,189 @@
13921
13938
  },
13922
13939
  "type": "object"
13923
13940
  },
13941
+ "esri.rest-api.WFSLayerJson.WFSInfoJson": {
13942
+ "additionalProperties": false,
13943
+ "description": "Object that defines and provides information about layers in a WFS service. See {@link https://developers.arcgis.com/web-map-specification/objects/wfsInfo/}.",
13944
+ "properties": {
13945
+ "customParameters": {
13946
+ "description": "A sequence of parameters used to append custom parameters to all WFS requests. These parameters are applied to GetCapabilities, DescribeFeatureType, and GetFeatures."
13947
+ },
13948
+ "featureUrl": {
13949
+ "description": "URL of the WFS service operation.",
13950
+ "type": "string"
13951
+ },
13952
+ "maxFeatures": {
13953
+ "description": "Set this to limit the number of requested features that a GetFeature request presents.",
13954
+ "type": "number"
13955
+ },
13956
+ "name": {
13957
+ "description": "The name of the WFS layer. This is used to set layer visibility.",
13958
+ "type": "string"
13959
+ },
13960
+ "supportedSpatialReferences": {
13961
+ "description": "List of supported spatial reference IDs.",
13962
+ "items": {
13963
+ "type": "number"
13964
+ },
13965
+ "type": "array"
13966
+ },
13967
+ "swapXY": {
13968
+ "description": "Boolean value indicating whether X and Y axis are flipped.",
13969
+ "type": "boolean"
13970
+ },
13971
+ "version": {
13972
+ "description": "Value indicating which version of the WFS specification is used.",
13973
+ "type": "string"
13974
+ },
13975
+ "wfsNamespace": {
13976
+ "description": "String indicating namespace.",
13977
+ "type": "string"
13978
+ }
13979
+ },
13980
+ "type": "object"
13981
+ },
13982
+ "esri.rest-api.WFSLayerJson.WFSLayerJson": {
13983
+ "additionalProperties": false,
13984
+ "description": "OGC Web Feature Service (WFS) is a dynamic feature service that follows the specifications of OGC. See {@link https://developers.arcgis.com/web-map-specification/objects/wfsLayer/} and {@link https://developers.arcgis.com/web-scene-specification/objects/wfsLayer/}.",
13985
+ "properties": {
13986
+ "blendMode": {
13987
+ "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.",
13988
+ "enum": [
13989
+ "average",
13990
+ "color",
13991
+ "color-burn",
13992
+ "color-dodge",
13993
+ "darken",
13994
+ "destination-atop",
13995
+ "destination-in",
13996
+ "destination-out",
13997
+ "destination-over",
13998
+ "difference",
13999
+ "exclusion",
14000
+ "hard-light",
14001
+ "hue",
14002
+ "invert",
14003
+ "lighten",
14004
+ "lighter",
14005
+ "luminosity",
14006
+ "minus",
14007
+ "multiply",
14008
+ "normal",
14009
+ "overlay",
14010
+ "plus",
14011
+ "reflect",
14012
+ "saturation",
14013
+ "screen",
14014
+ "soft-light",
14015
+ "source-atop",
14016
+ "source-in",
14017
+ "source-out",
14018
+ "vivid-light",
14019
+ "xor"
14020
+ ],
14021
+ "type": "string"
14022
+ },
14023
+ "disablePopup": {
14024
+ "description": "Indicates whether to allow a client to ignore popups defined by the service item.",
14025
+ "type": "boolean"
14026
+ },
14027
+ "effect": {
14028
+ "$ref": "#/definitions/esri.rest-api.LayerJson.EffectJson",
14029
+ "description": "Effect provides various filter functions to achieve different visual effects similar to how image filters (photo apps) work."
14030
+ },
14031
+ "id": {
14032
+ "description": "A unique identifying string for the layer.",
14033
+ "type": "string"
14034
+ },
14035
+ "itemId": {
14036
+ "description": "Optional string containing the item ID of the service if it's registered on ArcGIS Online or your organization's portal.",
14037
+ "type": "string"
14038
+ },
14039
+ "layerDefinition": {
14040
+ "$ref": "#/definitions/esri.rest-api.LayerDefinitionJson.LayerDefinitionJson",
14041
+ "description": "A layerDefinition object defining the attribute schema and drawing information for the layer."
14042
+ },
14043
+ "layerType": {
14044
+ "const": "WFS",
14045
+ "description": "The type of layer.",
14046
+ "type": "string"
14047
+ },
14048
+ "listMode": {
14049
+ "$ref": "esri.ListMode",
14050
+ "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}."
14051
+ },
14052
+ "maxScale": {
14053
+ "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.",
14054
+ "type": "number"
14055
+ },
14056
+ "minScale": {
14057
+ "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.",
14058
+ "type": "number"
14059
+ },
14060
+ "mode": {
14061
+ "description": "Number where 0 means 'snapshot' and 1 means 'ondemand'.",
14062
+ "enum": [
14063
+ 0,
14064
+ 1
14065
+ ],
14066
+ "type": "number"
14067
+ },
14068
+ "opacity": {
14069
+ "description": "The degree of transparency applied to the layer on the client side, where 0 is full transparency and 1 is no transparency.",
14070
+ "type": "number"
14071
+ },
14072
+ "popupInfo": {
14073
+ "$ref": "#/definitions/esri.rest-api.PopupInfoJson.PopupInfoJson",
14074
+ "description": "A PopupInfo object defining the content of pop-up windows when you click or query a feature."
14075
+ },
14076
+ "refreshInterval": {
14077
+ "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}.",
14078
+ "type": "number"
14079
+ },
14080
+ "showLabels": {
14081
+ "description": "Indicates whether to display labels for this layer. If true, labels will appear as defined in the labelingInfo property.",
14082
+ "type": "boolean"
14083
+ },
14084
+ "showLegend": {
14085
+ "description": "Indicates whether to allow map authors the ability to control what layers should be shown in a client's legend.",
14086
+ "type": "boolean"
14087
+ },
14088
+ "title": {
14089
+ "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.",
14090
+ "type": "string"
14091
+ },
14092
+ "type": {
14093
+ "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.",
14094
+ "enum": [
14095
+ "BingMapsAerial",
14096
+ "BingMapsHybrid",
14097
+ "BingMapsRoad",
14098
+ "CSV",
14099
+ "KML",
14100
+ "OpenStreetMap",
14101
+ "WMS",
14102
+ "WebTiledLayer"
14103
+ ],
14104
+ "type": "string"
14105
+ },
14106
+ "url": {
14107
+ "description": "The URL to the layer. If the layer is not from a web service but rather a feature collection, than the url property is omitted.",
14108
+ "type": "string"
14109
+ },
14110
+ "visibility": {
14111
+ "description": "Determines whether the layer is initially visible in the web map.",
14112
+ "type": "boolean"
14113
+ },
14114
+ "wfsInfo": {
14115
+ "$ref": "#/definitions/esri.rest-api.WFSLayerJson.WFSInfoJson",
14116
+ "description": "Object that defines and provides information about layers in a WFS service."
14117
+ }
14118
+ },
14119
+ "required": [
14120
+ "layerType"
14121
+ ],
14122
+ "type": "object"
14123
+ },
13924
14124
  "esri.rest-api.WMSLayerJson.WMSLayerJson": {
13925
14125
  "additionalProperties": false,
13926
14126
  "description": "A layer consuming a Web Map Service (WMS). The WMS specification is an international specification for serving and consuming dynamic maps on the web. For additional information on publishing WMS services, please see the ArcGIS Server help. See {@link https://developers.arcgis.com/web-map-specification/objects/wmsLayer/}.",
@@ -1381,6 +1381,9 @@
1381
1381
  {
1382
1382
  "$ref": "#/definitions/esri.rest-api.WebTileLayerJson.WebTileLayerJson"
1383
1383
  },
1384
+ {
1385
+ "$ref": "#/definitions/esri.rest-api.WFSLayerJson.WFSLayerJson"
1386
+ },
1384
1387
  {
1385
1388
  "$ref": "#/definitions/esri.rest-api.WMSLayerJson.WMSLayerJson"
1386
1389
  }
@@ -2671,6 +2674,10 @@
2671
2674
  "description": "A unique identifying string for the layer.",
2672
2675
  "type": "string"
2673
2676
  },
2677
+ "itemId": {
2678
+ "description": "Optional string containing the item ID of the service if it's registered on ArcGIS Online or your organization's portal.",
2679
+ "type": "string"
2680
+ },
2674
2681
  "layerDefinition": {
2675
2682
  "$ref": "#/definitions/esri.rest-api.LayerDefinitionJson.LayerDefinitionJson",
2676
2683
  "description": "A layerDefinition object defining the attribute schema and drawing information for the layer."
@@ -9015,9 +9022,6 @@
9015
9022
  "type": "number"
9016
9023
  }
9017
9024
  },
9018
- "required": [
9019
- "color"
9020
- ],
9021
9025
  "type": "object"
9022
9026
  },
9023
9027
  "esri.rest-api.SymbolJson.CIMSymbolJson": {
@@ -9062,8 +9066,6 @@
9062
9066
  }
9063
9067
  },
9064
9068
  "required": [
9065
- "color",
9066
- "size",
9067
9069
  "type"
9068
9070
  ],
9069
9071
  "type": "object"
@@ -9351,9 +9353,6 @@
9351
9353
  "type": "number"
9352
9354
  }
9353
9355
  },
9354
- "required": [
9355
- "color"
9356
- ],
9357
9356
  "type": "object"
9358
9357
  },
9359
9358
  "esri.rest-api.SymbolJson.MeshSymbol3DJson": {
@@ -9385,8 +9384,26 @@
9385
9384
  "properties": {
9386
9385
  "anchor": {
9387
9386
  "description": "The positioning of the object relative to the geometry. Must be one of the following values: center, bottom, origin.",
9387
+ "enum": [
9388
+ "bottom",
9389
+ "center",
9390
+ "origin",
9391
+ "relative",
9392
+ "top"
9393
+ ],
9388
9394
  "type": "string"
9389
9395
  },
9396
+ "anchorPosition": {
9397
+ "description": "When anchor equals \"relative\", this property specifies the positioning of the object relative to the geometry as a fraction of the symbol layer's bounding box. Otherwise it is ignored.",
9398
+ "items": {
9399
+ "type": "number"
9400
+ },
9401
+ "type": "array"
9402
+ },
9403
+ "castShadows": {
9404
+ "description": "Boolean to control the shadow casting behavior of the rendered geometries.",
9405
+ "type": "boolean"
9406
+ },
9390
9407
  "depth": {
9391
9408
  "description": "Object depth in meters, positive only.",
9392
9409
  "type": "number"
@@ -9447,10 +9464,6 @@
9447
9464
  "type": "number"
9448
9465
  }
9449
9466
  },
9450
- "required": [
9451
- "color",
9452
- "size"
9453
- ],
9454
9467
  "type": "object"
9455
9468
  },
9456
9469
  "esri.rest-api.SymbolJson.PathSymbol3DLayerJson": {
@@ -10608,6 +10621,189 @@
10608
10621
  ],
10609
10622
  "type": "object"
10610
10623
  },
10624
+ "esri.rest-api.WFSLayerJson.WFSInfoJson": {
10625
+ "additionalProperties": false,
10626
+ "description": "Object that defines and provides information about layers in a WFS service. See {@link https://developers.arcgis.com/web-map-specification/objects/wfsInfo/}.",
10627
+ "properties": {
10628
+ "customParameters": {
10629
+ "description": "A sequence of parameters used to append custom parameters to all WFS requests. These parameters are applied to GetCapabilities, DescribeFeatureType, and GetFeatures."
10630
+ },
10631
+ "featureUrl": {
10632
+ "description": "URL of the WFS service operation.",
10633
+ "type": "string"
10634
+ },
10635
+ "maxFeatures": {
10636
+ "description": "Set this to limit the number of requested features that a GetFeature request presents.",
10637
+ "type": "number"
10638
+ },
10639
+ "name": {
10640
+ "description": "The name of the WFS layer. This is used to set layer visibility.",
10641
+ "type": "string"
10642
+ },
10643
+ "supportedSpatialReferences": {
10644
+ "description": "List of supported spatial reference IDs.",
10645
+ "items": {
10646
+ "type": "number"
10647
+ },
10648
+ "type": "array"
10649
+ },
10650
+ "swapXY": {
10651
+ "description": "Boolean value indicating whether X and Y axis are flipped.",
10652
+ "type": "boolean"
10653
+ },
10654
+ "version": {
10655
+ "description": "Value indicating which version of the WFS specification is used.",
10656
+ "type": "string"
10657
+ },
10658
+ "wfsNamespace": {
10659
+ "description": "String indicating namespace.",
10660
+ "type": "string"
10661
+ }
10662
+ },
10663
+ "type": "object"
10664
+ },
10665
+ "esri.rest-api.WFSLayerJson.WFSLayerJson": {
10666
+ "additionalProperties": false,
10667
+ "description": "OGC Web Feature Service (WFS) is a dynamic feature service that follows the specifications of OGC. See {@link https://developers.arcgis.com/web-map-specification/objects/wfsLayer/} and {@link https://developers.arcgis.com/web-scene-specification/objects/wfsLayer/}.",
10668
+ "properties": {
10669
+ "blendMode": {
10670
+ "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.",
10671
+ "enum": [
10672
+ "average",
10673
+ "color",
10674
+ "color-burn",
10675
+ "color-dodge",
10676
+ "darken",
10677
+ "destination-atop",
10678
+ "destination-in",
10679
+ "destination-out",
10680
+ "destination-over",
10681
+ "difference",
10682
+ "exclusion",
10683
+ "hard-light",
10684
+ "hue",
10685
+ "invert",
10686
+ "lighten",
10687
+ "lighter",
10688
+ "luminosity",
10689
+ "minus",
10690
+ "multiply",
10691
+ "normal",
10692
+ "overlay",
10693
+ "plus",
10694
+ "reflect",
10695
+ "saturation",
10696
+ "screen",
10697
+ "soft-light",
10698
+ "source-atop",
10699
+ "source-in",
10700
+ "source-out",
10701
+ "vivid-light",
10702
+ "xor"
10703
+ ],
10704
+ "type": "string"
10705
+ },
10706
+ "disablePopup": {
10707
+ "description": "Indicates whether to allow a client to ignore popups defined by the service item.",
10708
+ "type": "boolean"
10709
+ },
10710
+ "effect": {
10711
+ "$ref": "#/definitions/esri.rest-api.LayerJson.EffectJson",
10712
+ "description": "Effect provides various filter functions to achieve different visual effects similar to how image filters (photo apps) work."
10713
+ },
10714
+ "id": {
10715
+ "description": "A unique identifying string for the layer.",
10716
+ "type": "string"
10717
+ },
10718
+ "itemId": {
10719
+ "description": "Optional string containing the item ID of the service if it's registered on ArcGIS Online or your organization's portal.",
10720
+ "type": "string"
10721
+ },
10722
+ "layerDefinition": {
10723
+ "$ref": "#/definitions/esri.rest-api.LayerDefinitionJson.LayerDefinitionJson",
10724
+ "description": "A layerDefinition object defining the attribute schema and drawing information for the layer."
10725
+ },
10726
+ "layerType": {
10727
+ "const": "WFS",
10728
+ "description": "The type of layer.",
10729
+ "type": "string"
10730
+ },
10731
+ "listMode": {
10732
+ "$ref": "esri.ListMode",
10733
+ "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}."
10734
+ },
10735
+ "maxScale": {
10736
+ "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.",
10737
+ "type": "number"
10738
+ },
10739
+ "minScale": {
10740
+ "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.",
10741
+ "type": "number"
10742
+ },
10743
+ "mode": {
10744
+ "description": "Number where 0 means 'snapshot' and 1 means 'ondemand'.",
10745
+ "enum": [
10746
+ 0,
10747
+ 1
10748
+ ],
10749
+ "type": "number"
10750
+ },
10751
+ "opacity": {
10752
+ "description": "The degree of transparency applied to the layer on the client side, where 0 is full transparency and 1 is no transparency.",
10753
+ "type": "number"
10754
+ },
10755
+ "popupInfo": {
10756
+ "$ref": "#/definitions/esri.rest-api.PopupInfoJson.PopupInfoJson",
10757
+ "description": "A PopupInfo object defining the content of pop-up windows when you click or query a feature."
10758
+ },
10759
+ "refreshInterval": {
10760
+ "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}.",
10761
+ "type": "number"
10762
+ },
10763
+ "showLabels": {
10764
+ "description": "Indicates whether to display labels for this layer. If true, labels will appear as defined in the labelingInfo property.",
10765
+ "type": "boolean"
10766
+ },
10767
+ "showLegend": {
10768
+ "description": "Indicates whether to allow map authors the ability to control what layers should be shown in a client's legend.",
10769
+ "type": "boolean"
10770
+ },
10771
+ "title": {
10772
+ "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.",
10773
+ "type": "string"
10774
+ },
10775
+ "type": {
10776
+ "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.",
10777
+ "enum": [
10778
+ "BingMapsAerial",
10779
+ "BingMapsHybrid",
10780
+ "BingMapsRoad",
10781
+ "CSV",
10782
+ "KML",
10783
+ "OpenStreetMap",
10784
+ "WMS",
10785
+ "WebTiledLayer"
10786
+ ],
10787
+ "type": "string"
10788
+ },
10789
+ "url": {
10790
+ "description": "The URL to the layer. If the layer is not from a web service but rather a feature collection, than the url property is omitted.",
10791
+ "type": "string"
10792
+ },
10793
+ "visibility": {
10794
+ "description": "Determines whether the layer is initially visible in the web map.",
10795
+ "type": "boolean"
10796
+ },
10797
+ "wfsInfo": {
10798
+ "$ref": "#/definitions/esri.rest-api.WFSLayerJson.WFSInfoJson",
10799
+ "description": "Object that defines and provides information about layers in a WFS service."
10800
+ }
10801
+ },
10802
+ "required": [
10803
+ "layerType"
10804
+ ],
10805
+ "type": "object"
10806
+ },
10611
10807
  "esri.rest-api.WMSLayerJson.WMSLayerJson": {
10612
10808
  "additionalProperties": false,
10613
10809
  "description": "A layer consuming a Web Map Service (WMS). The WMS specification is an international specification for serving and consuming dynamic maps on the web. For additional information on publishing WMS services, please see the ArcGIS Server help. See {@link https://developers.arcgis.com/web-map-specification/objects/wmsLayer/}.",