Making Multiple Style References In Google Maps API
问题 I cannot figure out how to make multiple style references in one ggmap() query from the Google Maps API in R. Making one query is simple: library(ggmap) map <- get_googlemap("new york city", zoom = 12, maptype = "roadmap", style = c(feature = "poi.medical", element = "geometry", color = "red")) ggmap(map) But let's say I want to make all parks blue as well as hospitals red. How would I go about doing that? I have tried nested concatenation within my style variable, but that doesn't work. Also