Is it possible search multiple individual keywords in one place search request using Google Maps JavaScript API v3?
In the Google Places API documentation it states that
Did you try with type option. If using type you can get more than one place information
Please see the possible supported types and RadarSearchRequests try like this
function performSearch() {
var request = {
location: map.center,
radius: '500',
types: ['movie_theater', 'gym'],
rankBy: 'distance'
};
service.radarSearch(request, callback);
}
I don't know 'tacos' is which type. please supported type and give that 'tacos' type value.
Please let me know if you have any issues