> ## Documentation Index
> Fetch the complete documentation index at: https://docs.wherobots.com/llms.txt
> Use this file to discover all available pages before exploring further.

# ST_BingTile

Creates a Bing Tile quadkey from tile XY coordinates and a zoom level.

## Signatures

```sql theme={"system"}
ST_BingTile(tileX: Integer, tileY: Integer, zoomLevel: Integer)
```

## Parameters

<ParamField body="tileX" type="Integer" required>
  The tile x value.
</ParamField>

<ParamField body="tileY" type="Integer" required>
  The tile y value.
</ParamField>

<ParamField body="zoomLevel" type="Integer" required>
  The zoom level value.
</ParamField>

## Return type

<ResponseField type="String">
  A string representation.
</ResponseField>

## Example

```sql theme={"system"}
SELECT ST_BingTile(3, 5, 3)
```

```
213
```

<img src="https://mintcdn.com/wherobots/AayJA2u8CknIeTgt/images/sql-functions/ST_BingTile/ST_BingTile.svg?fit=max&auto=format&n=AayJA2u8CknIeTgt&q=85&s=ce473b07f4e4b2a8bc3b4a1beb8dc202" alt="ST_BingTile" width="400" height="190" data-path="images/sql-functions/ST_BingTile/ST_BingTile.svg" />
