我有下面的代码,它给了我一张地图,使用mapview()
它为我绘制了一张地图,但我想知道如何给它一个标题,即“显示世界机场的地图”。一定是非常基本的东西,我真的无法弄清楚。
library(OpenStreetMap)
library(mapview)
library(mapdata)
airports <- read.delim("https://slcladal.github.io/data/airports.txt",
sep = "\t", header = T)
Airport_Location <- st_as_sf(x = airports,
coords = c("Longitude", "Latitude"),
crs = "+proj=longlat +datum=WGS84")
mapview(Airport_Location)