吉安感知网项目-前端
罗广辉
2026-01-26 beb95fb5fc166804056abafd70fc01ac27de7621
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
// 面状航线相关接口
import request from '@/axios'
 
export const createPlanarWayline = data => {
    return request({
        url: `/drone-device-core/wayline/plane/createWayline/createPoints`,
        method: 'post',
        timeout: 20000000000000000000,
        data,
    })
}
 
export const createWayLineFile = data => {
    return request({
        url: `/drone-device-core/wayline/plane/createWayline/createWayLineFile`,
        method: 'post',
        timeout: 20000000000000000000,
        data,
    })
}
 
// 面状航线倾斜采集
export const createWaylineXyPoints = data => {
    return request({
        url: `/drone-device-core/wayline/plane/createWayline/createWaylineXyPoints`,
        method: 'post',
        timeout: 20000000000000000000,
        data,
    })
}
// 面状航线生成图斑
export const createWaylineFileAndPatches = data => {
    return request({
        url: `/drone-device-core/wayline/plane/createWayline/createWaylineFileAndPatches`,
        method: 'post',
        timeout: 20000000000000000000,
        data,
    })
}