Jakub

Results 477 comments of Jakub

@mtennekes -- I checked the first two examples -- they are great. One question, have you considered using the functions in order (thus removing the need to repeating the group...

@mtennekes what's the current bg default?

@mtennekes -- is the attached outcome expected? In the past, `bg.color = NA` was removing the background color. ``` r library(tmap) library(spData) tm_shape(hawaii) + tm_polygons() + tm_title("Hawaii") + tm_layout(frame =...

Awesome ``` r library(tmap) library(spData) tm_shape(hawaii) + tm_polygons() + tm_title("Hawaii") + tm_layout(frame = FALSE, bg.color = NA, title.position = c("LEFT", "BOTTOM")) #> → [layout options] use `bg = FALSE` instead...

@mtennekes 1. Should `tm_minimap()` work in the same way as `tm_basemap`, i.e., using the base map of the provider in a specific zoom level? 2. `tm_inset()`, on the other hand,...

> We could just draw a bbox rectangle on top of this basemap? And what if no basemap is provided? Use a default basemap (e.g. "OpenStreetMap"), or use World, or...

Two small issues I found: 1. There is a warning in the plot mode 2. Minimap is hidden in the view mode ``` r library(tmap) library(spData) tmap_mode("plot") #> ℹ tmap...

``` r library(tmap) data(World) tm_shape(World) + tm_graticules( ) + tm_polygons() + tm_crs("+proj=eck4") + tm_layout(earth_boundary = TRUE, frame=FALSE ) ``` ![](https://i.imgur.com/r6blzTV.png) @crcruzr -- just to clarify: you would like to place...

@mtennekes looks good! @crcruzr I hope that this hacky solution is fine by you.

@mtennekes the current design mode is not showing any visualization layers (e.g., polygons, texts, etc.) -- is it on purpose? They were a part of the design mode before. ```...