# buffer

Calculates a buffer for input features for a given radius. Units supported are miles, kilometers, and degrees.
计算给定半径的输入 Feature 的缓冲区。支持的单位有英里、公里和度数。

参数

参数 类型 描述
geojson (FeatureCollection|Geometry|Feature ) 要进行缓冲的输入
radius number 绘制缓冲区的距离(允许负值)
options Object 可选参数:见下文

options选项

属性 类型 默认值 描述
units string kilometers turf库单位支持的任何选项
steps number 64 频数

返回

(FeatureCollection|Feature <(Polygon|MultiPolygon)>|undefined) - 缓冲区 features

示例

var point = turf.point([-90.548630, 14.616599]);
var buffered = turf.buffer(point, 500, {units: 'miles'});
Last Updated: 7/3/2023, 9:59:14 PM