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.

17 lines (16 loc) 446 B
/** * GeoJSON Polyline Formatter * * @author clemdesign <contact@clemdesign.fr> * @license https://opensource.org/licenses/MIT * @link */ import { Polyline } from "../../Polyline"; import { FormatterInterface } from "./FormatterInterface"; export declare class GeoJSON implements FormatterInterface { /** * @param {Polyline} polyline * @returns {string} */ format(polyline: Polyline): string; }