Files
TJWaterFrontend_Refine/src/app/(main)/hydraulic-simulation/burst-simulation/page.tsx
T
2026-03-10 11:04:30 +08:00

17 lines
513 B
TypeScript

"use client";
import MapComponent from "@components/olmap/core/MapComponent";
import MapToolbar from "@components/olmap/core/Controls/Toolbar";
import BurstPipeAnalysisPanel from "@/components/olmap/BurstSimulation/BurstPipeAnalysisPanel";
export default function Home() {
return (
<div className="relative w-full h-full overflow-hidden">
<MapComponent>
<MapToolbar queryType="scheme" schemeType="burst_analysis" />
<BurstPipeAnalysisPanel />
</MapComponent>
</div>
);
}