Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm using Google places API to check the places nearby and let the user pick one. Everything works fine but I'm having location issues, If I send the longitude and latitude to the api call for a search, for example "McDonalds" I get results in CHICAGO instead of San Francisco...

Any Idea what maybe happening? This is my query:

https://maps.googleapis.com/maps/api/place/autocomplete/json?input=mcdonald&types=establishment&location=37.76999,-122.44696&sensor=false&key=hereIsWhereMyKeyGoes

This is Google's documentation: https://developers.google.com/places/documentation/autocomplete

Thanks!

share|improve this question

1 Answer

up vote 1 down vote accepted

You need to define the radius to search within.

https://maps.googleapis.com/maps/api/place/autocomplete/json?input=mcdonald&types=establishment&location=37.76999,-122.44696&radius=20&sensor=false&key=hereIsWhereMyKeyGoe

I used to have a similar problem with results from Chicago so that must be some sort of default area to search in. To search near a location you must supply the location and radius parameters.

share|improve this answer
thanks dude, the documentation on this is really poor, they should add that both parameters are needed. – Andres Jan 25 at 17:31

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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