Skip to content
On this page

计算质心坐标(centerOfMass)

js
npm install @turf/center-of-mass

传入任何 Feature 或 FeatureCollection 并使用多边形质心公式,返回其重心

Takes any Feature or a FeatureCollection and returns its center of mass using this formula: Centroid of Polygon

TIP

centerOfMass 是通过使用一种称为质心的数学概念来计算几何形状的中心点。质心是几何形状内所有部分的加权平均值,所以它对每个点的位置都有所考虑,而且可以处理具有孔洞或其他不规则形状的多边形

参数

参数类型描述
geojsonGeoJSONGeoJSON to be centered
optionsObject配置项

配置项(Options)

Prop类型默认值描述
propertiesObject{}为中心点设置GeoJson 属性
bboxObject{}为中心点设置边界
idObject{}为中心点 创建的id

返回(Returns)

Feature <Point> - 中心点