new TileGrid(options)
Name | Type | Description | |||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
options |
Tile grid options.
|
Subclasses
Methods
-
forEachTileCoord(extent, zoom, callback)
tilegrid/TileGrid.js, line 195 -
Call a function with each tile coordinate for a given extent and zoom level.
Name Type Description extent
module:ol/extent~Extent Extent.
zoom
number Integer zoom level.
callback
function Function called with each tile coordinate.
-
Get the extent for this tile grid, if it was configured.
Returns:
Extent.
-
getMaxZoom(){number}
tilegrid/TileGrid.js, line 251 -
Get the maximum zoom level for the grid.
Returns:
Max zoom.
-
getMinZoom(){number}
tilegrid/TileGrid.js, line 260 -
Get the minimum zoom level for the grid.
Returns:
Min zoom.
-
Get the origin for the grid at the given zoom level.
Name Type Description z
number Integer zoom level.
Returns:
Origin.
-
getResolution(z){number}
tilegrid/TileGrid.js, line 284 -
Get the resolution for the given zoom level.
Name Type Description z
number Integer zoom level.
Returns:
Resolution.
-
getResolutions(){Array.<number>}
tilegrid/TileGrid.js, line 293 -
Get the list of resolutions for the tile grid.
Returns:
Resolutions.
-
Get the extent of a tile coordinate.
Name Type Description tileCoord
module:ol/tilecoord~TileCoord Tile coordinate.
extent
module:ol/extent~Extent Temporary extent object.
Returns:
Extent.
-
getTileCoordForCoordAndResolution(coordinate, resolution, opt_tileCoord){module:ol/tilecoord~TileCoord}
tilegrid/TileGrid.js, line 395 -
Get the tile coordinate for the given map coordinate and resolution. This method considers that coordinates that intersect tile boundaries should be assigned the higher tile coordinate.
Name Type Description coordinate
module:ol/coordinate~Coordinate Coordinate.
resolution
number Resolution.
tileCoord
module:ol/tilecoord~TileCoord Destination module:ol/tilecoord~TileCoord object.
Returns:
Tile coordinate.
-
getTileCoordForCoordAndZ(coordinate, z, opt_tileCoord){module:ol/tilecoord~TileCoord}
tilegrid/TileGrid.js, line 483 -
Get a tile coordinate given a map coordinate and zoom level.
Name Type Description coordinate
module:ol/coordinate~Coordinate Coordinate.
z
number Zoom level.
tileCoord
module:ol/tilecoord~TileCoord Destination module:ol/tilecoord~TileCoord object.
Returns:
Tile coordinate.
-
Get the tile size for a zoom level. The type of the return value matches the
tileSize
ortileSizes
that the tile grid was configured with. To always get anmodule:ol/size~Size
, run the result throughmodule:ol/size~Size.toSize()
.Name Type Description z
number Z.
Returns:
Tile size.
-
getZForResolution(resolution, opt_direction){number}
tilegrid/TileGrid.js, line 532 -
Name Type Description resolution
number Resolution.
direction
number If 0, the nearest resolution will be used. If 1, the nearest lower resolution will be used. If -1, the nearest higher resolution will be used. Default is 0.
Returns:
Z.