Named exports from ol/uri

This commit is contained in:
Frederic Junod
2018-01-15 16:54:53 +01:00
parent 14eeaf88dc
commit 40f97eed85
8 changed files with 25 additions and 27 deletions

View File

@@ -8,7 +8,7 @@ import EventType from '../events/EventType.js';
import {containsExtent, getCenter, getHeight, getWidth, scaleFromCenter} from '../extent.js';
import _ol_obj_ from '../obj.js';
import ImageSource from '../source/Image.js';
import _ol_uri_ from '../uri.js';
import {appendParams} from '../uri.js';
/**
* @classdesc
@@ -224,7 +224,7 @@ ImageMapGuide.prototype.getUrl = function(baseUrl, params, extent, size, project
'SETVIEWCENTERY': center[1]
};
_ol_obj_.assign(baseParams, params);
return _ol_uri_.appendParams(baseUrl, baseParams);
return appendParams(baseUrl, baseParams);
};