vote up 1 vote down star

I am trying to get an address based on the long/lat. it appears that something like this should work?

Geocoder myLocation = Geocoder(Locale.getDefault());
    List myList = myLocation.getFromLocation(latPoint,lngPoint,1);

The issue is that I keep getting : The method Geocoder(Locale) is undefined for the type savemaplocation

Any assistance would be helpful. Thank you.

flag

5 Answers

vote up 0 vote down check

The following code snippet is doing it for me (lat and lng are doubles declared above this bit):

Geocoder geocoder = new Geocoder(this, Locale.getDefault());
List<Address> addresses = geocoder.getFromLocation(lat, lng, 1);
link|flag
I also tried this, each time I try to view the address list, it bombs out. Not sure what is going on. I will try with a new app here in a day or two to see what I can find. – Chrispix Jan 26 at 3:32
I found this very helpful for positioning stuff: blogoscoped.com/archive/2008-12-15-n14.html/… – Wilfred Knievel Jan 29 at 17:30
...also I've got the following two permissions in my manifest: <uses-permission android:name="android.permission.INTERNET" /> <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" /> When I missed one of them out (can't remember which one) the app threw a really unhelpful error. – Wilfred Knievel Jan 29 at 17:39
vote up 5 vote down

It looks like there's two things happening here.

1) You've missed the new keyword from before calling the constructor.

2) The parameter you're passing in to the Geocoder constructor is incorrect. You're passing in a Locale where it's expecting a Context.

There are two Geocoder constructors, both of which require a Context, and one also taking a Locale:

Geocoder(Context context, Locale locale)
Geocoder(Context context)

Solution

Modify your code to pass in a valid Context and include new and you should be good to go.

Geocoder myLocation = new Geocoder(getApplicationContext(), Locale.getDefault());   
List<Address> myList = myLocation.getFromLocation(latPoint, lngPoint, 1);

Note

If you're still having problems it may be a permissioning issue. Geocoding implicitly uses the Internet to perform the lookups, so your application will require an INTERNET uses-permission tag in your manifest.

Add the following uses-permission node within the manifest node of your manifest.

<uses-permission android:name="android.permission.INTERNET" />
link|flag
Thank you, I think I was working too late last night, not sure what happened to my new. I think I forgot it originally, put it back on when I only had my Locale, and then when I went back, forgot it again.. I appreciate it.. – Chrispix Jan 23 at 16:44
No worries, I didn't spot it first time either :) – Reto Meier Jan 23 at 16:58
vote up 0 vote down

Thanks, I tried the context, locale one first, and that failed and was looking at some of the other constructors (I had seen one that had mentioned just locale). Regardless,

It did not work, as I am still getting : The method Geocoder(Context, Locale) is undefined for the type savemaplocation

I do have : import android.location.Geocoder;

link|flag
This might be a typo, but have you missed out the 'new' keyword? I've updated my answer to explain what I mean. – Reto Meier Jan 23 at 13:33
vote up 0 vote down

Well, I am still stumped. So here is more code.

Before I leave my map, I call SaveLocation(myMapView,myMapController); This is what ends up calling my geocoding information.

But since getFromLocation can throw an IOException, I had to do the following to call SaveLocation

try {
				SaveLocation(myMapView,myMapController);
			} catch (IOException e) {
				// TODO Auto-generated catch block
				e.printStackTrace();
			}

Then

I have to change SaveLocation by saying it throws IOExceptions : public void SaveLocation(MapView mv, MapController mc) throws IOException{

I do this : Geocoder myLocation = new Geocoder(getApplicationContext(), Locale.getDefault());
List myList = myLocation.getFromLocation(latPoint, lngPoint, 1);

And it crashes every time.

link|flag
Could be a permissions problem. The geocoder uses the internet to do the lookups so you need an Internet uses-permission. Updated the answer with details. – Reto Meier Jan 24 at 11:40
I have the internet permissions on there for the mapping. Very strange why it keeps failing. Let me get a logcat. – Chrispix Jan 24 at 14:53
This is the exception I am getting : java.lang.IllegalArgumentException: latitude == 3.2945512E7 – Chrispix Feb 10 at 7:24
I think I figured it out, it needed the lat/long not E7 (i.e. 32.945512) – Chrispix Feb 10 at 7:41
vote up 0 vote down

I've heard that Geocoder is on the buggy side. I recently put together an example application that uses Google's http geocoding service to lookup location from lat/long. Feel free to check it out here

http://www.smnirven.com/?p=39

link|flag

Your Answer

Get an OpenID
or

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