guoshilong
2023-09-23 fb336f319c71291fa09de3e7f67f1ccfab3cb7c8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// 航线类型
export enum WaylineType {
  NormalWaypointWayline = 0, // 普通航点航线
  AccurateReshootingWayline = 1 // 精准复拍航线
}
 
export interface WaylineFile {
  id: string,
  name: string,
  drone_model_key: any,
  payload_model_keys: string[],
  template_types: WaylineType[],
  update_time: number,
  user_name: string,
}