Hello,
I use the code below to get the long lat of the location where the user clicked on a Google Map (in Android).
Projection p = map.getProjection();
geoPoint = p.fromPixels((int) e.getX(), (int) e.getY());
It gives me coordinates, however it does not place a decimal in the geoPoint. Any suggestions on how to do this? Thanks.