Skip to main content
Returns an array of Polygons for the corresponding Bing Tile quadkeys.
To convert a Polygon array to a single geometry, use ST_Collect.

Signatures

ST_BingTileToGeom(quadKeys: Array[String])

Parameters

quadKeys
Array[String]
required
The quad keys value.

Return type

The resulting geometry.

Example

SELECT ST_BingTileToGeom(array('0', '1', '2', '3'))
[POLYGON ((-180 85.05112877980659, -180 0, 0 0, 0 85.05112877980659, -180 85.05112877980659)), ...]
ST_BingTileToGeom