Sunday 16 October 2011

Convert Latitude and Longitude to android.maps.GeoPoint

Use the following code snippets


 
GeoPoint point = new GeoPoint((int)(latitude * 1e6), (int)(longitude * 1e6));
 

No comments:

Post a Comment