Currently working in Google Map App.I want to use Google transit API in android application. I am using like this.
What is departure_time? How can I find. All the details I'm getting dynamically(the user choices).
<li>
String url = "http://maps.googleapis.com/maps/api/directions/xml?" +
"origin=" + start.latitude + "," + start.longitude +
"&destination=" + end.latitude + "," + end.longitude +
"&sensor =false &units=metric&mode=trnsit......."
</li>
like this I'm using.
Can anyone please help me with
- How can I find departure time dynamically and
- where can I get?