I have a mobile app where I need try and predictably guess which residential location the user is standing in front of. (Not businesses)

I see the google places api, but it doesn't look like it does residential? http://code.google.com/apis/maps/documentation/places/#PlaceSearches

I tried searching with a lat an long in a neighborhood, and it brought up all sorts of results that were close by, like parks and schools, but not residential.

Am I missing something? Is there something out there that will let me see what homes are close to a lat,long point?

link|improve this question

Here is a good start, but now I need to know if I can do multiple addresses that are close to that point. code.google.com/apis/maps/documentation/geocoding/… – b-ryce Dec 12 '11 at 19:17
feedback

1 Answer

up vote 2 down vote accepted

The Places API probably won't work for you since it's querying a databases of places or businesses, not residential addresses. You might want to consider reverse geocoding to the closest address from that point on the map instead: http://code.google.com/apis/maps/documentation/geocoding/#ReverseGeocoding

link|improve this answer
Yeah, thats what I put in my comment as well. I just wish I could see a list of locations that are close, not just find the closest one. – b-ryce Dec 19 '11 at 14:27
feedback

Your Answer

 
or
required, but never shown

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