Tito Rahman
Tito Rahman

Reputation: 107

Google MAP help

I have a map in my app, and I want to click a random place on the map and

Upvotes: 1

Views: 93

Answers (1)

Fredrik
Fredrik

Reputation: 1312

To find out what's nearby you can use google's reverse GeoCoding -> Reverse GeoCoding

And to convert coordinates to pixels and vice versa take a look at projections and GeoPoints

Here's an example


        GeoPoint gP1 = new GeoPoint(19240000,-99120000);
        projection.toPixels(gP1, point);

Upvotes: 1

Related Questions