Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to show a location on a map based on latitude and longitude coordinates. When I press a button I want to send the coordinates to Google Maps (or other app) and pinpoint that location. Any ideas of how I can achieve that?

share|improve this question
What do you mean by finding location? You want to animate to a certain location? – Carnal Oct 18 '12 at 12:09
search in google maps for "32.297581,-64.775734" – PKeidel Oct 18 '12 at 12:10
want to know the location name or showing marker on that location?? – Lokesh Oct 18 '12 at 12:10
What have you tried so far? What theory have you read on topic? – Egor Oct 18 '12 at 12:11
This is a good start: stackoverflow.com/a/8428414/469983 – Adinia Oct 18 '12 at 12:26

4 Answers

If you want to animate to a specific point on a google map you need to define a MapView. Then create a MapController and animate to a specific GeoPoint:

MapController mapController = mapView.getController();

double lat = latitude * 1e6;
double lon = longitude * 1e6;

GeoPoint startpoint = new GeoPoint((int) lat, (int) lon);
mapController.animateTo(startpoint);

Try this tutorial :MapView Tutorial

share|improve this answer
up vote 0 down vote accepted

I've found a simple solution. I start the google maps app via an intent

Intent intent = new Intent(android.content.Intent.ACTION_VIEW, 
                        Uri.parse("http://maps.google.com/maps?q=" + serviceActivity.Latitude.toString() + "," + serviceActivity.Longitude.toString()));
                        startActivity(intent);
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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