Im sending a simple url request using the following url:

urlString = [NSString stringWithFormat: 
             @"http://maps.googleapis.com/maps/api/geocode/xml?latlng=%f,%f&sensor=true", lat, lng];

Let's say my current location is Europe, Romania, Oradea.

If I set my iPhone to German for example, I get the city name in german. Somehow Google magically knows that my iPhone is German and returns geocoding data in german (Grosswardein). The problem is I would really like to have the city name untranslated (Oradea in romanian). How does google know that my iPhone's language is German, and how do I stop this. I'm not using MKReverseGeocoder because I couldn't turn this feature off but now I'm facing the exact same problem here.

Update: There are no headers sent: [request allHTTPHeaderFields] returns null. It seems Google is clairvoyant.

Update: This: [request setValue: @"*" forHTTPHeaderField: @"Accept-Language"] seems to work. As far as I understand from here I should use an asterisk. BTW Wireshark is awesome.

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

You could try to see if your request includes Accept-Language HTTP headers. Dunno how you send it, but it sounds like it does.

link|improve this answer
Thanks for help, I verified the Accept-Language header after I created the request and it's nil. Is there a way to see all the headers sent? – gyozo kudor Aug 5 '11 at 6:33
1  
@gyozo kudor: Why not use Wireshark to see the entire dialogue between your app and Google? That way you can pin down exactly what is giving it away. – Sedate Alien Aug 5 '11 at 6:58
Wireshark tells me that there is indeed an Accept-Language header there and it is set to de-de, This is after I set it to nil like this [request setValue: nil forHTTPHeaderField: @"Accept-Language"]. – gyozo kudor Aug 5 '11 at 7:49
But setting the header to an empty string instead of nil works. – gyozo kudor Aug 5 '11 at 7:56
So it seems that if Accept-Language isn't set, Google does a geoIP lookup to guess your language. Question solved, it seems. – Cyrille Aug 5 '11 at 8:01
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

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