计算质心坐标(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 是通过使用一种称为质心的数学概念来计算几何形状的中心点。质心是几何形状内所有部分的加权平均值,所以它对每个点的位置都有所考虑,而且可以处理具有孔洞或其他不规则形状的多边形
参数
参数 | 类型 | 描述 |
---|---|---|
geojson | GeoJSON | GeoJSON to be centered |
options | Object | 配置项 |
配置项(Options)
Prop | 类型 | 默认值 | 描述 |
---|---|---|---|
properties | Object | {} | 为中心点设置GeoJson 属性 |
bbox | Object | {} | 为中心点设置边界 |
id | Object | {} | 为中心点 创建的id |
返回(Returns)
Feature <Point>
- 中心点