Rename non-api sub-namespace typedefs

This commit is contained in:
Peter Robins
2016-05-13 09:58:25 +00:00
parent 4626554a18
commit 176ddd3403
36 changed files with 315 additions and 324 deletions

View File

@@ -23,7 +23,7 @@ goog.require('ol.reproj.Triangulation');
* @param {ol.Extent} targetExtent Target extent.
* @param {number} targetResolution Target resolution.
* @param {number} pixelRatio Pixel ratio.
* @param {ol.reproj.ImageFunctionType} getImageFunction
* @param {ol.reprojImageFunctionType} getImageFunction
* Function returning source images (extent, resolution, pixelRatio).
*/
ol.reproj.Image = function(sourceProj, targetProj,

View File

@@ -28,7 +28,7 @@ goog.require('ol.reproj.Triangulation');
* @param {ol.TileCoord} wrappedTileCoord Coordinate of the tile wrapped in X.
* @param {number} pixelRatio Pixel ratio.
* @param {number} gutter Gutter of the source tiles.
* @param {ol.reproj.TileFunctionType} getTileFunction
* @param {ol.reprojTileFunctionType} getTileFunction
* Function returning source tiles (z, x, y, pixelRatio).
* @param {number=} opt_errorThreshold Acceptable reprojection error (in px).
* @param {boolean=} opt_renderEdges Render reprojection edges.

View File

@@ -63,7 +63,7 @@ ol.reproj.Triangulation = function(sourceProj, targetProj, targetExtent,
this.errorThresholdSquared_ = errorThreshold * errorThreshold;
/**
* @type {Array.<ol.reproj.Triangle>}
* @type {Array.<ol.reprojTriangle>}
* @private
*/
this.triangles_ = [];
@@ -324,7 +324,7 @@ ol.reproj.Triangulation.prototype.calculateSourceExtent = function() {
/**
* @return {Array.<ol.reproj.Triangle>} Array of the calculated triangles.
* @return {Array.<ol.reprojTriangle>} Array of the calculated triangles.
*/
ol.reproj.Triangulation.prototype.getTriangles = function() {
return this.triangles_;