dashboard
repositories
filestore
activity
search
login
drone
/
drone-web
无人机操作系统
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
kmz文件打包完成、新增航线功能、事件编辑
GuLiMmo
2024-03-18
3e13dd0242140c7189b65e4171efaa9190d1763d
[drone/drone-web.git]
/
src
/
utils
/
geo-utils.ts
1
2
3
4
5
6
7
8
9
10
11
import axios from 'axios'
export function parseJsonFile (url: string) {
return new Promise((resolve, reject) => {
axios.get(url)
.then(function (response) {
console.log(response.data)
resolve(response.data)
})
})
}