I am using the Google Places api to get places data:
https://maps.googleapis.com/maps/api/place/search/json? + "location=" + strlatitude + "," + strlongitude + "&" +"radius=" + searchRadius + "&" +"types="+ types + "&" + "sensor=true" + "&" + "key=" + googleAPIKey;
I am just getting only "icon" from this response.But I want to get image of that place.
Is there any parameter to get the image of the places?
Additionally, how can I get reviews of the places (like 9reviews, 6reviews, etc.)