Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix gps
  • Loading branch information
LukePrior committed Oct 14, 2021
commit c0ab72cbfc6ca04987f72b5b37925ccffb785902
2 changes: 1 addition & 1 deletion js/tracker.js
Original file line number Diff line number Diff line change
Expand Up @@ -884,7 +884,7 @@ function showLaunchSites() {
popupLink += "&entry.675505431=" + json[key].station_name.replace(/\s/g, '+');
}
if (json[key].hasOwnProperty('position')) {
popupLink += "&entry.1613779787=" + json[key].position.toString();
popupLink += "&entry.1613779787=" + json[key].position.reverse().toString();
}
if (json[key].hasOwnProperty('alt')) {
popupLink += "&entry.753148337=" + json[key].alt;
Expand Down