删除重复坐标点(cleanCoords)
js
npm install @turf/clean-coords
从任何GeoJSON几何图形中删除冗余坐标,以减小数据的体积、简化几何形状,并减少形状之间的重复点。
Removes redundant coordinates from any GeoJSON Geometry.
参数
参数 | 类型 | 描述 |
---|---|---|
geojson | (Geometry/Feature) | Feature 或 Geometry |
options | Object | 配置项 |
配置项(Options)
Prop | 类型 | 默认值 | 描述 |
---|---|---|---|
mutate | boolean | false | 允许GeoJSON输入被修改 |
返回(Returns)
(Geometry|Feature)
- 清除后的 Feature/Geometry
示例