Skip to content
On this page

获取多边形上的一个点(pointOnFeature)

js
npm install @turf/point-on-feature

接收一个Feature对象或FeatureCollection对象,并返回一个点,该点保证位于Feature表面上,而不是在Feature的实际节点上。

Takes a Feature or FeatureCollection and returns a Point guaranteed to be on the surface of the feature.

参数

参数类型描述
geojsonGeoJSON任何一个FeatureFeatureCollection

返回(Returns)

Feature <Point> - 返回一个在Feature表面上的点

示例