Named exports from ol/coordinate

This commit is contained in:
Tim Schaub
2018-02-09 14:31:20 -07:00
parent ce12dc1253
commit b97554f2f3
16 changed files with 126 additions and 160 deletions
+2 -2
View File
@@ -1,7 +1,7 @@
/**
* @module ol/Graticule
*/
import _ol_coordinate_ from './coordinate.js';
import {degreesToStringHDMS} from './coordinate.js';
import {intersects, getCenter} from './extent.js';
import GeometryLayout from './geom/GeometryLayout.js';
import LineString from './geom/LineString.js';
@@ -244,7 +244,7 @@ const Graticule = function(opt_options) {
this.parallelsLabels_ = null;
if (options.showLabels == true) {
const degreesToString = _ol_coordinate_.degreesToStringHDMS;
const degreesToString = degreesToStringHDMS;
/**
* @type {null|function(number):string}