Skip to main content
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

ST_BingTilesAround(longitude: Double, latitude: Double, zoomLevel: Integer)

Parameters

longitude
Double
required
The longitude value.
latitude
Double
required
The latitude value.
zoomLevel
Integer
required
The zoom level value.

Return type

A string representation.

Example

SELECT ST_BingTilesAround(60, 30.12, 1)
[0, 2, 1, 3]
ST_BingTilesAround