Table of Contents

Class GeocodingResults

Namespace
GoogleMapsApi.Entities.Routes.Response
Assembly
GoogleMapsApi.dll

Diagnostic information about how the request's waypoints were geocoded. Returned only when the request supplies waypoints by free-text address (waypoints supplied by place ID or lat/lng do not require geocoding).

public sealed class GeocodingResults
Inheritance
GeocodingResults
Inherited Members

Properties

Destination

Geocoded destination waypoint.

[JsonPropertyName("destination")]
public GeocodedWaypoint? Destination { get; set; }

Property Value

GeocodedWaypoint

Intermediates

Geocoded intermediate waypoints, in input order.

[JsonPropertyName("intermediates")]
public List<GeocodedIntermediate>? Intermediates { get; set; }

Property Value

List<GeocodedIntermediate>

Origin

Geocoded origin waypoint.

[JsonPropertyName("origin")]
public GeocodedWaypoint? Origin { get; set; }

Property Value

GeocodedWaypoint