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