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

Returns an array of Bing Tile quadkey strings representing the neighborhood tiles around the tile that contains the given point (longitude, latitude) at the specified zoom level. Returns the 3×3 neighborhood (up to 9 tiles), or fewer tiles at the edges/corners of the map.

## Signatures

```sql theme={"system"}
ST_BingTilesAround(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="Array<String>">
  A string representation.
</ResponseField>

## Example

```sql theme={"system"}
SELECT ST_BingTilesAround(60, 30.12, 1)
```

```
[0, 2, 1, 3]
```

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