index.d.ts 347 B

1234567891011121314151617181920
  1. import {
  2. LineString,
  3. MultiLineString,
  4. Feature,
  5. Coord,
  6. Properties,
  7. } from "@turf/helpers";
  8. /**
  9. * http://turfjs.org/docs/#greatcircle
  10. */
  11. export default function greatCircle(
  12. start: Coord,
  13. end: Coord,
  14. options?: {
  15. properties?: Properties;
  16. npoints?: number;
  17. offset?: number;
  18. }
  19. ): Feature<LineString | MultiLineString>;