我正在尝试建立一个州的地图,其中有县的概述,一个县以蓝色着色,并指定一个特定的度假胜地。唉,我无法让县有色或添加特定点。我的代码基于http://eriqande.github.io/rep-res-web/lectures/making-maps-with-R.html构建 感谢您的任何见解!
library(ggplot2)
library(ggmap)
library(maps)
library(mapdata)
states <- map_data("state")
dim(states)
ut_df <- subset(states, region == "utah")
head(ut_df)
counties <- map_data("county")
ut_county <- subset(counties, region == "utah")
head(ut_county)
ut_base <- ggplot(data = ut_df, mapping = aes(x = long, y = lat, group =
group)) +
coord_fixed(1.3) +
geom_polygon(color = "black", fill = "gray")
ut_base + theme_nothing() +
geom_polygon(data = ut_county, fill = NA, color = "white") +
geom_polygon(color = "black", fill = NA) # get the state border back on top
答案 0 :(得分:4)
# Select a subregion
single_county <- subset(ut_county, subregion=="utah")
# Fill the selected subregion with a predefined color and
# plot a colored point with a specified long. and lat.
ut_base + theme_void() +
geom_polygon(data = ut_county, fill = NA, color = "white") +
geom_polygon(color = "black", fill = NA) +
geom_polygon(data = single_county, fill = "red", color = "white") +
geom_point(x=-111.8, y=40.2, col="blue", size=3)