Class Destination
A destination. This includes the primary place, related places, entrances, and navigation points.
Implements
Namespace: Google.Maps.Geocode.V4
Assembly: Google.Maps.Geocode.V4.dll
Syntax
public sealed class Destination : IMessage<Destination>, IEquatable<Destination>, IDeepCloneable<Destination>, IBufferMessage, IMessage
Constructors
Destination()
Declaration
public Destination()
Destination(Destination)
Declaration
public Destination(Destination other)
Parameters
| Type | Name | Description |
|---|---|---|
| Destination | other |
Properties
ContainingPlaces
The less precise places that the primary place is contained by. For example, the apartment complex that contains this building.
Declaration
public RepeatedField<PlaceView> ContainingPlaces { get; }
Property Value
| Type | Description |
|---|---|
| RepeatedField<PlaceView> |
Entrances
Entrances for this destination.
Declaration
public RepeatedField<Entrance> Entrances { get; }
Property Value
| Type | Description |
|---|---|
| RepeatedField<Entrance> |
Landmarks
Landmarks that can be used to communicate where the destination is or help with arrival.
Declaration
public RepeatedField<Landmark> Landmarks { get; }
Property Value
| Type | Description |
|---|---|
| RepeatedField<Landmark> |
NavigationPoints
Navigation points for this destination.
Declaration
public RepeatedField<NavigationPoint> NavigationPoints { get; }
Property Value
| Type | Description |
|---|---|
| RepeatedField<NavigationPoint> |
Primary
The primary place identified by the primary_query in the request.
Declaration
public PlaceView Primary { get; set; }
Property Value
| Type | Description |
|---|---|
| PlaceView |
SubDestinations
More precise sub-destinations of the primary place. For example, units contained in a building.
Note: compared to the SubDestination returned by the Places API, this list of sub-destinations is more exhaustive, and each sub-destination contains more information.
Declaration
public RepeatedField<PlaceView> SubDestinations { get; }
Property Value
| Type | Description |
|---|---|
| RepeatedField<PlaceView> |