UNPKG

node-red-contrib-tak-registration

Version:

A Node-RED node to register to TAK and to help wrap files as datapackages to send to TAK

23 lines (21 loc) 410 B
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>;