Move raster reprojection error threshold to a common reproj module

This commit is contained in:
Tim Schaub
2017-12-12 17:00:30 -07:00
parent b8ab1ff852
commit 8bf00cbfb7
5 changed files with 12 additions and 13 deletions

5
src/ol/reproj/common.js Normal file
View File

@@ -0,0 +1,5 @@
/**
* @type {number} Default maximum allowed threshold (in pixels) for
* reprojection triangulation.
*/
export var ERROR_THRESHOLD = 0.5;