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