我创建了一张康沃尔地图,并使用下面的代码(用于 worldHires 数据库)在其上绘制了一些经纬度的采样位置。
library(maps)
library(mapdata)
map("worldHires", "uk", xlim = c(-5.8, -4.7), ylim = c(49, 51), col = blue, fill = TRUE)
col2rgb( "blue")
blue <- rgb(0,0,255, max = 255, alpha = 255, names = "blue")
points(LatLong$Long, LatLong$Lat, col = pink, cex = .2)
创建的地图非常小,当我导出为图像时,它是超低分辨率的。有没有办法让地图更大或更高分辨率?我尝试使用 ggmaps 工具制作地图,但我很难让 R 识别我创建的 Google API,因此我将回到这张更基本的地图。