市场监控新增 11 个美国城市(NY/LA/Chicago/Denver 等)

This commit is contained in:
2569718930@qq.com
2026-05-14 01:17:09 +08:00
parent d2472fa0c2
commit 4ab749c136
@@ -7,6 +7,8 @@ import type { CityDetail } from "@/lib/dashboard-types";
const MONITOR_KEYS = [
"seoul", "busan", "tokyo", "ankara", "helsinki", "amsterdam",
"istanbul", "paris", "hong kong", "lau fau shan", "taipei",
"new york", "los angeles", "chicago", "denver", "atlanta",
"miami", "san francisco", "houston", "dallas", "austin", "seattle",
] as const;
type MonitorCity = {
@@ -121,6 +123,10 @@ export default function MonitorPanel() {
istanbul: "Airport", paris: "Le Bourget",
"hong kong": "Observatory", "lau fau shan": "Lau Fau Shan",
taipei: "Songshan",
"new york": "LaGuardia", "los angeles": "LAX", chicago: "O'Hare",
denver: "Buckley", atlanta: "Hartsfield", miami: "MIA",
"san francisco": "SFO", houston: "Hobby", dallas: "Love Field",
austin: "Bergstrom", seattle: "SeaTac",
};
return m[key] || "";
};