获取多边形上的一个点(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.
参数
参数 | 类型 | 描述 |
---|---|---|
geojson | GeoJSON | 任何一个Feature 或FeatureCollection |
返回(Returns)
Feature <Point>
- 返回一个在Feature
表面上的点
示例