Plotting multiple maps with ggmap
问题 I can plot a UK map with ggmap with a point like this: library(ggmap) UK_map <- get_map(location = c(-2.65, 53.7), zoom = 5, maptype = "hybrid") UK_map <- ggmap(ggmap=UK_map, extent = "device", legend = "right") UK_map + geom_point(data = data.frame(x = -1.81, y = 55.655), aes(x, y), size = 5) However, if I try to use Winston Chang's multiplot function, the point disappears. multiplot <- function(..., plotlist=NULL, cols) { require(grid) # Make a list from the ... arguments and plotlist plots