> ## 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_BingTileAt

Returns the Bing Tile quadkey for a given point (longitude, latitude) at a specified zoom level.

## Signatures

```sql theme={"system"}
ST_BingTileAt(longitude: Double, latitude: Double, zoomLevel: Integer)
```

## Parameters

<ParamField body="longitude" type="Double" required>
  The longitude value.
</ParamField>

<ParamField body="latitude" type="Double" required>
  The latitude 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_BingTileAt(60, 30.12, 15)
```

```
123030123010121
```

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