36 lines
774 B
TypeScript
36 lines
774 B
TypeScript
import { BarChart3, Layers3, MapPinned, MoreHorizontal, Ruler } from "lucide-react";
|
|
import type { MapToolbarItem } from "@/features/map/core/components/toolbar";
|
|
|
|
export const waterNetworkToolbarItems: MapToolbarItem[] = [
|
|
{
|
|
id: "layers",
|
|
label: "图层",
|
|
description: "管理地图图层",
|
|
icon: Layers3
|
|
},
|
|
{
|
|
id: "measure",
|
|
label: "测量",
|
|
description: "距离与范围测量",
|
|
icon: Ruler
|
|
},
|
|
{
|
|
id: "analysis",
|
|
label: "分析",
|
|
description: "查看地图分析图例",
|
|
icon: BarChart3
|
|
},
|
|
{
|
|
id: "annotation",
|
|
label: "标注",
|
|
description: "管理地图标注",
|
|
icon: MapPinned
|
|
},
|
|
{
|
|
id: "more",
|
|
label: "更多",
|
|
description: "更多地图操作",
|
|
icon: MoreHorizontal
|
|
}
|
|
];
|