Look up elevation at one or more points
ElevationLookupResult Elevation.Lookup(ElevationLookupParams?parameters, CancellationTokencancellationToken = default)
GET/api/v1/elevation
Look up elevation at one or more points
ElevationLookupParams parameters = new();
var elevationLookupResult = await client.Elevation.Lookup(parameters);
Console.WriteLine(elevationLookupResult);{
"geometry": {
"coordinates": [
2.3522,
48.8566
],
"type": "Point"
},
"properties": {
"elevation_m": 35.2
},
"type": "Feature"
}Returns Examples
{
"geometry": {
"coordinates": [
2.3522,
48.8566
],
"type": "Point"
},
"properties": {
"elevation_m": 35.2
},
"type": "Feature"
}