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 {