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

Returns an array of Bing Tile quadkey strings that cover the given geometry at the specified zoom level.

## Signatures

```sql theme={"system"}
ST_BingTileCellIDs(geom: Geometry, zoomLevel: Integer)
```

## Parameters

<ParamField body="geom" type="Geometry" required>
  The input geometry.
</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_BingTileCellIDs(ST_GeomFromText('POINT(60 30.12)'), 10)
```

```
[1230301230]
```

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