我可以ggmap用这样的点绘制英国地图:
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)
Run Code Online (Sandbox Code Playgroud)

但是,如果我尝试使用Winston Chang的multiplot功能,那么这一点就会消失.
multiplot <- function(..., plotlist=NULL, cols) {
require(grid)
# Make a list from the ... arguments and plotlist
plots <- c(list(...), plotlist)
numPlots = length(plots)
# Make the panel
plotCols = cols # Number of columns of plots
plotRows = ceiling(numPlots/plotCols) # Number of rows needed, calculated from # of cols
# Set up the page
grid.newpage()
pushViewport(viewport(layout = grid.layout(plotRows, plotCols)))
vplayout <- function(x, y)
viewport(layout.pos.row = x, layout.pos.col = y)
# Make each plot, in the correct location
for (i in 1:numPlots) {
curRow = ceiling(i/plotCols)
curCol = (i-1) %% plotCols + 1
print(plots[[i]], vp = vplayout(curRow, curCol ))
}
}
multiplot(UK_map, UK_map, cols = 2)
Run Code Online (Sandbox Code Playgroud)

为什么这个点消失了?如何在使用时出现点multiplot?
该multiplot函数不知道该点,因为您只传递了您的UK_map对象,该对象不包括该点.要让它绘制点,你需要添加geom_point对赋值的调用UK_map,如下所示:
UK_map_with_point <- UK_map +
geom_point(data = data.frame(x = -1.81, y = 55.655), aes(x, y), size = 5)
multiplot(UK_map_with_point, UK_map, cols = 2)
Run Code Online (Sandbox Code Playgroud)

或者,或者,在调用中即时添加点multiplot:
multiplot(UK_map + geom_point(data = data.frame(x = -1.81, y = 55.655),
aes(x, y), size = 5),
UK_map + geom_point(data = data.frame(x = -2.81, y = 56.655),
aes(x, y), size = 5), cols = 2)
Run Code Online (Sandbox Code Playgroud)
