In addition to using const and let, this also upgrades our linter config and removes lint (mostly whitespace).
13 lines
370 B
JavaScript
13 lines
370 B
JavaScript
/**
|
|
* @type {number} Default maximum allowed threshold (in pixels) for
|
|
* reprojection triangulation.
|
|
*/
|
|
export const ERROR_THRESHOLD = 0.5;
|
|
|
|
/**
|
|
* TODO: decide if we want to expose this as a build flag or remove it
|
|
* @type {boolean} Enable automatic reprojection of raster sources. Default is
|
|
* `true`.
|
|
*/
|
|
export const ENABLE_RASTER_REPROJECTION = true;
|