Skip to main content
Version: 7.2.0

shortestPath

描述

¥Description

返回从 startend 的最短 path,且不与任何 特性 碰撞(FeatureCollection<多边形>)

¥Returns the shortest path from start to end without colliding with any Feature in obstacles FeatureCollection<Polygon>

参数

¥Parameters

名称类型描述
start坐标系point
end坐标系point
options?对象可选参数(默认 {})
options.obstacles?多边形 | 特性<多边形> | FeatureCollection<多边形>路径无法通行的区域
options.units?单位表示分辨率和最小距离的单位;单位可以是度、弧度、英里、公里……(默认 'kilometers')
options.resolution?number用于计算路径的矩阵点之间的距离(默认 100)

返回

¥Returns

特性<LineString> 起点和终点之间的最短路径

¥Feature<LineString> shortest path between start and end

示例

¥Examples

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

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(...);