21 lines
347 B
TypeScript
21 lines
347 B
TypeScript
import {
|
|
LineString,
|
|
MultiLineString,
|
|
Feature,
|
|
Coord,
|
|
Properties,
|
|
} from "@turf/helpers";
|
|
|
|
/**
|
|
* http://turfjs.org/docs/#greatcircle
|
|
*/
|
|
export default function greatCircle(
|
|
start: Coord,
|
|
end: Coord,
|
|
options?: {
|
|
properties?: Properties;
|
|
npoints?: number;
|
|
offset?: number;
|
|
}
|
|
): Feature<LineString | MultiLineString>;
|