don't use node reported altitude for now

This commit is contained in:
liamcottle
2024-11-24 17:08:08 +13:00
parent 53c104e3ad
commit f4295deb04

View File

@ -3121,13 +3121,13 @@
const node1MarkerColour = "0000FF"; // blue const node1MarkerColour = "0000FF"; // blue
const node1Latitude = node1.latitude; const node1Latitude = node1.latitude;
const node1Longitude = node1.longitude; const node1Longitude = node1.longitude;
const node1ElevationMSL = node1.altitude ?? ""; const node1ElevationMSL = ""; // node1.altitude ?? "";
// node 2 (right side of image) // node 2 (right side of image)
const node2MarkerColour = "0000FF"; // blue const node2MarkerColour = "0000FF"; // blue
const node2Latitude = node2.latitude; const node2Latitude = node2.latitude;
const node2Longitude = node2.longitude; const node2Longitude = node2.longitude;
const node2ElevationMSL = node2.altitude ?? ""; const node2ElevationMSL = ""; // node2.altitude ?? "";
// generate terrain profile image url // generate terrain profile image url
return "https://heywhatsthat.com/bin/profile-0904.cgi?" + new URLSearchParams({ return "https://heywhatsthat.com/bin/profile-0904.cgi?" + new URLSearchParams({