Tagged Questions
2
votes
0answers
17 views
How to get reliable U.S. state responses by reverse geocoding?
Google sometimes returns the incorrect U.S. state when reverse geocoding a lat/long. Presumably this is because Google is trying to return the nearest street address, which in some cases is not in ...
2
votes
1answer
124 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
50 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
777 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
843 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
4answers
1k 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 ...