From 19f3c6b94ae94d14589e97a23a430bf4675e09cc Mon Sep 17 00:00:00 2001 From: mike-000 <49240900+mike-000@users.noreply.github.com> Date: Wed, 17 Jun 2020 15:46:28 +0100 Subject: [PATCH] getCoordinateAt return Z and M values if available --- src/ol/geom/LineString.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/ol/geom/LineString.js b/src/ol/geom/LineString.js index 51c6e35b21..c791e0ebdd 100644 --- a/src/ol/geom/LineString.js +++ b/src/ol/geom/LineString.js @@ -211,7 +211,8 @@ class LineString extends SimpleGeometry { this.flatCoordinates.length, this.stride, fraction, - opt_dest + opt_dest, + this.stride ); }