UNPKG

@spatial/great-circle

Version:

turf great-circle module

15 lines (13 loc) 322 B
import { LineString, Feature, Coord, Properties } from '@spatial/helpers' /** * http://turfjs.org/docs/#greatcircle */ export default function greatCircle( start: Coord, end: Coord, options?: { properties?: Properties, npoints?: number, offset?: number } ): Feature<LineString>;