PyramidTileId Class

Bing
 

Occasionally you may run into a situation where you need to perform additional calculations against the tile information to generate the required tile URL. This can be done by passing a callback function to the uriConstructor property. When this callback function is triggered, it receives a PyramidTileId object that contains additional information about the tile that is being requested. You can then use this information to create the required tile URL and return it from the callback function.

PyramidTileId(x: number, y: number, zoom: number, width?: number, height?: number)

The following is a list of the properties in the PyramidTileId class.

NameTypeDescription
pixelHeightnumberThe height of the tile.
pixelWidthnumberThe width of the tile.
quadKeystringThe quadkey ID of the tile.
xnumberThe x tile coordinate.
ynumberThe y tile coordinate.
zoomnumberThe zoom level of the tile.
NameTypeDescription
areEqual(tileId1: PyramidTileId, tileId2: PyramidTileId)booleanCompares two PyramidTileId objects and returns a boolean indicating if the two PyramidTileId are equal.
fromQuadKey(quadkey: string, width?: number, height?: number)PyramidTileIdGenerates a PyramidTileId from a quadkey tile id string.
Show: