Skip to content

Commit

Permalink
bing dem datum fix
Browse files Browse the repository at this point in the history
  • Loading branch information
breadoven committed Apr 27, 2024
1 parent a4fd2bc commit 5dff190
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/waypoint.js
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ let Waypoint = function (number, action, lat, lon, alt=0, p1=0, p2=0, p3=0, endM
self.getElevation = async function (globalSettings) {
let elevation = "N/A";
if (globalSettings.mapProviderType == 'bing') {
let elevationEarthModel = $('#elevationEarthModel').prop("checked") ? "sealevel" : "ellipsoid";
let elevationEarthModel = $('#elevationEarthModel').prop("checked") ? "ellipsoid" : "sealevel";

const response = await fetch('http://dev.virtualearth.net/REST/v1/Elevation/List?points='+self.getLatMap()+','+self.getLonMap()+'&heights='+elevationEarthModel+'&key='+globalSettings.mapApiKey);
const myJson = await response.json();
Expand Down

0 comments on commit 5dff190

Please sign in to comment.