晚上管网分区优化页面

This commit is contained in:
JIANG
2025-10-20 16:51:53 +08:00
parent 0c08e04383
commit f4b91ac4cc
2 changed files with 427 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
"use client";
import MapComponent from "@app/OlMap/MapComponent";
import MapToolbar from "@app/OlMap/Controls/Toolbar";
import ZonePropsPanel from "@components/olmap/ZonePropsPanel";
export default function Home() {
return (
<div className="relative w-full h-full overflow-hidden">
<MapComponent>
<MapToolbar hiddenButtons={["style"]} />
<ZonePropsPanel />
</MapComponent>
</div>
);
}