Openlayers 6:使用属性简化特征<LineString>

Openlayers 6: Simplifying a Feature<LineString> with properties

背景

我使用 Openlayer 6,我有一个 Feature<LineString> 我想简化它。

解决方案显示多个 Feature<LineString>,每个 属性 名为 velocities。速度列表与要素坐标一一对应。

问题

有没有办法通过例如简化 Feature<LineString> simplify() 使用 Douglas Peucker 算法,它简化了坐标和相应的属性,例如velocities?

我最终使用了 https://github.com/mourner/simplify-js/tree/3d,您可以在其中简化 3d 点 x,y = 点,z 是速度。