UNPKG

@spatial/shortest-path

Version:

turf shortest-path module

16 lines (14 loc) 420 B
import { Polygon, Feature, FeatureCollection, Coord, LineString, Units } from '@spatial/helpers' /** * http://turfjs.org/docs/#shortestpath */ export default function shortestPath( start: Coord, end: Coord, options?: { obstacles?: Polygon | Feature<Polygon> | FeatureCollection<Polygon>, minDistance?: number units?: Units resolution?: number } ): Feature<LineString>;