UNPKG

tsgeo

Version:

TsGeo provides abstractions to geographical coordinates (including support for different ellipsoids) and allows you to calculate geographical distances between coordinates with high precision.

16 lines (15 loc) 365 B
/** * Polyline Formatter Interface * * @author clemdesign <contact@clemdesign.fr> * @license https://opensource.org/licenses/MIT * @link */ import { Polyline } from "../../Polyline"; export interface FormatterInterface { /** * @param {Polyline} polyline * @returns {string} */ format(polyline: Polyline): string; }