Show / Hide Table of Contents

Class GeocodingResults

Contains [GeocodedWaypoints][google.maps.routing.v2.GeocodedWaypoint] for origin, destination and intermediate waypoints. Only populated for address waypoints.

Inheritance
object
GeocodingResults
Implements
IMessage<GeocodingResults>
IEquatable<GeocodingResults>
IDeepCloneable<GeocodingResults>
IBufferMessage
IMessage
Inherited Members
object.GetHashCode()
object.GetType()
object.ToString()
Namespace: Google.Maps.Routing.V2
Assembly: Google.Maps.Routing.V2.dll
Syntax
public sealed class GeocodingResults : IMessage<GeocodingResults>, IEquatable<GeocodingResults>, IDeepCloneable<GeocodingResults>, IBufferMessage, IMessage

Constructors

GeocodingResults()

Declaration
public GeocodingResults()

GeocodingResults(GeocodingResults)

Declaration
public GeocodingResults(GeocodingResults other)
Parameters
Type Name Description
GeocodingResults other

Properties

Destination

Destination geocoded waypoint.

Declaration
public GeocodedWaypoint Destination { get; set; }
Property Value
Type Description
GeocodedWaypoint

Intermediates

A list of intermediate geocoded waypoints each containing an index field that corresponds to the zero-based position of the waypoint in the order they were specified in the request.

Declaration
public RepeatedField<GeocodedWaypoint> Intermediates { get; }
Property Value
Type Description
RepeatedField<GeocodedWaypoint>

Origin

Origin geocoded waypoint.

Declaration
public GeocodedWaypoint Origin { get; set; }
Property Value
Type Description
GeocodedWaypoint
In this article
Back to top Generated by DocFX