# bboxClip
Takes a Feature and a bbox and clips the feature to the bbox using lineclip. May result in degenerate edges when clipping Polygons.
接受一个Feature
和一个边界框,使用lineclip
将Feature
裁剪到边界框内。裁剪多边形时可能会导致边缘退化。
参数
参数 | 类型 | 描述 |
---|---|---|
feature | Feature <(LineString|MultiLineString|Polygon|MultiPolygon)> | 要裁剪到边界框的 Feature |
bbox | BBox | extent 以 minX, minY, maxX, maxY 的顺序表示 |
返回
Feature <(LineString|MultiLineString|Polygon|MultiPolygon)> - 裁剪后的 Feature
示例
var bbox = [0, 0, 10, 10];
var poly = turf.polygon([[[2, 2], [8, 4], [12, 8], [3, 7], [2, 2]]]); // 注意:polygon首尾坐标要一致
var clipped = turf.bboxClip(poly, bbox);