# 计算边界多边形(bboxPolygon)
> npm install @turf/bbox-polygon
Takes a bbox and returns an equivalent polygon.
传入一个
bbox
并返回一个等价的Feature<Polygon>
。
参数
参数 | 类型 | 描述 |
---|---|---|
bbox | bbox | 边界框 |
options | Object | 可配置项 |
options 选项
属性 | 类型 | 默认值 | 描述 |
---|---|---|---|
properties | Properties | {} | 返回 GeoJSON 的 properties 属性对象 |
id | string|number | {} | 返回 GeoJSON 的 id |
返回
Feature<Polygon> - a Polygon representation of the bounding box
Feature<Polygon> - 表示边界框的多边形要素
示例
var bbox = [0, 0, 10, 10];
var poly = turf.bboxPolygon(bbox);
/*
{
type: "Feature",
geometry: {
type: "Polygon",
coordinates: [
[0, 0], [10, 0], [10, 10], [0, 10], [0, 0]
]
},
properties: {}
}
*/
基础用法
Copy
动态绘制
Copy