# toWgs84
Converts a Mercator (EPSG:900913) GeoJSON object into WGS84 projection
将Mercator (EPSG:900913) GeoJSON对象转换为WGS84投影
> npm install @turf/projection
参数
参数 | 类型 | 描述 |
---|---|---|
geojson | (GeoJSON|Position) | Mercator GeoJSON 对象 |
options | Object | 可选参数:见下文 |
options选项
属性 | 类型 | 默认值 | 描述 |
---|---|---|---|
mutate | boolean | false | 允许修改GeoJSON输入(如果为真,性能将显著提高) |
返回
GeoJSON - true/false
示例
var pt = turf.point([-7903683.846322424, 5012341.663847514]);
var converted = turf.toWgs84(pt);