@maptiler/weather
Version:
Weather layers for MapTiler Cloud and MapTiler SDK
15 lines (14 loc) • 648 B
TypeScript
/**
* The maximum value of a coordinate in the internal tile coordinate system. Coordinates of
* all source features normalized to this extent upon load.
*
* The value is a consequence of the following:
*
* * Vertex buffer store positions as signed 16 bit integers.
* * One bit is lost for signedness to support tile buffers.
* * One bit is lost because the line vertex buffer used to pack 1 bit of other data into the int.
* * One bit is lost to support features extending past the extent on the right edge of the tile.
* * This leaves us with 2^13 = 8192
*/
export declare const EXTENT = 8192;
export declare const GLOBE_MAX_ZOOM = 4;