UNPKG
gisthreemap
Version:
latest (1.4.11)
1.4.11
1.4.10
1.4.9
1.4.8
1.4.7
1.4.6
1.4.5
1.4.4
1.4.3
1.4.2
1.4.1
1.3.32
1.3.31
1.3.30
1.3.29
1.3.28
1.3.27
1.3.26
1.3.25
1.3.24
1.3.23
1.3.22
1.3.21
1.3.20
1.3.19
1.3.18
1.3.17
1.3.16
1.3.15
1.3.14
1.3.13
1.3.12
1.3.11
1.3.10
1.3.9
1.3.8
1.3.7
1.3.6
1.3.5
1.3.4
1.3.3
1.3.2
1.3.1
1.3.0
1.2.9
1.2.8
1.2.7
1.2.6
1.2.5
1.2.4
1.2.3
1.2.2
1.2.1
1.1.2
1.1.1
1.0.2
1.0.1
1.0.0
基于webGL的三维api
gisthreemap
/
src
/
utils
/
transform.js
14 lines
(12 loc)
•
330 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import
GeoTransForm
from
'geotransform'
const
gt =
new
GeoTransForm
()
// 坐标转换
export
default
{
// 获取转换坐标实例
getEpsgParams
(epsgName) {
return
gt.
getEpsgParams
(epsgName) },
// 坐标转换
coordTransform
(fromSR, toSR, coords) {
return
gt.
transform
(fromSR, toSR, coords) } }