Add three.js weather aura layer to dashboard map

This commit is contained in:
2569718930@qq.com
2026-03-27 23:09:08 +08:00
parent 7237278f5a
commit e32cfd8015
7 changed files with 505 additions and 4 deletions
@@ -21,6 +21,17 @@ const MapCanvas = dynamic(
},
);
const WeatherAuraLayer = dynamic(
() =>
import("@/components/dashboard/WeatherAuraLayer").then(
(module) => module.WeatherAuraLayer,
),
{
ssr: false,
loading: () => null,
},
);
const HistoryModal = dynamic(
() =>
import("@/components/dashboard/HistoryModal").then(
@@ -83,6 +94,7 @@ function DashboardScreen() {
return (
<div className={styles.root}>
<MapCanvas />
<WeatherAuraLayer />
<HeaderBar />
<CitySidebar />
<DetailPanel />