Class Waypoint
Encapsulates a waypoint. Waypoints mark arrival and departure locations of
VisitRequests, and start and end locations of Vehicles.
Assembly: Google.Maps.RouteOptimization.V1.dll
Syntax
public sealed class Waypoint : IMessage<Waypoint>, IEquatable<Waypoint>, IDeepCloneable<Waypoint>, IBufferMessage, IMessage
Constructors
Waypoint()
Declaration
Waypoint(Waypoint)
Declaration
public Waypoint(Waypoint other)
Parameters
Properties
HasPlaceId
Gets whether the "place_id" field is set
Declaration
public bool HasPlaceId { get; }
Property Value
Location
A point specified using geographic coordinates, including an optional
heading.
Declaration
public Location Location { get; set; }
Property Value
LocationTypeCase
Declaration
public Waypoint.LocationTypeOneofCase LocationTypeCase { get; }
Property Value
PlaceId
The POI Place ID associated with the waypoint.
Declaration
public string PlaceId { get; set; }
Property Value
SideOfRoad
Optional. Indicates that the location of this waypoint is meant to have a
preference for the vehicle to stop at a particular side of road. When you
set this value, the route will pass through the location so that the
vehicle can stop at the side of road that the location is biased towards
from the center of the road. This option doesn't work for the 'WALKING'
travel mode.
Declaration
public bool SideOfRoad { get; set; }
Property Value