GuLiMmo
2024-07-01 8e79b5c74f4c0f52cff9f18991cde9cfc16d270f
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,
}