What do I need to use to get a search listing
using the google maps API?
I can get one address
or lat/long but I want to search for say “bars 84070”
and get a list of addresses and lat/long.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can iterate over the list of results you get back from your search api query:
Update:
According to the Search object documentation if you specify that you want a “large” (google.search.Search.LARGE_RESULTSET) number of results, you will typically get 8 results.
I suggest if you want more local results for an are, you make multiple local search requests for a range of center points and then filter out the duplicates.