fix incorrect labelling of latitude as longitude

This commit is contained in:
Andrew
2023-02-06 12:37:48 +00:00
parent f89995967c
commit 52762f66af

View File

@ -4,7 +4,7 @@
<p>Date: {{ selectedDataMap["TrainDate"] }}</p> <p>Date: {{ selectedDataMap["TrainDate"] }}</p>
<p>Status: {{ selectedDataMap["TrainStatus"] }}</p> <p>Status: {{ selectedDataMap["TrainStatus"] }}</p>
<p>Longitude: {{ selectedDataMap["TrainLongitude"] }}</p> <p>Longitude: {{ selectedDataMap["TrainLongitude"] }}</p>
<p>Longitude: {{ selectedDataMap["TrainLatitude"] }}</p> <p>Latitude: {{ selectedDataMap["TrainLatitude"] }}</p>
<p>Direction: {{ selectedDataMap["Direction"] }}</p> <p>Direction: {{ selectedDataMap["Direction"] }}</p>
<p>Public Message: {{ selectedDataMap["PublicMessage"] }}</p> <p>Public Message: {{ selectedDataMap["PublicMessage"] }}</p>
</div> </div>