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) 439 B
/** * GeoJSON Polygon Formatter * * @author clemdesign <contact@clemdesign.fr> * @license https://opensource.org/licenses/MIT * @link */ import { Polygon } from "../../Polygon"; import { FormatterInterface } from "./FormatterInterface"; export declare class GeoJSON implements FormatterInterface { /** * @param {Polygon} polygon * @returns {string} */ format(polygon: Polygon): string; }