翻转坐标顺序(flip)
js
npm install @turf/flip
传入features
并将所有坐标从[x,y]翻转为[y,x]
Takes input features and flips all of their coordinates from [x, y] to [y, x].
参数
参数 | 类型 | 描述 |
---|---|---|
geojson | (Geometry/Feature) | Feature 或 Geometry |
options | Object | 配置项 |
配置项(Options)
Prop | 类型 | 默认值 | 描述 |
---|---|---|---|
mutate | boolean | false | 允许GeoJSON输入被修改,如果为true 性能将显著提高 |
返回(Returns)
GeoJSON
- 一种或一组与输入相同类型的具有翻转坐标的feature
示例