Use ol.inherits instead of goog.inherits

This commit is contained in:
Frederic Junod
2016-04-07 16:26:11 +02:00
parent 072728b083
commit e289bfbb7d
166 changed files with 448 additions and 452 deletions

View File

@@ -31,7 +31,7 @@ ol.source.ImageArcGISRest = function(opt_options) {
var options = opt_options || {};
goog.base(this, {
ol.source.Image.call(this, {
attributions: options.attributions,
logo: options.logo,
projection: options.projection,
@@ -91,7 +91,7 @@ ol.source.ImageArcGISRest = function(opt_options) {
this.ratio_ = options.ratio !== undefined ? options.ratio : 1.5;
};
goog.inherits(ol.source.ImageArcGISRest, ol.source.Image);
ol.inherits(ol.source.ImageArcGISRest, ol.source.Image);
/**