From 9039e2629b167a1268866190affab70a0aadf2fc Mon Sep 17 00:00:00 2001 From: mike-000 <49240900+mike-000@users.noreply.github.com> Date: Mon, 24 Feb 2020 21:57:22 +0000 Subject: [PATCH] fix trailing space --- src/ol/layer/Graticule.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ol/layer/Graticule.js b/src/ol/layer/Graticule.js index 6c17962753..b7002c247b 100644 --- a/src/ol/layer/Graticule.js +++ b/src/ol/layer/Graticule.js @@ -677,7 +677,7 @@ class Graticule extends VectorLayer { clamp(center[0], this.minLonP_, this.maxLonP_), clamp(center[1], this.minLatP_, this.maxLatP_) ]; - + const centerLonLat = this.toLonLatTransform_(validCenter); let centerLon = centerLonLat[0]; let centerLat = centerLonLat[1];