parent
8f3bd0eab8
commit
b2d6283f8d
@ -0,0 +1,31 @@
|
||||
import { Title } from "../../components/Title";
|
||||
import { pointColors } from "../../Map/layers-config";
|
||||
|
||||
const types = [
|
||||
{ color: pointColors.kiosk, id: "kiosk", name: "Городские киоски" },
|
||||
{ color: pointColors.mfc, id: "mfc", name: "МФЦ" },
|
||||
{ color: pointColors.library, id: "library", name: "Библиотеки" },
|
||||
{ color: pointColors.dk, id: "dk", name: "Дома культуры и клубы" },
|
||||
{ color: pointColors.sport, id: "sport", name: "Спортивные объекты" },
|
||||
];
|
||||
|
||||
export function Legend() {
|
||||
return (
|
||||
<div className="absolute bottom-[10px] left-[10px] bg-white-background w-[300px] rounded-xl p-3 max-h-[calc(100vh-30px)] overflow-y-auto">
|
||||
<div className="space-y-5">
|
||||
<Title text={"Легенда"} className={"mb-1"} />
|
||||
|
||||
{types.map((type) => (
|
||||
<div className="flex gap-1 items-center" key={type.id}>
|
||||
<span
|
||||
className="rounded-xl w-3 h-3 inline-block"
|
||||
style={{ backgroundColor: type.color }}
|
||||
></span>
|
||||
|
||||
<span className="text-sm">{type.name}</span>
|
||||
</div>
|
||||
))}
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Loading…
Reference in new issue