I'm using api google places that returns a JSON, I was able to search for places with lat
and long
and also with placeid
, now I need to search the place for tipo/categoria
eg restaurant, gym, electronics and etc.
To search for lat
/ long
I 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'm not able to search for categoria
.