+
}
+ title="Auto-orbit"
+ description="Camera slowly rotates around the airport"
+ checked={settings.autoOrbit}
+ onChange={(v) => update("autoOrbit", v)}
+ />
+
+ {settings.autoOrbit && (
+ <>
+
}
+ title="Orbit speed"
+ options={ORBIT_SPEEDS}
+ value={settings.orbitSpeed}
+ onChange={(v) => update("orbitSpeed", v)}
+ />
+
}
+ title="Direction"
+ options={ORBIT_DIRECTIONS}
+ value={settings.orbitDirection}
+ onChange={(v) => update("orbitDirection", v)}
+ />
+ >
+ )}
+
+
+
+
}
+ title="Flight trails"
+ description="Altitude-colored trails behind aircraft"
+ checked={settings.showTrails}
+ onChange={(v) => update("showTrails", v)}
+ />
+
}
+ title="Ground shadows"
+ description="Shadow projections on the map surface"
+ checked={settings.showShadows}
+ onChange={(v) => update("showShadows", v)}
+ />
+
}
+ title="Altitude colors"
+ description="Color aircraft and trails by altitude"
+ checked={settings.showAltitudeColors}
+ onChange={(v) => update("showAltitudeColors", v)}
+ />
+
+