I am using google place api to search specific types like(gas_station,cafes,shopping_malls etc...) here is link i am using https://maps.googleapis.com/maps/api/place/search/json?location=41.104805,29.024291&radius=50000&types=gas_station&sensor=false&key=AIzaSyAhVKOOLN1lx6iKKnbXMT82W1cKG7O8cDY

so here i need to search all gas_stations nearby my location so here i get "

results" : [],
   "status" : "ZERO_RESULTS"

But in my location some gas_stations are there(i search google map) so how can i get these results can any one help me..

Thanks for advance.

link|improve this question

53% accept rate
feedback

1 Answer

up vote 1 down vote accepted

The problem is with the categorization of the data. If you do a search for types=university you'll see a number of results. Now look at the types in those results - they're listed mostly as ["university", "establishment"].

All of the gas stations in the area are only categorized as ["establishment"], so they're not coming up in your search for gas_station.

You could use the keyword search to return businesses with "gas%20station" in their metadata. It seems to return the same results as searching for "gas station" around that area in Google Maps.

link|improve this answer
thanks for your response i tried type establishment also i get 20 locations but in this there is no gas_stations – Ajay Chthri Dec 29 '11 at 6:22
It seems that the gas stations aren't categorized beyond 'establishment'. I'd suggest not using the type parameter for this particular search, and just using keyword=gas%20station. That'll give you the same (or very similar) results as when you search for 'gas station' on Google Maps in the same area. – Mike Jeffrey Dec 29 '11 at 18:39
thanks mike...it's working so i need some more type like cafes, shopping_malls so can i write this keyword=gas%20station|cafes|shopping%20malls ?how can increment locations count i get only 20 can i increment this count? – Ajay Chthri Dec 30 '11 at 5:21
As far as I know, there's no way to do 'OR' searches like that with the keyword field. You could search for all of the terms, but they'd be returned as a group with no way to differentiate between each type. You're better to run multiple Place searches, if you need to keep track of categories. Re: getting more than 20 results, there's no documented start or page parameter that would suggest the ability to retrieve further results. – Mike Jeffrey Jan 4 at 18:34
feedback

Your Answer

 
or
required, but never shown

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