From eeefdaa180fd1bdf89f3d8c8c070c9a9f099170a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=97=A0=E9=97=BB=E9=A3=8E?= Date: Tue, 16 Jun 2026 19:56:42 +0800 Subject: [PATCH] =?UTF-8?q?=E8=B0=83=E6=95=B4=E8=BD=A8=E8=BF=B9=E6=B5=AE?= =?UTF-8?q?=E7=AA=97=E5=AE=BD=E5=BA=A6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude --- meshmap_frontend/src/components/NodeTrajectoryMap.vue | 2 +- meshmap_frontend/src/style.css | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/meshmap_frontend/src/components/NodeTrajectoryMap.vue b/meshmap_frontend/src/components/NodeTrajectoryMap.vue index 864dee8..b3b1daa 100644 --- a/meshmap_frontend/src/components/NodeTrajectoryMap.vue +++ b/meshmap_frontend/src/components/NodeTrajectoryMap.vue @@ -106,7 +106,7 @@ function renderTrajectory() { const isStart = index === 0 const isEnd = index === positions.length - 1 L.circleMarker(points[index], pointStyle(isStart, isEnd)) - .bindPopup(buildPositionPopupHTML(position, isStart, isEnd), { maxWidth: 280, className: 'trajectory-point-popup' }) + .bindPopup(buildPositionPopupHTML(position, isStart, isEnd), { maxWidth: 340, className: 'trajectory-point-popup' }) .addTo(trajectoryLayer) }) map.fitBounds(L.latLngBounds(points), { padding: [24, 24], maxZoom: 14 }) diff --git a/meshmap_frontend/src/style.css b/meshmap_frontend/src/style.css index f281c47..d15b01e 100644 --- a/meshmap_frontend/src/style.css +++ b/meshmap_frontend/src/style.css @@ -1308,8 +1308,8 @@ h3 { } .trajectory-point-popup .leaflet-popup-content { - width: 240px !important; - max-width: 240px !important; + width: 320px !important; + max-width: 320px !important; } .trajectory-popup {