Named exports from ol/obj

This commit is contained in:
Frederic Junod
2018-01-16 14:14:17 +01:00
parent 40f97eed85
commit 31e30d28b7
60 changed files with 174 additions and 183 deletions

View File

@@ -5,7 +5,7 @@ import {inherits} from '../index.js';
import LayerType from '../LayerType.js';
import Layer from '../layer/Layer.js';
import _ol_layer_VectorRenderType_ from '../layer/VectorRenderType.js';
import _ol_obj_ from '../obj.js';
import {assign} from '../obj.js';
import Style from '../style/Style.js';
@@ -35,7 +35,7 @@ const VectorLayer = function(opt_options) {
const options = opt_options ?
opt_options : /** @type {olx.layer.VectorOptions} */ ({});
const baseOptions = _ol_obj_.assign({}, options);
const baseOptions = assign({}, options);
delete baseOptions.style;
delete baseOptions.renderBuffer;