Skip to main content
Version: 7.0.0

shortestPath

Description

Returns the shortest path from start to end without colliding with any Feature in obstacles

Parameters

NameTypeDescription
startCoordpoint
endCoordpoint
options?Objectoptional parameters (default {})
options.obstacles?Geometry | Feature | FeatureCollection<Polygon>areas which path cannot travel
options.units?stringunit in which resolution & minimum distance will be expressed in; it can be degrees, radians, miles, kilometers, ... (default 'kilometers')
options.resolution?numberdistance between matrix points on which the path will be calculated (default 100)

Returns

Examples

var start = [-5, -6];
var end = [9, -6];
var options = {
obstacles: turf.polygon([
[
[0, -7],
[5, -7],
[5, -3],
[0, -3],
[0, -7],
],
]),
};

var path = turf.shortestPath(start, end, options);

Installation

$ npm install @turf/shortest-path

import { shortestPath } from "@turf/shortest-path";
const result = shortestPath(...);
$ npm install @turf/turf

import * as turf from "@turf/turf";
const result = turf.shortestPath(...);