GuLiMmo
2024-03-19 aec00ecc093be803860c8675cbe1c4c776a7cb4e
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
export interface globalSetting {
  flyToWaylineMode: string
  // 航线结束动作
  finishAction: string
  // 失控是否继续执行航线
  exitOnRCLost: string
  // 失控动作
  executeRCLostAction: string
  // 安全起飞高度
  takeOffSecurityHeight: 20
  // 全局航线速度
  globalTransitionalSpeed: number
  // 参考起飞点
  takeOffRefPoint: string
  // 参考起飞点海拔高度
  takeOffRefPointAGLHeight: number
  // 全局返航高度
  globalRTHHeight: number
}
 
export interface waylineSettingTypes {
    // 航线高度模式
  executeHeightMode: string,
  executeHeight: number,
  // normal: normalPhoto row-light: lowLightSmartShooting
  // 拍照模式
  orientedPhotoMode: number
}