From a6e91a8e8157aa7f932b9e34e18d8fa8e0175518 Mon Sep 17 00:00:00 2001 From: htlee Date: Wed, 25 Mar 2026 07:43:24 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20=EA=B0=80=EC=83=81=EC=84=A0=EB=B0=95=20?= =?UTF-8?q?=EC=95=84=EC=9D=B4=EC=BD=98=20SDF=20halo=20=EC=95=84=ED=8B=B0?= =?UTF-8?q?=ED=8C=A9=ED=8A=B8=20=EC=A0=9C=EA=B1=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 모선 icon-halo-color 노란색 제거 (SDF 바운딩박스 채움 현상) - halo 통일: rgba(0,0,0,0.6) / width 0.5 Co-Authored-By: Claude Opus 4.6 (1M context) --- frontend/src/components/korea/FleetClusterLayer.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/components/korea/FleetClusterLayer.tsx b/frontend/src/components/korea/FleetClusterLayer.tsx index 98cde4c..7a0a47f 100644 --- a/frontend/src/components/korea/FleetClusterLayer.tsx +++ b/frontend/src/components/korea/FleetClusterLayer.tsx @@ -771,8 +771,8 @@ export function FleetClusterLayer({ ships, analysisMap: analysisMapProp, onShipS }} paint={{ 'icon-color': ['get', 'color'], - 'icon-halo-color': ['case', ['==', ['get', 'isParent'], 1], '#fbbf24', 'rgba(0,0,0,0.6)'], - 'icon-halo-width': ['case', ['==', ['get', 'isParent'], 1], 2, 0.5], + 'icon-halo-color': 'rgba(0,0,0,0.6)', + 'icon-halo-width': 0.5, 'text-color': ['get', 'color'], 'text-halo-color': '#000000', 'text-halo-width': 1, -- 2.45.2