Here is a reproducible example
library(tmap)
data("World")
tm_shape(World) +
tm_polygons("pop_est", style = "cont", legend.is.portrait=FALSE) +
tm_facets("continent") +
tm_layout(legend.position = c("left", "bottom"),
main.title = "Population",
main.title.position = "centre")
I want the legend to be placed below the facets to better use the space and get everything more centered. Any ideas how I can do this?