Skip to content
On this page

计算边界(bbox)

js
npm install @turf/bbox

传入一组Feature,计算所有输入Featurebbox并返回一个边界框。

Takes a set of features, calculates the bbox of all input features, and returns a bounding box.

参数

参数类型描述
geojsonGeoJSON任意GeoJSON对象

返回(Returns)

BBox - 按照 minX、minY、maxX、maxY(最小X、最小Y、最大X、最大Y)的顺序显示的bbox范围。

示例