Package com.google.maps.model
Class DirectionsResult
- java.lang.Object
-
- com.google.maps.model.DirectionsResult
-
- All Implemented Interfaces:
java.io.Serializable
public class DirectionsResult extends java.lang.Object implements java.io.Serializable
DirectionsResult represents a result from the Google Directions API Web Service.Please see Directions API for more detail.
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description GeocodedWaypoint[]
geocodedWaypoints
Details about the geocoding of origin, destination, and waypoints.DirectionsRoute[]
routes
Routes from the origin to the destination.
-
Constructor Summary
Constructors Constructor Description DirectionsResult()
-
-
-
Field Detail
-
geocodedWaypoints
public GeocodedWaypoint[] geocodedWaypoints
Details about the geocoding of origin, destination, and waypoints. See Geocoded Waypoints for more detail.
-
routes
public DirectionsRoute[] routes
Routes from the origin to the destination. See Routes for more detail.
-
-