12345678910111213141516171819202122 |
- import {
- Polygon,
- Feature,
- FeatureCollection,
- Coord,
- LineString,
- Units,
- } from "@turf/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>;
|