Shorter module paths for default exports

This commit is contained in:
ahocevar
2018-04-25 17:23:56 +02:00
parent 6cb115d6a4
commit 440d1ad3e1
233 changed files with 2136 additions and 2042 deletions
+4 -4
View File
@@ -41,8 +41,8 @@ const MAX_TRIANGLE_WIDTH = 0.25;
* Class containing triangulation of the given target extent.
* Used for determining source data and the reprojection itself.
*
* @param {module:ol/proj/Projection~Projection} sourceProj Source projection.
* @param {module:ol/proj/Projection~Projection} targetProj Target projection.
* @param {module:ol/proj/Projection} sourceProj Source projection.
* @param {module:ol/proj/Projection} targetProj Target projection.
* @param {module:ol/extent~Extent} targetExtent Target extent to triangulate.
* @param {module:ol/extent~Extent} maxSourceExtent Maximal source extent that can be used.
* @param {number} errorThreshold Acceptable error (in source units).
@@ -52,13 +52,13 @@ const Triangulation = function(sourceProj, targetProj, targetExtent,
maxSourceExtent, errorThreshold) {
/**
* @type {module:ol/proj/Projection~Projection}
* @type {module:ol/proj/Projection}
* @private
*/
this.sourceProj_ = sourceProj;
/**
* @type {module:ol/proj/Projection~Projection}
* @type {module:ol/proj/Projection}
* @private
*/
this.targetProj_ = targetProj;