-
Name Type Description options
WMTS options.
Name Type Description extent
module:ol/extent~Extent Extent for the tile grid. No tiles outside this extent will be requested by
module:ol/source/Tile
sources. When noorigin
ororigins
are configured, theorigin
will be set to the top-left corner of the extent.origin
module:ol/coordinate~Coordinate The tile grid origin, i.e. where the
x
andy
axes meet ([z, 0, 0]
). Tile coordinates increase left to right and downwards. If not specified,extent
ororigins
must be provided.origins
Array.<module:ol/coordinate~Coordinate> Tile grid origins, i.e. where the
x
andy
axes meet ([z, 0, 0]
), for each zoom level. If given, the array length should match the length of theresolutions
array, i.e. each resolution can have a different origin. Tile coordinates increase left to right and downwards. If not specified,extent
ororigin
must be provided.resolutions
Array.<number> Resolutions. The array index of each resolution needs to match the zoom level. This means that even if a
minZoom
is configured, the resolutions array will have a length ofmaxZoom + 1
matrixIds
Array.<string> matrix IDs. The length of this array needs to match the length of the
resolutions
array.sizes
Array.<module:ol/size~Size> Number of tile rows and columns of the grid for each zoom level. The values here are the
TileMatrixWidth
andTileMatrixHeight
advertised in the GetCapabilities response of the WMTS, and define each zoom level's extent together with theorigin
ororigins
. A gridextent
can be configured in addition, and will further limit the extent for which tile requests are made by sources. If the bottom-left corner of an extent is used asorigin
ororigins
, then they
value must be negative because OpenLayers tile coordinates use the top left as the origin.tileSize
number | module:ol/size~Size Tile size.
tileSizes
Array.<module:ol/size~Size> Tile sizes. The length of this array needs to match the length of the
resolutions
array.
Extends
Methods
-
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.
-
Get the list of matrix identifiers.
Returns:
MatrixIds.
-
Get the maximum zoom level for the grid.
Returns:
Max zoom.
-
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.
-
Get the resolution for the given zoom level.
Name Type Description z
number Integer zoom level.
Returns:
Resolution.
-
Get the list of resolutions for the tile grid.
Returns:
Resolutions.
-
getTileCoordExtent(tileCoord, opt_extent){module:ol/extent~Extent} inherited
-
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} inherited
-
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} inherited
-
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.
-
Name Type Description resolution
number Resolution.
direction
number | module:ol/array~NearestDirectionFunction If 0, the nearest resolution will be used. If 1, the nearest higher resolution (lower Z) will be used. If -1, the nearest lower resolution (higher Z) will be used. Default is 0. Use a
module:ol/array~NearestDirectionFunction
for more precise control.For example to change tile Z at the midpoint of zoom levels
function(value, high, low) { return value - low * Math.sqrt(high / low); }
Returns:
Z.