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
|
}
|