UNPKG
gcoord
Version:
latest (1.0.7)
1.0.7
1.0.6
1.0.5
1.0.3
1.0.2
1.0.1
1.0.0
0.3.2
0.3.1
0.3.0
0.3.0-beta.2
0.2.3
0.2.2
0.2.1
0.2.0
0.1.2
0.1.1
0.1.0-alpha
0.0.3
0.0.2
0.0.1
0.0.1-alpha
geographic coordinate library
github.com/hujiulong/gcoord
hujiulong/gcoord
gcoord
/
src
/
index.ts
15 lines
(10 loc)
•
283 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import
{
CRSTypes
}
from
'./crs'
;
import
transform
from
'./transform'
;
export
type
{
GeoJSON
,
Position
}
from
'./geojson'
;
export
type
{
CRSTypes
};
const
exported = { ...
CRSTypes
,
// 兼容原来gcoord.WGS84的使用方式
CRSTypes
, transform, };
export
default
exported;