> For the complete documentation index, see [llms.txt](https://aatkit.gitbook.io/aatkit-cordova-integration/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://aatkit.gitbook.io/aatkit-cordova-integration/other/reference/functions/fittingbannersizeslandscape.md).

# fittingBannerSizesLandscape

### Overview <a href="#markdown-header-overview" id="markdown-header-overview"></a>

Returns the array of [banner sizes](/aatkit-cordova-integration/other/reference/other/banner-sizes.md) that will fit on a given device in landscape screen orientation.

### Syntax <a href="#markdown-header-syntax" id="markdown-header-syntax"></a>

```javascript
fittingBannerSizesLandscape(callback)
```

callback **(REQUIRED)**

*Callback\<String>* Used to provide the function call result to JavaScript.

Parameters:

* Array - [Banner sizes](/aatkit-cordova-integration/other/reference/other/banner-sizes.md) best fitting current device.

### Examples <a href="#markdown-header-examples" id="markdown-header-examples"></a>

```javascript
AATKitCordova.fittingBannerSizesLandscape((result) => {
                console.log("fittingBannerSizesLandscape " + result);
            });
```
