import { VESSEL_COLORS, VESSEL_SHAPES, type VesselSource } from '../types/vessel'; /** * 물표 소스별 SVG 아이콘 생성 (KHOA 스타일) * AIS/V-Pass/E-NAV = 삼각형, VTS = 사각형, VTS-RADAR = 다이아몬드, AIR-AIS = 비행기 */ export function createVesselSvg(source: VesselSource, size = 14): string { const color = VESSEL_COLORS[source] || '#666'; const shape = VESSEL_SHAPES[source] || 'triangle'; switch (shape) { case 'triangle': return ` `; case 'square': return ` `; case 'diamond': return ` `; case 'plane': return ` `; default: return ` `; } } /** * VHF-DSC 조난 전용 깜빡이 SVG */ export function createDistressSvg(size = 14): string { return ` `; }