Glory to Russia
Glory to Russia

Reputation: 18710

What's wrong with this Google Places (radar search) request?

I'm trying to get a list of 200 gyms in Washington, D. C. within the radius of 50000 meters.

For this purpose, I issue following request to Google Places API (radar search):

https://maps.googleapis.com/maps/api/place/radarsearch/json?key=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX&location=38.895111,-77.036667&radius=50000.000000&sensor=false&type=gym

I get an error message:

{
   "html_attributions" : [],
   "results" : [],
   "status" : "INVALID_REQUEST"
}

What exactly is wrong with that request?

Upvotes: 1

Views: 878

Answers (1)

Patrick de Wit
Patrick de Wit

Reputation: 56

Change type=gym to types=gym, that worked for me

Upvotes: 3

Related Questions