From 3558dbe235989e6446d31f1fd7a37004ddd62cb2 Mon Sep 17 00:00:00 2001 From: mike-000 <49240900+mike-000@users.noreply.github.com> Date: Thu, 20 Feb 2020 14:43:48 +0000 Subject: [PATCH] Draw labels in a postrender function --- test/spec/ol/graticule.test.js | 1 + 1 file changed, 1 insertion(+) diff --git a/test/spec/ol/graticule.test.js b/test/spec/ol/graticule.test.js index e6c78e3f14..78533e8136 100644 --- a/test/spec/ol/graticule.test.js +++ b/test/spec/ol/graticule.test.js @@ -46,6 +46,7 @@ describe('ol.layer.Graticule', function() { const squaredTolerance = resolution * resolution / 4.0; graticule.updateProjectionInfo_(projection); graticule.createGraticule_(extent, [0, 0], resolution, squaredTolerance); + graticule.drawLabels_({frameState: {extent: extent, viewState: {rotation: 0}}}); expect(graticule.meridiansLabels_.length).to.be(13); expect(graticule.meridiansLabels_[0].text).to.be('0° 00′ 00″'); expect(graticule.meridiansLabels_[0].geom.getCoordinates()[0]).to.roughlyEqual(0, 1e-9);