Rename ol.source.ImageSource to ol.source.Image

This commit is contained in:
Tom Payne
2013-09-09 14:33:12 +02:00
parent fc2975f346
commit 5967f96047
6 changed files with 22 additions and 22 deletions
+3 -3
View File
@@ -4,13 +4,13 @@ goog.require('ol.Image');
goog.require('ol.ImageUrlFunctionType');
goog.require('ol.extent');
goog.require('ol.proj');
goog.require('ol.source.ImageSource');
goog.require('ol.source.Image');
/**
* @constructor
* @extends {ol.source.ImageSource}
* @extends {ol.source.Image}
* @param {ol.source.StaticImageOptions} options Static image options.
*/
ol.source.StaticImage = function(options) {
@@ -40,7 +40,7 @@ ol.source.StaticImage = function(options) {
imageExtent, imageResolution, imageSize, projection);
};
goog.inherits(ol.source.StaticImage, ol.source.ImageSource);
goog.inherits(ol.source.StaticImage, ol.source.Image);
/**