# install.packages("devtools")
#devtools::install_github("thiyangt/ceylon")
library(ceylon)11 Interactive Map Visualisation
11.1 Static Plot
ggplot(province) +
geom_sf(mapping = aes(fill = population), show.legend = TRUE) + scale_fill_viridis()
11.2 Using mapview
mapview(
province,
zcol = "population",
legend = TRUE
)