geospatialdraw
Version:
Geospatial Map Drawing Library
12 lines (11 loc) • 435 B
TypeScript
/**
* All supported units of length measurement
*/
type LengthUnit = 'meters' | 'kilometers' | 'yards' | 'feet' | 'miles' | 'nautical miles';
declare const FEET: LengthUnit;
declare const KILOMETERS: LengthUnit;
declare const METERS: LengthUnit;
declare const MILES: LengthUnit;
declare const NAUTICAL_MILES: LengthUnit;
declare const YARDS: LengthUnit;
export { LengthUnit, FEET, KILOMETERS, METERS, MILES, NAUTICAL_MILES, YARDS };