Files
openlayers/src/ol/reproj/common.js
Tim Schaub ad62739a6e Use blocked scoped variables
In addition to using const and let, this also upgrades our linter config and removes lint (mostly whitespace).
2018-01-12 00:50:30 -07:00

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;