Hello,
I would like to make the title for a spatial point dataframe visible ... but for some reasons it does not show up ...
Can anyone help with this?
library(tmap)
data(metro, land)
tm_shape(land) +
tm_raster("elevation", palette = terrain.colors(10), title="Title is displayed") +
tm_shape(metro) +
tm_dots(col = "red", title="title does not show")+
tm_layout(legend.outside = TRUE,
legend.title.size=1.5,
legend.text.size=1,
legend.outside.position = "bottom")