I just tested this there are a few items to note from my initial post. Firstly, the curly brackets need to be removed, secondly, the heights parameter value should have {heights} replaced by sealevel.
Please see the below sample URL and append your key to the end:
http://dev.virtualearth.net/REST/v1/Elevation/List?points=29.645200,-95.278678&heights=sealevel&key=
This should return an elevation of 13 m at William P. Hobby Airport in Houston, TX which aligns with the result I get from Open Street Map for the same location.
Therefore, try the following expression:
Concat("http://dev.virtualearth.net/REST/v1/Elevation/List?points=", ..\Latitude,",", ..\Longitude,"&heights=sealevel&key=YourKey" )
I just tested this there are a few items to note from my initial post. Firstly, the curly brackets need to be removed, secondly, the heights parameter value should have {heights} replaced by sealevel.
Please see the below sample URL and append your key to the end:
http://dev.virtualearth.net/REST/v1/Elevation/List?points=29.645200,-95.278678&heights=sealevel&key=
This should return an elevation of 13 m at William P. Hobby Airport in Houston, TX which aligns with the result I get from Open Street Map for the same location.
Therefore, try the following expression:
Concat("http://dev.virtualearth.net/REST/v1/Elevation/List?points=", ..\Latitude,",", ..\Longitude,"&heights=sealevel&key=YourKey" )
Trihedral Engineering Ltd.