theme_sf.Rd
Theme for geospatial maps.
theme_sf()
A partial copy of ggthemes::theme_map().
ggthemes::theme_map()
library(ggplot2) data(wa) data(grevilleasf) hakeoides <- dplyr::filter(grevilleasf, species=="hakeoides") ggplot() + theme_sf() + geom_sf(data=wa, fill=NA) + geom_sf(data=hakeoides, alpha=0.4)