I need all locations of type cafe, gas_station, and restaurant using Google Places Api. Here is my query via the API:

https://maps.googleapis.com/maps/api/place/search/json?location=41.104805,29.024291&radius=50000&sensor=true&key=AIzaSyAVH0qHD6BPxRlnck3rIqcxC5TTwOTyfds&types=gas_station||shopping_mall

This returns mosque location types only. I'm not getting shopping_mall, gas_station, or restaurant types. here i am checking type in google place api

How can i get all these types?

link|improve this question

53% accept rate
feedback

1 Answer

up vote 1 down vote accepted

Unfortunately, Google Places API does not appear to have anything under those categories in that area.

Use types=establishment to get a more complete list of businesses etc. in that area.

Unfortunately, you will have to find some other way to determine what is a gas station, etc. Google Places API does not appear to have that data, at least at this time.

It may be possible to contribute that data yourself.

link|improve this answer
i am check support google api location types gas_station,shopping_mall etc.... – Ajay Dec 23 '11 at 5:50
thanks i get new places ok...but here every time i get 20 location is it any way to increment those locations? – Ajay Dec 23 '11 at 5:57
feedback

Your Answer

 
or
required, but never shown

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