1
I’m using the google Places api that returns a JSON, managed to search for sites by lat
and long
and also by placeid
, now I need to search the site for tipo/categoria
for example: restaurant, gym, electronics, etc.
To look for lat
/long
used this URL:
https://maps.googleapis.com/maps/api/place/search/json?location="+String.valueOf(lat)+","+String.valueOf(longt)+"&radius=100&sensor=true&key="+APKEY);
But I can’t seem to get you by categoria
.
opa wonder was what I was looking for, vlw
– roque