Currently, when I search for businesses near a certain point in google api, I specify a business type, as per https://developers.google.com/places/supported_types
I use:
gmaps.places_nearby(lat, long, type='specific business type', radius)
how do I search for ALL places nearby that returns all business types? I have tried Google Places Nearby Search, google map api nearby place search, and Find Places Nearby in Google Maps using Google Places API but none seem to help.
I tried:
gmaps.nearbySearch(location, radius)
but get an error:
'Client' object has no attribute 'nearbySearch'