From 4f49ff815d202e67ce893567b75a99b23d731937 Mon Sep 17 00:00:00 2001 From: ken910606 Date: Thu, 12 Feb 2026 16:10:22 +0800 Subject: [PATCH] Upload files to 'src/GUI' --- src/GUI/map_layout.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/GUI/map_layout.py b/src/GUI/map_layout.py index 01cceb6..c77c1fb 100644 --- a/src/GUI/map_layout.py +++ b/src/GUI/map_layout.py @@ -353,13 +353,13 @@ class DroneMap: const startBtn = document.getElementById('start-mission-btn'); if (centerPosition) { - centerElem.textContent = `${centerPosition.lat.toFixed(6)}, ${centerPosition.lng.toFixed(6)}`; + centerElem.textContent = `${centerPosition.lat.toFixed(6)}°, ${centerPosition.lng.toFixed(6)}°`; } else { centerElem.textContent = '未設定'; } if (targetPosition) { - targetElem.textContent = `${targetPosition.lat.toFixed(6)}, ${targetPosition.lng.toFixed(6)}`; + targetElem.textContent = `${targetPosition.lat.toFixed(6)}°, ${targetPosition.lng.toFixed(6)}°`; } else { targetElem.textContent = '未設定'; }