I am having issues with passing a longitude and latitude to the google directions api (http://code.google.com/apis/maps/documentation/directions/) can anyone tell me what i am doing wrong, i am always getting no results but if i use address its fine

JSONObject jsonLocation = JSONfunctions.getJSONfromURL("http://maps.googleapis.com/maps/api/directions/json?origin=" + currentLongitude + "," +  currentLatitude + "&destination=" + longitude + "," + longitude +"&sensor=true&region=gb");

Thanks

link|improve this question

I am an idiot, i got the lat and longitude the wrong way round – Jonathan Dixon Jan 12 at 10:55
longitude + "," + longitude is probably nor what you want – njzk2 Jan 13 at 9:10
no it definitely wasnt :-) – Jonathan Dixon Jan 13 at 10:28
feedback

2 Answers

Use this Code

Intent intent = new Intent(
                            android.content.Intent.ACTION_VIEW,
                            Uri.parse("http://maps.google.com/maps?saddr="+ latitude + "," + Longitude+ "&daddr="+latitudeDb+","+longitudeDb+""));
                    intent.setClassName("com.google.android.apps.maps",
                            "com.google.android.maps.MapsActivity");
                    startActivity(intent);
link|improve this answer
Thanks but i wanted to put the results into a listview – Jonathan Dixon Jan 13 at 9:09
feedback
up vote 0 down vote accepted

I solved the problem by putting the parameters in the correct order, latitude should come before longitude

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.