17 lines
530 B
TypeScript
17 lines
530 B
TypeScript
"use client";
|
|
|
|
import MapComponent from "@components/olmap/core/MapComponent";
|
|
import MapToolbar from "@components/olmap/core/Controls/Toolbar";
|
|
import BurstDetectionPanel from "@/components/olmap/BurstDetection/BurstDetectionPanel";
|
|
|
|
export default function Home() {
|
|
return (
|
|
<div className="relative h-full w-full overflow-hidden">
|
|
<MapComponent>
|
|
<MapToolbar queryType="scheme" schemeType="burst_detection" hiddenButtons={["style"]} />
|
|
<BurstDetectionPanel />
|
|
</MapComponent>
|
|
</div>
|
|
);
|
|
}
|