diff --git a/src/ol/geom/flatgeom.js b/src/ol/geom/flatgeom.js index bdde328407..1902c9c87c 100644 --- a/src/ol/geom/flatgeom.js +++ b/src/ol/geom/flatgeom.js @@ -252,6 +252,7 @@ ol.geom.flat.inflateCoordinatesss = */ ol.geom.flat.lineStringInterpolate = function(flatCoordinates, offset, end, stride, fraction, opt_point) { + // FIXME interpolate extra dimensions goog.asserts.assert(0 <= fraction && fraction <= 1); var point = goog.isDef(opt_point) ? opt_point : [NaN, NaN]; var n = (end - offset) / stride;