|
|
hai 4 meses | |
|---|---|---|
| .. | ||
| dist | hai 4 meses | |
| LICENSE | hai 4 meses | |
| README.md | hai 4 meses | |
| package.json | hai 4 meses | |
Converts a WGS84 GeoJSON object into Mercator (EPSG:900913) projection
geojson (GeoJSON | Position) WGS84 GeoJSON objectoptions Object? Optional parameters (optional, default {})
options.mutate boolean allows GeoJSON input to be mutated (significant performance increase if true) (optional, default false)var pt = turf.point([-71,41]);
var converted = turf.toMercator(pt);
//addToMap
var addToMap = [pt, converted];
Returns GeoJSON Projected GeoJSON
Converts a Mercator (EPSG:900913) GeoJSON object into WGS84 projection
geojson (GeoJSON | Position) Mercator GeoJSON objectoptions Object? Optional parameters (optional, default {})
options.mutate boolean allows GeoJSON input to be mutated (significant performance increase if true) (optional, default false)var pt = turf.point([-7903683.846322424, 5012341.663847514]);
var converted = turf.toWgs84(pt);
//addToMap
var addToMap = [pt, converted];
Returns GeoJSON Projected GeoJSON
This module is part of the Turfjs project, an open source module collection dedicated to geographic algorithms. It is maintained in the Turfjs/turf repository, where you can create PRs and issues.
Install this single module individually:
$ npm install @turf/projection
Or install the all-encompassing @turf/turf module that includes all modules as functions:
$ npm install @turf/turf