Classes
Type Definitions
-
Options{Object}
-
Properties:
Name Type Argument Default Description extentExtent <optional>
Extent for the tile grid. No tiles outside this extent will be requested by
TileSourcesources. When nooriginororiginsare configured, theoriginwill be set to the top-left corner of the extent.minZoomnumber <optional>
0 Minimum zoom.
originCoordinate <optional>
The tile grid origin, i.e. where the
xandyaxes meet ([z, 0, 0]). Tile coordinates increase left to right and downwards. If not specified,extentororiginsmust be provided.originsArray<Coordinate> <optional>
Tile grid origins, i.e. where the
xandyaxes meet ([z, 0, 0]), for each zoom level. If given, the array length should match the length of theresolutionsarray, i.e. each resolution can have a different origin. Tile coordinates increase left to right and downwards. If not specified,extentororiginmust be provided.resolutionsArray.<number> Resolutions. The array index of each resolution needs to match the zoom level. This means that even if a
minZoomis configured, the resolutions array will have a length ofmaxZoom + 1.sizesArray<Size> <optional>
Number of tile rows and columns of the grid for each zoom level. If specified the values define each zoom level's extent together with the
originororigins. A gridextentcan 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 asoriginororigins, then theyvalue must be negative because OpenLayers tile coordinates use the top left as the origin.tileSizenumber | Size <optional>
Tile size. Default is
[256, 256].tileSizesArray.<(number|module:ol/size~Size)> <optional>
Tile sizes. If given, the array length should match the length of the
resolutionsarray, i.e. each resolution can have a different tile size.