UNPKG
geospatialdraw
Version:
latest (0.4.17)
0.6.0-alpha.13
0.6.0-alpha.12
0.6.0-alpha.11
0.6.0-alpha.10
0.6.0-alpha.9
0.6.0-alpha.8
0.6.0-alpha.7
0.6.0-alpha.6
0.6.0-alpha.5
0.6.0-alpha.4
0.6.0-alpha.3
0.6.0-alpha.2
0.6.0-alpha.1
0.5.8
0.5.7
0.5.6
0.5.5
0.5.4
0.5.3
0.5.2
0.5.1
0.5.0
0.4.17
0.4.15
0.4.14
0.4.13
0.4.12
0.4.11
0.4.10
0.4.9
0.4.8
0.4.7
0.4.6
0.4.5
0.4.4
0.4.3
0.4.2
0.4.1
0.4.0
0.3.4
0.3.3
0.3.2
0.3.1
Geospatial Map Drawing Library
github.com/connexta/geospatialdraw
connexta/geospatialdraw
geospatialdraw
/
target
/
webapp
/
coordinate-editor
/
utm-formatting.d.ts
9 lines
(8 loc)
•
218 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
type
UTM
= {
easting
:
number
;
northing
:
number
;
zone
:
number
;
hemisphere
:
'N'
|
'S'
; };
declare
const
utmToString
:
(
{ easting, northing, zone, hemisphere }: UTM
) =>
string
;
export
{
UTM
, utmToString };