Rename ol.source.Image#getImage implementations to #getImageInternal

This allows for the reprojection to be initialized in the #getImage,
while #getImageInternal is used to obtain the actual data.
This commit is contained in:
Petr Sloup
2015-06-11 16:29:50 +02:00
parent ed1e49045a
commit 0f408e341f
4 changed files with 4 additions and 4 deletions

View File

@@ -126,7 +126,7 @@ ol.source.ImageMapGuide.prototype.getParams = function() {
/**
* @inheritDoc
*/
ol.source.ImageMapGuide.prototype.getImage =
ol.source.ImageMapGuide.prototype.getImageInternal =
function(extent, resolution, pixelRatio, projection) {
resolution = this.findNearestResolution(resolution);
pixelRatio = this.hidpi_ ? pixelRatio : 1;