지도 위젯에서도 마커 종류 선택 가능하게 구현

This commit is contained in:
dohyeons
2025-11-14 10:49:11 +09:00
parent a3503c0b9f
commit a491f08337

View File

@@ -321,6 +321,29 @@ ORDER BY 하위부서수 DESC`,
/>
</div>
{/* 마커 종류 선택 (MapTestWidgetV2 전용) */}
<div className="space-y-2">
<Label htmlFor="marker-type" className="text-xs">
</Label>
<Select
value={dataSource.markerType || "circle"}
onValueChange={(value) => onChange({ markerType: value })}
>
<SelectTrigger id="marker-type" className="h-8 text-xs">
<SelectValue placeholder="마커 선택" />
</SelectTrigger>
<SelectContent>
<SelectItem value="circle" className="text-xs">
</SelectItem>
<SelectItem value="arrow" className="text-xs">
</SelectItem>
</SelectContent>
</Select>
<p className="text-muted-foreground text-[10px]"> </p>
</div>
{/* 지도 색상 설정 (MapTestWidgetV2 전용) */}
<div className="bg-muted/30 space-y-2 rounded-lg border p-2">