Rename _ol_reproj_Image_ to ReprojImage

This commit is contained in:
Tim Schaub
2018-01-11 10:27:16 -07:00
parent 5337dc31d9
commit 65d30f7ec0
4 changed files with 15 additions and 15 deletions

View File

@@ -26,7 +26,7 @@ import _ol_reproj_Triangulation_ from '../reproj/Triangulation.js';
* @param {ol.ReprojImageFunctionType} getImageFunction
* Function returning source images (extent, resolution, pixelRatio).
*/
var _ol_reproj_Image_ = function(sourceProj, targetProj,
var ReprojImage = function(sourceProj, targetProj,
targetExtent, targetResolution, pixelRatio, getImageFunction) {
/**
@@ -109,13 +109,13 @@ var _ol_reproj_Image_ = function(sourceProj, targetProj,
_ol_ImageBase_.call(this, targetExtent, targetResolution, this.sourcePixelRatio_, state);
};
inherits(_ol_reproj_Image_, _ol_ImageBase_);
inherits(ReprojImage, _ol_ImageBase_);
/**
* @inheritDoc
*/
_ol_reproj_Image_.prototype.disposeInternal = function() {
ReprojImage.prototype.disposeInternal = function() {
if (this.state == ImageState.LOADING) {
this.unlistenSource_();
}
@@ -126,7 +126,7 @@ _ol_reproj_Image_.prototype.disposeInternal = function() {
/**
* @inheritDoc
*/
_ol_reproj_Image_.prototype.getImage = function() {
ReprojImage.prototype.getImage = function() {
return this.canvas_;
};
@@ -134,7 +134,7 @@ _ol_reproj_Image_.prototype.getImage = function() {
/**
* @return {ol.proj.Projection} Projection.
*/
_ol_reproj_Image_.prototype.getProjection = function() {
ReprojImage.prototype.getProjection = function() {
return this.targetProj_;
};
@@ -142,7 +142,7 @@ _ol_reproj_Image_.prototype.getProjection = function() {
/**
* @private
*/
_ol_reproj_Image_.prototype.reproject_ = function() {
ReprojImage.prototype.reproject_ = function() {
var sourceState = this.sourceImage_.getState();
if (sourceState == ImageState.LOADED) {
var width = getWidth(this.targetExtent_) / this.targetResolution_;
@@ -163,7 +163,7 @@ _ol_reproj_Image_.prototype.reproject_ = function() {
/**
* @inheritDoc
*/
_ol_reproj_Image_.prototype.load = function() {
ReprojImage.prototype.load = function() {
if (this.state == ImageState.IDLE) {
this.state = ImageState.LOADING;
this.changed();
@@ -189,8 +189,8 @@ _ol_reproj_Image_.prototype.load = function() {
/**
* @private
*/
_ol_reproj_Image_.prototype.unlistenSource_ = function() {
ReprojImage.prototype.unlistenSource_ = function() {
_ol_events_.unlistenByKey(/** @type {!ol.EventsKey} */ (this.sourceListenerKey_));
this.sourceListenerKey_ = null;
};
export default _ol_reproj_Image_;
export default ReprojImage;