Updated Map View

This commit is contained in:
2026-06-20 22:21:17 +10:00
parent 6fad966b7e
commit 05ca994253
52 changed files with 2038 additions and 803 deletions
+15
View File
@@ -27,9 +27,16 @@ export interface UserSettings {
show_ai_tail_logos: boolean
show_ai_livery_images: boolean
departure_board_columns: string[]
show_map_legend: boolean
hide_impossible_achievements: boolean
}
export interface FollowerEntry {
user: User
verified: boolean
}
export type SettingType = 'select' | 'text' | 'checkbox' | 'multiselect'
export interface SettingOption {
value: string
@@ -260,6 +267,10 @@ export interface CrewType {
internal_name: string
}
export type RegionRange = "intraregional" | "interregional"
export type FlightScope = 'domestic' | 'international'
export type FlightRange = 'intracontinental' | 'intercontinental'
export interface Flight {
id: number
flight_number: string | null
@@ -284,9 +295,13 @@ export interface Flight {
duration_display: string
duration: number
distance: number
scope: FlightScope
range: FlightRange
region_range: RegionRange
livery_url?: string
}
export interface MissingLivery {
airline_name: string;
aircraft_display_name: string;