17 lines
513 B
TypeScript
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>
|
|
);
|
|
}
|