| 14 | } |
| 15 | |
| 16 | interface ClientMapProps { |
| 17 | markers: Marker[] |
| 18 | setMapInstance: (map: any) => void |
| 19 | task_type?: string // 添加任务类型属性 |
| 20 | } |
| 21 | |
| 22 | export default function ClientMap({ markers, setMapInstance, task_type = "LOCATION_LIST" }: ClientMapProps) { |
| 23 | const mapContainer = useRef<HTMLDivElement>(null) |
nothing calls this directly
no outgoing calls
no test coverage detected