Remove use of goog.uri

This commit is contained in:
Björn Harrtell
2016-06-03 21:29:50 +02:00
parent e63b4d1f48
commit 27853ea7dd
8 changed files with 98 additions and 14 deletions

View File

@@ -3,7 +3,6 @@
goog.provide('ol.source.ImageWMS');
goog.require('goog.asserts');
goog.require('goog.uri.utils');
goog.require('ol');
goog.require('ol.Image');
goog.require('ol.events');
@@ -15,6 +14,7 @@ goog.require('ol.source.Image');
goog.require('ol.source.wms');
goog.require('ol.source.wms.ServerType');
goog.require('ol.string');
goog.require('ol.uri');
/**
@@ -312,7 +312,7 @@ ol.source.ImageWMS.prototype.getRequestUrl_ = function(extent, size, pixelRatio,
}
params['BBOX'] = bbox.join(',');
return goog.uri.utils.appendParamsFromMap(this.url_, params);
return ol.uri.appendParams(this.url_, params);
};