Tagged Questions
2
votes
1answer
113 views
When doing a reverse geocoding request Google magically recognizes my iPhone language
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, ...
1
vote
1answer
46 views
Google Geocoding UK address does not get listed
I followed the examples in following site,
http://code.google.com/apis/maps/documentation/geocoding/
So I expected following url would give me UK addresses. But it is still giving me US address. Any ...
0
votes
1answer
630 views
Reverse Geocode on Client Side (Google Maps V3 API)
How do you do a Reverse Geocode on the clientside using Google Maps V3 API? The forward geocode from address to LatLng is straight forward (code below), but how do you do the same for reverse geocode?
...
0
votes
1answer
815 views
Address component type in google maps geocoding
this is a part of my geocoding code. I want it to show only country of the selected place, but it shows all address components, My problem is I cant specify the address components object. There is a ...
0
votes
3answers
997 views
Returning neighborhood based on address with Google geocoder/API
Is there any way to effectively/accurately pull out a neighborhood within a city based on a passed in address, zip, city, state to the Google Geocoder?
Whenever I try to do it via HTTP (ideal ...