turf greatcircle example

Solutions on MaxInterview for turf greatcircle example by the best coders in the world

showing results for - "turf greatcircle example"
Marty
02 Jul 2016
1var start = turf.point([-122, 48]);
2var end = turf.point([-77, 39]);
3
4var greatCircle = turf.greatCircle(start, end, {'name': 'Seattle to DC'});
5
6