计算边界(bbox)
js
npm install @turf/bbox
传入一组Feature,计算所有输入Feature
的bbox
并返回一个边界框。
Takes a set of features, calculates the bbox of all input features, and returns a bounding box.
参数
参数 | 类型 | 描述 |
---|---|---|
geojson | GeoJSON | 任意GeoJSON对象 |
返回(Returns)
BBox
- 按照 minX、minY、maxX、maxY(最小X、最小Y、最大X、最大Y)的顺序显示的bbox范围。
示例