Skip to contents

Theme for geospatial maps.

Usage

theme_sf()

Details

A partial copy of ggthemes::theme_map().

Examples

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)