# 简化多边形(simplify)
> npm install @turf/simplify
Takes a GeoJSON object and returns a simplified version. Internally uses simplify-js to perform simplification using the Ramer-Douglas-Peucker algorithm.
获取 GeoJSON 对象并返回简化版本。内部使用 simplify-js (opens new window) (opens new window)使用 Ramer–Douglas–Peucker (opens new window) (opens new window)算法执行简化。
参数
参数 | 类型 | 描述 |
---|---|---|
geojson | GeoJSON | 需要简化的 GeoJSON |
options | Object | 可配置项 |
options 选项
属性 | 类型 | 默认值 | 描述 |
---|---|---|---|
tolerance | number | 1 | 简化公差 |
highQuality | boolean | false | 是否花费更多时间使用其他算法来创建更高质量的简化 |
mutate | boolean | false | 是否返回入参的 GeoJSON。如果为 true,则可显着提高性能 |
返回
GeoJSON - a simplified GeoJSON
GeoJSON - 简化后的 GeoJSON
示例
var geojson = turf.polygon([
[
[-70.603637, -33.399918],
[-70.614624, -33.395332],
[-70.639343, -33.392466],
[-70.659942, -33.394759],
[-70.683975, -33.404504],
[-70.697021, -33.419406],
[-70.701141, -33.434306],
[-70.700454, -33.446339],
[-70.694274, -33.458369],
[-70.682601, -33.465816],
[-70.668869, -33.472117],
[-70.646209, -33.473835],
[-70.624923, -33.472117],
[-70.609817, -33.468107],
[-70.595397, -33.458369],
[-70.587158, -33.442901],
[-70.587158, -33.426283],
[-70.590591, -33.414248],
[-70.594711, -33.406224],
[-70.603637, -33.399918],
],
]);
var options = { tolerance: 0.01, highQuality: false };
var simplified = turf.simplify(geojson, options);
/*
{
type: "Feature",
geometry: {
type: "polygon",
coordinates: [
[
[-70.603637, -33.399918],
[-70.683975, -33.404504],
[-70.701141, -33.434306],
[-70.694274, -33.458369],
[-70.668869, -33.472117],
[-70.609817, -33.468107],
[-70.587158, -33.442901],
[-70.603637, -33.399918]
]
]
},
properties: {}
}
*/
基础用法
Copy
动态绘制
Copy