Skip to content
On this page

删除重复坐标点(cleanCoords)

js
npm install @turf/clean-coords

从任何GeoJSON几何图形中删除冗余坐标,以减小数据的体积、简化几何形状,并减少形状之间的重复点。

Removes redundant coordinates from any GeoJSON Geometry.

参数

参数类型描述
geojson(Geometry/Feature)FeatureGeometry
optionsObject配置项

配置项(Options)

Prop类型默认值描述
mutatebooleanfalse允许GeoJSON输入被修改

返回(Returns)

(Geometry|Feature) - 清除后的 Feature/Geometry

示例