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
Using Google place API, Make a boolean search seems to work like this :
var request = { location: /*your location*/, radius: /*your radius*/, keyword: "(cinema) OR (theater)" };
you can use OR, AND but respect case!!