Table of Contents

Class Result

Namespace
GoogleMapsApi.Entities.Elevation.Response
Assembly
GoogleMapsApi.dll
public class Result
Inheritance
Result
Inherited Members

Properties

Elevation

An elevation element indicating the elevation of the location in meters.

[JsonPropertyName("elevation")]
public double Elevation { get; set; }

Property Value

double

Location

A location element (containing lat and lng elements) of the position for which elevation data is being computed. Note that for path requests, the set of location elements will contain the sampled points along the path.

[JsonPropertyName("location")]
public Location Location { get; set; }

Property Value

Location

Resolution

The value indicating the maximum distance between data points from which the elevation was interpolated, in meters. This property will be missing if the resolution is not known. Note that elevation data becomes more coarse (larger resolution values) when multiple points are passed. To obtain the most accurate elevation value for a point, it should be queried independently.

[JsonPropertyName("resolution")]
public double Resolution { get; set; }

Property Value

double