|
|
hai 4 meses | |
|---|---|---|
| .. | ||
| dist | hai 4 meses | |
| LICENSE | hai 4 meses | |
| README.md | hai 4 meses | |
| package.json | hai 4 meses | |
Takes a LineString and returns a Point at a specified distance along the line.
line (Feature<LineString> | LineString) input linedistance number distance along the lineoptions Object? Optional parameters (optional, default {})
options.units Units can be degrees, radians, miles, or kilometers (optional, default "kilometers")var line = turf.lineString([[-83, 30], [-84, 36], [-78, 41]]);
var options = {units: 'miles'};
var along = turf.along(line, 200, options);
//addToMap
var addToMap = [along, line]
Returns Feature<Point> Point distance units along the line
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/along
Or install the all-encompassing @turf/turf module that includes all modules as functions:
$ npm install @turf/turf