You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
236 B
16 lines
236 B
|
3 years ago
|
/**
|
||
|
|
* @module ol/tilegrid/common
|
||
|
|
*/
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Default maximum zoom for default tile grids.
|
||
|
|
* @type {number}
|
||
|
|
*/
|
||
|
|
export const DEFAULT_MAX_ZOOM = 42;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Default tile size.
|
||
|
|
* @type {number}
|
||
|
|
*/
|
||
|
|
export const DEFAULT_TILE_SIZE = 256;
|