com.google.maps.gwt.client
Class DirectionsWaypoint

java.lang.Object
  extended by JavaScriptObject
      extended by com.google.maps.gwt.client.DirectionsWaypoint

public class DirectionsWaypoint
extends JavaScriptObject

A DirectionsWaypoint represents a location between origin and destination through which the trip should be routed. THIS SOURCE CODE IS GENERATED, DO NOT MODIFY


Constructor Summary
protected DirectionsWaypoint()
          Protected constructor avoids default public constructor.
 
Method Summary
static DirectionsWaypoint create()
           
 void setLocation(LatLng location)
          Waypoint location.
 void setLocation(java.lang.String location)
          Waypoint location.
 void setStopover(boolean stopover)
          If true , indicates that this waypoint is a stop between the origin and destination.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

DirectionsWaypoint

protected DirectionsWaypoint()
Protected constructor avoids default public constructor.

Method Detail

create

public static final DirectionsWaypoint create()

setLocation

public final void setLocation(LatLng location)
Waypoint location. Can be an address string or LatLng . Optional.


setLocation

public final void setLocation(java.lang.String location)
Waypoint location. Can be an address string or LatLng . Optional.


setStopover

public final void setStopover(boolean stopover)
If true , indicates that this waypoint is a stop between the origin and destination. This has the effect of splitting the route into two. This value is true by default. Optional.