Jakub
Jakub
I think we will keep the `tm_` vs `tmap_` distinction, however, I will also try to highlight this the difference between these functions in the https://r-tmap.github.io/tmap-book/ book.
It works in tmap v4. ```r library(sf) library(tmap) library(spData) tmap_mode("view") tm_shape(world) + tm_borders(col = "continent") ```
This code seems to work with tmap v4: ```r library(tmap) library(rnaturalearth) airports
It is already available on GitHub: https://github.com/r-tmap/tmap#development. On CRAN? I do not know.
It is fixed in the development version of tmap (see the v4 branch).
@kadyb thanks! Can you open a new issue about that? (Also, please run the code using the tmap version 4 -- `remotes::install_github("r-tmap/tmap@v4")`)
@statnmap feel free to reopen the issue if needed
It works in tmap v4. ``` r library(sf) library(tmap) library(spData) world_map = tm_shape(spData::world) + tm_polygons() + tm_title_in("Big Title World Map", position = c("center", "top"), frame = TRUE, bg.color = "gray50")...
This problem is fixed in the upcoming tmap v4: ``` r library(sf) library(tmap) # create some fake data my_sfc ``` r tm_shape(my_sf) + tm_lines() + tm_text( "my_text", size = 2,...
Superseded by https://github.com/r-tmap/tmap/issues/694