1 minute read

If your developing applications on Android, and are looking at using the Maps API, chances are you are going to want to plot items on the map, and in order to do that you need to know the longtitude and latitude of the location you wish to mark.

I’ll assume that you already have a solid base to work from, as in a working Android application with a MapView enabled.

To locate an item on the map you need to use a GeoPoint, example below

private float longtitude;
private float latitude;
GeoPoint p = new GeoPoint((int)(latitude * 1E6), (int)(longtitudel * 1E6));

Notice the usage of float values, the easiest way of getting from a postcode to a co ordinate is to obtain the longtitude and latitude values from a conversion website, and then to add it to the above forumla. The reason being is because it is incredibly difficult to find the int values of a co ordinates, so it is easier to get a float value and convert

In brief, do the following

  1. Go to MyGeoPosition.com and enter your postcode
  2. From the URLs it generates, take the longtitude and latitude values, then enter them in the above float variables
  3. Generate your GeoPoint using the above formula
  4. Start plotting!

Categories: ,

Updated: