Named exports from ol/functions

This commit is contained in:
Frederic Junod
2017-12-15 13:44:32 +01:00
parent 75ea4d3e9a
commit 2498bba90a
21 changed files with 52 additions and 60 deletions

View File

@@ -2,7 +2,7 @@
* @module ol/geom/SimpleGeometry
*/
import {inherits} from '../index.js';
import _ol_functions_ from '../functions.js';
import {FALSE} from '../functions.js';
import {createOrUpdateFromFlatCoordinates, getCenter} from '../extent.js';
import Geometry from '../geom/Geometry.js';
import GeometryLayout from '../geom/GeometryLayout.js';
@@ -84,7 +84,7 @@ SimpleGeometry.getStrideForLayout = function(layout) {
/**
* @inheritDoc
*/
SimpleGeometry.prototype.containsXY = _ol_functions_.FALSE;
SimpleGeometry.prototype.containsXY = FALSE;
/**