- deck.gl 9.2 설치 + DeckGLOverlay(MapboxOverlay interleaved) 통합 - 정적 마커 11종 → useStaticDeckLayers (IconLayer/TextLayer, SVG DataURI) - 분석 오버레이 → useAnalysisDeckLayers (ScatterplotLayer/TextLayer) - 불법어선/어구/수역 라벨 → deck.gl ScatterplotLayer/TextLayer - 줌 레벨별 스케일 (0~6: 0.6x, 7~9: 1.0x, 10~12: 1.4x, 13+: 1.8x) - NK 미사일 궤적 PathLayer 추가 + 정적 마커 클릭 Popup - 해저케이블 날짜변경선(180도) 좌표 보정 - 기존 DOM Marker 제거로 렌더링 성능 대폭 개선 Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
654 lines
25 KiB
TypeScript
654 lines
25 KiB
TypeScript
import { useRef, useState, useEffect, useCallback, useMemo } from 'react';
|
|
import { useTranslation } from 'react-i18next';
|
|
import { Map, NavigationControl, Marker, Popup, Source, Layer } from 'react-map-gl/maplibre';
|
|
import type { MapRef } from 'react-map-gl/maplibre';
|
|
import { ScatterplotLayer, TextLayer } from '@deck.gl/layers';
|
|
import { DeckGLOverlay } from '../layers/DeckGLOverlay';
|
|
import { useAnalysisDeckLayers } from '../../hooks/useAnalysisDeckLayers';
|
|
import { useStaticDeckLayers } from '../../hooks/useStaticDeckLayers';
|
|
import type { StaticPickInfo } from '../../hooks/useStaticDeckLayers';
|
|
import fishingZonesData from '../../data/zones/fishing-zones-wgs84.json';
|
|
import { ShipLayer } from '../layers/ShipLayer';
|
|
import { InfraLayer } from './InfraLayer';
|
|
import { SatelliteLayer } from '../layers/SatelliteLayer';
|
|
import { AircraftLayer } from '../layers/AircraftLayer';
|
|
import { SubmarineCableLayer } from './SubmarineCableLayer';
|
|
import { CctvLayer } from './CctvLayer';
|
|
// 정적 레이어들은 useStaticDeckLayers로 전환됨
|
|
import { OsintMapLayer } from './OsintMapLayer';
|
|
import { EezLayer } from './EezLayer';
|
|
// PiracyLayer, WindFarmLayer, PortLayer, MilitaryBaseLayer, GovBuildingLayer,
|
|
// NKLaunchLayer, NKMissileEventLayer → useStaticDeckLayers로 전환됨
|
|
import { ChineseFishingOverlay } from './ChineseFishingOverlay';
|
|
import { AnalysisOverlay } from './AnalysisOverlay';
|
|
import { FleetClusterLayer } from './FleetClusterLayer';
|
|
import type { SelectedGearGroupData } from './FleetClusterLayer';
|
|
import { FishingZoneLayer } from './FishingZoneLayer';
|
|
import { AnalysisStatsPanel } from './AnalysisStatsPanel';
|
|
import { getMarineTrafficCategory } from '../../utils/marineTraffic';
|
|
import { classifyFishingZone } from '../../utils/fishingAnalysis';
|
|
import { fetchKoreaInfra } from '../../services/infra';
|
|
import type { PowerFacility } from '../../services/infra';
|
|
import type { Ship, Aircraft, SatellitePosition } from '../../types';
|
|
import type { OsintItem } from '../../services/osint';
|
|
import type { UseVesselAnalysisResult } from '../../hooks/useVesselAnalysis';
|
|
import { countryLabelsGeoJSON } from '../../data/countryLabels';
|
|
import 'maplibre-gl/dist/maplibre-gl.css';
|
|
|
|
export interface KoreaFiltersState {
|
|
illegalFishing: boolean;
|
|
illegalTransship: boolean;
|
|
darkVessel: boolean;
|
|
cableWatch: boolean;
|
|
dokdoWatch: boolean;
|
|
ferryWatch: boolean;
|
|
}
|
|
|
|
interface Props {
|
|
ships: Ship[];
|
|
allShips?: Ship[];
|
|
aircraft: Aircraft[];
|
|
satellites: SatellitePosition[];
|
|
layers: Record<string, boolean>;
|
|
osintFeed: OsintItem[];
|
|
currentTime: number;
|
|
koreaFilters: KoreaFiltersState;
|
|
transshipSuspects: Set<string>;
|
|
cableWatchSuspects: Set<string>;
|
|
dokdoWatchSuspects: Set<string>;
|
|
dokdoAlerts: { mmsi: string; name: string; dist: number; time: number }[];
|
|
vesselAnalysis?: UseVesselAnalysisResult;
|
|
}
|
|
|
|
// MarineTraffic-style: satellite + dark ocean + nautical overlay
|
|
const MAP_STYLE = {
|
|
version: 8 as const,
|
|
sources: {
|
|
'satellite': {
|
|
type: 'raster' as const,
|
|
tiles: [
|
|
'https://server.arcgisonline.com/ArcGIS/rest/services/World_Imagery/MapServer/tile/{z}/{y}/{x}',
|
|
],
|
|
tileSize: 256,
|
|
maxzoom: 19,
|
|
attribution: '© Esri, Maxar',
|
|
},
|
|
'carto-dark': {
|
|
type: 'raster' as const,
|
|
tiles: [
|
|
'https://a.basemaps.cartocdn.com/dark_nolabels/{z}/{x}/{y}{r}.png',
|
|
'https://b.basemaps.cartocdn.com/dark_nolabels/{z}/{x}/{y}{r}.png',
|
|
'https://c.basemaps.cartocdn.com/dark_nolabels/{z}/{x}/{y}{r}.png',
|
|
],
|
|
tileSize: 256,
|
|
},
|
|
'opensea': {
|
|
type: 'raster' as const,
|
|
tiles: [
|
|
'https://tiles.openseamap.org/seamark/{z}/{x}/{y}.png',
|
|
],
|
|
tileSize: 256,
|
|
maxzoom: 18,
|
|
},
|
|
},
|
|
layers: [
|
|
{ id: 'background', type: 'background' as const, paint: { 'background-color': '#0d1f3c' } },
|
|
{ id: 'satellite-base', type: 'raster' as const, source: 'satellite', paint: { 'raster-brightness-max': 0.75, 'raster-saturation': -0.1, 'raster-contrast': 0.05 } },
|
|
{ id: 'dark-overlay', type: 'raster' as const, source: 'carto-dark', paint: { 'raster-opacity': 0.25 } },
|
|
{ id: 'seamark', type: 'raster' as const, source: 'opensea', paint: { 'raster-opacity': 0.5 } },
|
|
],
|
|
};
|
|
|
|
// Korea-centered view
|
|
const KOREA_MAP_CENTER = { longitude: 127.5, latitude: 36 };
|
|
const KOREA_MAP_ZOOM = 6;
|
|
|
|
const FILTER_ICON: Record<string, string> = {
|
|
illegalFishing: '\u{1F6AB}\u{1F41F}',
|
|
illegalTransship: '\u2693',
|
|
darkVessel: '\u{1F47B}',
|
|
cableWatch: '\u{1F50C}',
|
|
dokdoWatch: '\u{1F3DD}\uFE0F',
|
|
ferryWatch: '\u{1F6A2}',
|
|
};
|
|
|
|
const FILTER_COLOR: Record<string, string> = {
|
|
illegalFishing: '#ef4444',
|
|
illegalTransship: '#f97316',
|
|
darkVessel: '#8b5cf6',
|
|
cableWatch: '#00e5ff',
|
|
dokdoWatch: '#22c55e',
|
|
ferryWatch: '#2196f3',
|
|
};
|
|
|
|
const FILTER_I18N_KEY: Record<string, string> = {
|
|
illegalFishing: 'filters.illegalFishingMonitor',
|
|
illegalTransship: 'filters.illegalTransshipMonitor',
|
|
darkVessel: 'filters.darkVesselMonitor',
|
|
cableWatch: 'filters.cableWatchMonitor',
|
|
dokdoWatch: 'filters.dokdoWatchMonitor',
|
|
ferryWatch: 'filters.ferryWatchMonitor',
|
|
};
|
|
|
|
export function KoreaMap({ ships, allShips, aircraft, satellites, layers, osintFeed, currentTime, koreaFilters, transshipSuspects, cableWatchSuspects, dokdoWatchSuspects, dokdoAlerts, vesselAnalysis }: Props) {
|
|
const { t } = useTranslation();
|
|
const mapRef = useRef<MapRef>(null);
|
|
const [infra, setInfra] = useState<PowerFacility[]>([]);
|
|
const [flyToTarget, setFlyToTarget] = useState<{ lng: number; lat: number; zoom: number } | null>(null);
|
|
const [selectedAnalysisMmsi, setSelectedAnalysisMmsi] = useState<string | null>(null);
|
|
const [trackCoords, setTrackCoords] = useState<[number, number][] | null>(null);
|
|
const [selectedGearData, setSelectedGearData] = useState<SelectedGearGroupData | null>(null);
|
|
const [zoomLevel, setZoomLevel] = useState(KOREA_MAP_ZOOM);
|
|
const [staticPickInfo, setStaticPickInfo] = useState<StaticPickInfo | null>(null);
|
|
|
|
useEffect(() => {
|
|
fetchKoreaInfra().then(setInfra).catch(() => {});
|
|
}, []);
|
|
|
|
useEffect(() => {
|
|
if (flyToTarget && mapRef.current) {
|
|
mapRef.current.flyTo({ center: [flyToTarget.lng, flyToTarget.lat], zoom: flyToTarget.zoom, duration: 1500 });
|
|
setFlyToTarget(null);
|
|
}
|
|
}, [flyToTarget]);
|
|
|
|
useEffect(() => {
|
|
if (!selectedAnalysisMmsi) setTrackCoords(null);
|
|
}, [selectedAnalysisMmsi]);
|
|
|
|
const handleAnalysisShipSelect = useCallback((mmsi: string) => {
|
|
setSelectedAnalysisMmsi(mmsi);
|
|
const ship = (allShips ?? ships).find(s => s.mmsi === mmsi);
|
|
if (ship) setFlyToTarget({ lng: ship.lng, lat: ship.lat, zoom: 12 });
|
|
}, [allShips, ships]);
|
|
|
|
const handleTrackLoad = useCallback((_mmsi: string, coords: [number, number][]) => {
|
|
setTrackCoords(coords);
|
|
}, []);
|
|
|
|
const handleFleetZoom = useCallback((bounds: { minLat: number; maxLat: number; minLng: number; maxLng: number }) => {
|
|
mapRef.current?.fitBounds(
|
|
[[bounds.minLng, bounds.minLat], [bounds.maxLng, bounds.maxLat]],
|
|
{ padding: 60, duration: 1500 },
|
|
);
|
|
}, []);
|
|
|
|
// 줌 레벨별 아이콘/심볼 스케일 배율
|
|
const zoomScale = useMemo(() => {
|
|
if (zoomLevel <= 6) return 0.6;
|
|
if (zoomLevel <= 9) return 1.0;
|
|
if (zoomLevel <= 12) return 1.4;
|
|
return 1.8;
|
|
}, [zoomLevel]);
|
|
|
|
// 불법어선 강조 — deck.gl ScatterplotLayer + TextLayer
|
|
const illegalFishingData = useMemo(() => {
|
|
if (!koreaFilters.illegalFishing) return [];
|
|
return (allShips ?? ships).filter(s => {
|
|
const mtCat = getMarineTrafficCategory(s.typecode, s.category);
|
|
if (mtCat !== 'fishing' || s.flag === 'KR') return false;
|
|
return classifyFishingZone(s.lat, s.lng).zone !== 'OUTSIDE';
|
|
}).slice(0, 200);
|
|
}, [koreaFilters.illegalFishing, allShips, ships]);
|
|
|
|
const illegalFishingLayer = useMemo(() => new ScatterplotLayer({
|
|
id: 'illegal-fishing-highlight',
|
|
data: illegalFishingData,
|
|
getPosition: (d) => [d.lng, d.lat],
|
|
getRadius: 800 * zoomScale,
|
|
getFillColor: [239, 68, 68, 40],
|
|
getLineColor: [239, 68, 68, 200],
|
|
getLineWidth: 2,
|
|
stroked: true,
|
|
filled: true,
|
|
radiusUnits: 'meters',
|
|
lineWidthUnits: 'pixels',
|
|
}), [illegalFishingData, zoomScale]);
|
|
|
|
const illegalFishingLabelLayer = useMemo(() => new TextLayer({
|
|
id: 'illegal-fishing-labels',
|
|
data: illegalFishingData,
|
|
getPosition: (d) => [d.lng, d.lat],
|
|
getText: (d) => d.name || d.mmsi,
|
|
getSize: 10 * zoomScale,
|
|
getColor: [239, 68, 68, 255],
|
|
getTextAnchor: 'middle',
|
|
getAlignmentBaseline: 'top',
|
|
getPixelOffset: [0, 14],
|
|
fontFamily: 'monospace',
|
|
outlineWidth: 2,
|
|
outlineColor: [0, 0, 0, 200],
|
|
billboard: false,
|
|
characterSet: 'auto',
|
|
}), [illegalFishingData, zoomScale]);
|
|
|
|
// 수역 라벨 TextLayer — illegalFishing 필터 활성 시만 표시
|
|
const zoneLabelsLayer = useMemo(() => {
|
|
if (!koreaFilters.illegalFishing) return null;
|
|
const data = (fishingZonesData as GeoJSON.FeatureCollection).features.map(f => {
|
|
const geom = f.geometry as GeoJSON.MultiPolygon;
|
|
let sLng = 0, sLat = 0, n = 0;
|
|
for (const poly of geom.coordinates) {
|
|
for (const ring of poly) {
|
|
for (const [lng, lat] of ring) {
|
|
sLng += lng; sLat += lat; n++;
|
|
}
|
|
}
|
|
}
|
|
return {
|
|
name: (f.properties as { name: string }).name,
|
|
lng: n > 0 ? sLng / n : 0,
|
|
lat: n > 0 ? sLat / n : 0,
|
|
};
|
|
});
|
|
return new TextLayer({
|
|
id: 'fishing-zone-labels',
|
|
data,
|
|
getPosition: (d: { lng: number; lat: number }) => [d.lng, d.lat],
|
|
getText: (d: { name: string }) => d.name,
|
|
getSize: 12 * zoomScale,
|
|
getColor: [255, 255, 255, 220],
|
|
getTextAnchor: 'middle',
|
|
getAlignmentBaseline: 'center',
|
|
fontFamily: 'monospace',
|
|
fontWeight: 700,
|
|
outlineWidth: 3,
|
|
outlineColor: [0, 0, 0, 200],
|
|
billboard: false,
|
|
characterSet: 'auto',
|
|
});
|
|
}, [koreaFilters.illegalFishing, zoomScale]);
|
|
|
|
// 정적 레이어 (deck.gl) — 항구, 공항, 군사기지, 어항경고 등
|
|
const staticDeckLayers = useStaticDeckLayers({
|
|
ports: layers.ports ?? false,
|
|
coastGuard: layers.coastGuard ?? false,
|
|
windFarm: layers.windFarm ?? false,
|
|
militaryBases: layers.militaryBases ?? false,
|
|
govBuildings: layers.govBuildings ?? false,
|
|
airports: layers.airports ?? false,
|
|
navWarning: layers.navWarning ?? false,
|
|
nkLaunch: layers.nkLaunch ?? false,
|
|
nkMissile: layers.nkMissile ?? false,
|
|
piracy: layers.piracy ?? false,
|
|
infra: layers.infra ?? false,
|
|
infraFacilities: infra,
|
|
onPick: (info) => setStaticPickInfo(info),
|
|
sizeScale: zoomScale,
|
|
});
|
|
|
|
// 선택된 어구 그룹 — 어구 아이콘 + 모선 강조 (deck.gl)
|
|
const selectedGearLayers = useMemo(() => {
|
|
if (!selectedGearData) return [];
|
|
const { parent, gears, groupName } = selectedGearData;
|
|
const layers = [];
|
|
|
|
// 어구 위치 — 주황 원형 마커
|
|
layers.push(new ScatterplotLayer({
|
|
id: 'selected-gear-items',
|
|
data: gears,
|
|
getPosition: (d: Ship) => [d.lng, d.lat],
|
|
getRadius: 6 * zoomScale,
|
|
getFillColor: [249, 115, 22, 180],
|
|
getLineColor: [255, 255, 255, 220],
|
|
stroked: true,
|
|
filled: true,
|
|
radiusUnits: 'pixels',
|
|
lineWidthUnits: 'pixels',
|
|
getLineWidth: 1.5,
|
|
}));
|
|
|
|
// 어구 이름 라벨
|
|
layers.push(new TextLayer({
|
|
id: 'selected-gear-labels',
|
|
data: gears,
|
|
getPosition: (d: Ship) => [d.lng, d.lat],
|
|
getText: (d: Ship) => d.name || d.mmsi,
|
|
getSize: 9 * zoomScale,
|
|
getColor: [249, 115, 22, 255],
|
|
getTextAnchor: 'middle' as const,
|
|
getAlignmentBaseline: 'top' as const,
|
|
getPixelOffset: [0, 10],
|
|
fontFamily: 'monospace',
|
|
outlineWidth: 2,
|
|
outlineColor: [0, 0, 0, 220],
|
|
billboard: false,
|
|
characterSet: 'auto',
|
|
}));
|
|
|
|
// 모선 강조 — 큰 원 + 라벨
|
|
if (parent) {
|
|
layers.push(new ScatterplotLayer({
|
|
id: 'selected-gear-parent',
|
|
data: [parent],
|
|
getPosition: (d: Ship) => [d.lng, d.lat],
|
|
getRadius: 14 * zoomScale,
|
|
getFillColor: [249, 115, 22, 80],
|
|
getLineColor: [249, 115, 22, 255],
|
|
stroked: true,
|
|
filled: true,
|
|
radiusUnits: 'pixels',
|
|
lineWidthUnits: 'pixels',
|
|
getLineWidth: 3,
|
|
}));
|
|
layers.push(new TextLayer({
|
|
id: 'selected-gear-parent-label',
|
|
data: [parent],
|
|
getPosition: (d: Ship) => [d.lng, d.lat],
|
|
getText: (d: Ship) => `▼ ${d.name || groupName} (모선)`,
|
|
getSize: 11 * zoomScale,
|
|
getColor: [249, 115, 22, 255],
|
|
getTextAnchor: 'middle' as const,
|
|
getAlignmentBaseline: 'top' as const,
|
|
getPixelOffset: [0, 18],
|
|
fontFamily: 'monospace',
|
|
fontWeight: 700,
|
|
outlineWidth: 3,
|
|
outlineColor: [0, 0, 0, 220],
|
|
billboard: false,
|
|
characterSet: 'auto',
|
|
}));
|
|
}
|
|
|
|
return layers;
|
|
}, [selectedGearData, zoomScale]);
|
|
|
|
// 분석 결과 deck.gl 레이어
|
|
const analysisActiveFilter = koreaFilters.illegalFishing ? 'illegalFishing'
|
|
: koreaFilters.darkVessel ? 'darkVessel'
|
|
: layers.cnFishing ? 'cnFishing'
|
|
: null;
|
|
|
|
const analysisDeckLayers = useAnalysisDeckLayers(
|
|
vesselAnalysis?.analysisMap ?? new Map(),
|
|
allShips ?? ships,
|
|
analysisActiveFilter,
|
|
zoomScale,
|
|
);
|
|
|
|
return (
|
|
<Map
|
|
ref={mapRef}
|
|
initialViewState={{ ...KOREA_MAP_CENTER, zoom: KOREA_MAP_ZOOM }}
|
|
style={{ width: '100%', height: '100%' }}
|
|
mapStyle={MAP_STYLE}
|
|
onZoom={e => setZoomLevel(Math.floor(e.viewState.zoom))}
|
|
>
|
|
<NavigationControl position="top-right" />
|
|
|
|
<Source id="country-labels" type="geojson" data={countryLabelsGeoJSON()}>
|
|
<Layer
|
|
id="country-label-lg"
|
|
type="symbol"
|
|
filter={['==', ['get', 'rank'], 1]}
|
|
layout={{
|
|
'text-field': ['get', 'name'],
|
|
'text-size': 15,
|
|
'text-font': ['Open Sans Bold', 'Arial Unicode MS Bold'],
|
|
'text-allow-overlap': false,
|
|
'text-ignore-placement': false,
|
|
'text-padding': 6,
|
|
}}
|
|
paint={{
|
|
'text-color': '#e2e8f0',
|
|
'text-halo-color': '#000000',
|
|
'text-halo-width': 2,
|
|
'text-opacity': 0.9,
|
|
}}
|
|
/>
|
|
<Layer
|
|
id="country-label-md"
|
|
type="symbol"
|
|
filter={['==', ['get', 'rank'], 2]}
|
|
layout={{
|
|
'text-field': ['get', 'name'],
|
|
'text-size': 12,
|
|
'text-font': ['Open Sans Bold', 'Arial Unicode MS Bold'],
|
|
'text-allow-overlap': false,
|
|
'text-ignore-placement': false,
|
|
'text-padding': 4,
|
|
}}
|
|
paint={{
|
|
'text-color': '#94a3b8',
|
|
'text-halo-color': '#000000',
|
|
'text-halo-width': 1.5,
|
|
'text-opacity': 0.85,
|
|
}}
|
|
/>
|
|
<Layer
|
|
id="country-label-sm"
|
|
type="symbol"
|
|
filter={['==', ['get', 'rank'], 3]}
|
|
minzoom={5}
|
|
layout={{
|
|
'text-field': ['get', 'name'],
|
|
'text-size': 10,
|
|
'text-font': ['Open Sans Regular', 'Arial Unicode MS Regular'],
|
|
'text-allow-overlap': false,
|
|
'text-ignore-placement': false,
|
|
'text-padding': 2,
|
|
}}
|
|
paint={{
|
|
'text-color': '#64748b',
|
|
'text-halo-color': '#000000',
|
|
'text-halo-width': 1,
|
|
'text-opacity': 0.75,
|
|
}}
|
|
/>
|
|
</Source>
|
|
|
|
{layers.ships && <ShipLayer ships={ships} militaryOnly={layers.militaryOnly} analysisMap={vesselAnalysis?.analysisMap} />}
|
|
{/* Transship suspect labels — Marker DOM, inline styles kept for dynamic border color */}
|
|
{transshipSuspects.size > 0 && ships.filter(s => transshipSuspects.has(s.mmsi)).map(s => (
|
|
<Marker key={`ts-${s.mmsi}`} longitude={s.lng} latitude={s.lat} anchor="bottom">
|
|
<div
|
|
className="rounded-sm text-[9px] font-bold font-mono whitespace-nowrap animate-pulse"
|
|
style={{
|
|
background: 'rgba(249,115,22,0.9)', color: '#fff',
|
|
padding: '1px 5px',
|
|
border: '1px solid #f97316',
|
|
textShadow: '0 0 2px #000',
|
|
}}
|
|
>
|
|
{`\u26A0 ${t('korea.transshipSuspect')}`}
|
|
</div>
|
|
</Marker>
|
|
))}
|
|
{/* Cable watch suspect labels */}
|
|
{cableWatchSuspects.size > 0 && ships.filter(s => cableWatchSuspects.has(s.mmsi)).map(s => (
|
|
<Marker key={`cw-${s.mmsi}`} longitude={s.lng} latitude={s.lat} anchor="bottom">
|
|
<div
|
|
className="rounded-sm text-[9px] font-bold font-mono whitespace-nowrap animate-pulse"
|
|
style={{
|
|
background: 'rgba(0,229,255,0.9)', color: '#000',
|
|
padding: '1px 5px',
|
|
border: '1px solid #00e5ff',
|
|
textShadow: '0 0 2px rgba(255,255,255,0.5)',
|
|
}}
|
|
>
|
|
{`\u{1F50C} ${t('korea.cableDanger')}`}
|
|
</div>
|
|
</Marker>
|
|
))}
|
|
{/* Dokdo watch labels (Japanese vessels) */}
|
|
{dokdoWatchSuspects.size > 0 && ships.filter(s => dokdoWatchSuspects.has(s.mmsi)).map(s => {
|
|
const dist = Math.round(Math.hypot(
|
|
(s.lng - 131.8647) * Math.cos((37.2417 * Math.PI) / 180),
|
|
s.lat - 37.2417,
|
|
) * 111);
|
|
const inTerritorial = dist < 22;
|
|
return (
|
|
<Marker key={`dk-${s.mmsi}`} longitude={s.lng} latitude={s.lat} anchor="bottom">
|
|
<div
|
|
className="rounded-sm text-[9px] font-bold font-mono whitespace-nowrap animate-pulse"
|
|
style={{
|
|
background: inTerritorial ? 'rgba(239,68,68,0.95)' : 'rgba(234,179,8,0.9)',
|
|
color: '#fff',
|
|
padding: '2px 6px',
|
|
border: `1px solid ${inTerritorial ? '#ef4444' : '#eab308'}`,
|
|
textShadow: '0 0 2px #000',
|
|
}}
|
|
>
|
|
{inTerritorial ? '\u{1F6A8}' : '\u26A0'} {'\u{1F1EF}\u{1F1F5}'} {inTerritorial ? t('korea.dokdoIntrusion') : t('korea.dokdoApproach')} {`${dist}km`}
|
|
</div>
|
|
</Marker>
|
|
);
|
|
})}
|
|
{layers.infra && infra.length > 0 && <InfraLayer facilities={infra} />}
|
|
{layers.satellites && satellites.length > 0 && <SatelliteLayer satellites={satellites} />}
|
|
{layers.aircraft && aircraft.length > 0 && <AircraftLayer aircraft={aircraft} militaryOnly={layers.militaryOnly} />}
|
|
{layers.cables && <SubmarineCableLayer />}
|
|
{layers.cctv && <CctvLayer />}
|
|
{/* 정적 레이어들은 deck.gl DeckGLOverlay로 전환됨 — 아래 DOM 레이어 제거 */}
|
|
{koreaFilters.illegalFishing && <FishingZoneLayer />}
|
|
{layers.cnFishing && <ChineseFishingOverlay ships={ships} analysisMap={vesselAnalysis?.analysisMap} />}
|
|
{layers.cnFishing && vesselAnalysis && vesselAnalysis.clusters.size > 0 && (
|
|
<FleetClusterLayer
|
|
ships={allShips ?? ships}
|
|
analysisMap={vesselAnalysis.analysisMap}
|
|
clusters={vesselAnalysis.clusters}
|
|
onShipSelect={handleAnalysisShipSelect}
|
|
onFleetZoom={handleFleetZoom}
|
|
onSelectedGearChange={setSelectedGearData}
|
|
/>
|
|
)}
|
|
{vesselAnalysis && vesselAnalysis.analysisMap.size > 0 && (
|
|
<AnalysisOverlay
|
|
ships={allShips ?? ships}
|
|
analysisMap={vesselAnalysis.analysisMap}
|
|
clusters={vesselAnalysis.clusters}
|
|
activeFilter={analysisActiveFilter}
|
|
/>
|
|
)}
|
|
|
|
{/* deck.gl GPU 오버레이 — 불법어선 강조 + 분석 위험도 마커 */}
|
|
<DeckGLOverlay layers={[
|
|
...staticDeckLayers,
|
|
illegalFishingLayer,
|
|
illegalFishingLabelLayer,
|
|
zoneLabelsLayer,
|
|
...selectedGearLayers,
|
|
...analysisDeckLayers,
|
|
].filter(Boolean)} />
|
|
{/* 정적 마커 클릭 Popup */}
|
|
{staticPickInfo && (() => {
|
|
const obj = staticPickInfo.object;
|
|
const lat = obj.lat ?? obj.launchLat ?? 0;
|
|
const lng = obj.lng ?? obj.launchLng ?? 0;
|
|
if (!lat || !lng) return null;
|
|
return (
|
|
<Popup longitude={lng} latitude={lat} anchor="bottom"
|
|
onClose={() => setStaticPickInfo(null)}
|
|
closeOnClick={false}
|
|
style={{ maxWidth: 280 }}
|
|
>
|
|
<div style={{ fontFamily: 'monospace', fontSize: 11, color: '#333', padding: 4 }}>
|
|
<div style={{ fontWeight: 700, marginBottom: 4 }}>
|
|
{obj.nameKo || obj.name || obj.launchNameKo || obj.type || staticPickInfo.kind}
|
|
</div>
|
|
{obj.description && <div style={{ fontSize: 10, color: '#666' }}>{obj.description}</div>}
|
|
{obj.date && <div style={{ fontSize: 10 }}>날짜: {obj.date} {obj.time || ''}</div>}
|
|
{obj.missileType && <div style={{ fontSize: 10 }}>미사일: {obj.missileType}</div>}
|
|
{obj.range && <div style={{ fontSize: 10 }}>사거리: {obj.range}</div>}
|
|
{obj.operator && <div style={{ fontSize: 10 }}>운영: {obj.operator}</div>}
|
|
{obj.capacity && <div style={{ fontSize: 10 }}>용량: {obj.capacity}</div>}
|
|
</div>
|
|
</Popup>
|
|
);
|
|
})()}
|
|
{layers.osint && <OsintMapLayer osintFeed={osintFeed} currentTime={currentTime} />}
|
|
{layers.eez && <EezLayer />}
|
|
|
|
{/* Filter Status Banner */}
|
|
{(() => {
|
|
const active = (Object.keys(koreaFilters) as (keyof KoreaFiltersState)[]).filter(k => koreaFilters[k]);
|
|
if (active.length === 0) return null;
|
|
return (
|
|
<div className="absolute top-2.5 left-1/2 -translate-x-1/2 z-20 flex gap-1.5 backdrop-blur-lg">
|
|
{active.map(k => {
|
|
const color = FILTER_COLOR[k];
|
|
return (
|
|
<div
|
|
key={k}
|
|
className="rounded-lg px-3 py-1.5 font-mono text-[11px] font-bold flex items-center gap-1.5 animate-pulse"
|
|
style={{
|
|
background: `${color}22`, border: `1px solid ${color}88`,
|
|
color,
|
|
}}
|
|
>
|
|
<span className="text-[13px]">{FILTER_ICON[k]}</span>
|
|
{t(FILTER_I18N_KEY[k])}
|
|
</div>
|
|
);
|
|
})}
|
|
<div className="rounded-lg px-3 py-1.5 font-mono text-xs font-bold flex items-center bg-kcg-glass border border-kcg-border-light text-white">
|
|
{t('korea.detected', { count: ships.length })}
|
|
</div>
|
|
</div>
|
|
);
|
|
})()}
|
|
|
|
{/* Dokdo alert panel */}
|
|
{dokdoAlerts.length > 0 && koreaFilters.dokdoWatch && (
|
|
<div className="absolute top-2.5 right-[50px] z-20 rounded-lg border border-kcg-danger px-2.5 py-2 font-mono text-[11px] min-w-[220px] max-h-[200px] overflow-y-auto bg-kcg-overlay backdrop-blur-lg shadow-[0_0_20px_rgba(239,68,68,0.3)]">
|
|
<div className="font-bold text-[10px] text-kcg-danger mb-1.5 tracking-widest flex items-center gap-1">
|
|
{`\u{1F6A8} ${t('korea.dokdoAlerts')}`}
|
|
</div>
|
|
{dokdoAlerts.map((a, i) => (
|
|
<div key={`${a.mmsi}-${i}`} className="flex flex-col gap-0.5" style={{
|
|
padding: '4px 0', borderBottom: i < dokdoAlerts.length - 1 ? '1px solid #222' : 'none',
|
|
}}>
|
|
<div className="flex justify-between items-center">
|
|
<span className="font-bold text-[10px]" style={{ color: a.dist < 22 ? '#ef4444' : '#eab308' }}>
|
|
{a.dist < 22 ? `\u{1F6A8} ${t('korea.territorialIntrusion')}` : `\u26A0 ${t('korea.approachWarning')}`}
|
|
</span>
|
|
<span className="text-kcg-dim text-[9px]">
|
|
{new Date(a.time).toLocaleTimeString('ko-KR', { hour: '2-digit', minute: '2-digit', second: '2-digit' })}
|
|
</span>
|
|
</div>
|
|
<div className="text-kcg-text-secondary text-[10px]">
|
|
{`\u{1F1EF}\u{1F1F5} ${a.name} \u2014 ${t('korea.dokdoDistance', { dist: a.dist })}`}
|
|
</div>
|
|
</div>
|
|
))}
|
|
</div>
|
|
)}
|
|
|
|
{/* 선택된 분석 선박 항적 — tracks API 응답 기반 */}
|
|
{trackCoords && trackCoords.length > 1 && (
|
|
<Source id="analysis-trail" type="geojson" data={{
|
|
type: 'FeatureCollection',
|
|
features: [{
|
|
type: 'Feature',
|
|
properties: {},
|
|
geometry: {
|
|
type: 'LineString',
|
|
coordinates: trackCoords,
|
|
},
|
|
}],
|
|
}}>
|
|
<Layer id="analysis-trail-line" type="line" paint={{
|
|
'line-color': '#00e5ff',
|
|
'line-width': 2.5,
|
|
'line-opacity': 0.8,
|
|
}} />
|
|
</Source>
|
|
)}
|
|
|
|
{/* AI Analysis Stats Panel — 항상 표시 */}
|
|
{vesselAnalysis && (
|
|
<AnalysisStatsPanel
|
|
stats={vesselAnalysis.stats}
|
|
lastUpdated={vesselAnalysis.lastUpdated}
|
|
isLoading={vesselAnalysis.isLoading}
|
|
analysisMap={vesselAnalysis.analysisMap}
|
|
ships={allShips ?? ships}
|
|
allShips={allShips ?? ships}
|
|
onShipSelect={handleAnalysisShipSelect}
|
|
onTrackLoad={handleTrackLoad}
|
|
/>
|
|
)}
|
|
</Map>
|
|
);
|
|
}
|