tmap icon indicating copy to clipboard operation
tmap copied to clipboard

R package for thematic maps

Results 175 tmap issues
Sort by recently updated
recently updated
newest added

Is there any support for interaction between various widgets with crosstalk? (one of these widgets being a tmap object.) Given that tmap uses leaflet (which supports crosstalk), is it possible...

help wanted
view

```r tm_shape(World) tm_shape(World) + tm_fill("pop_est_dens", fill.scale = tm_scale_intervals(c("yellow", "orange", "red"))) + tm_facets(by = "continent") tm_shape(World) + tm_fill("pop_est_dens", fill.scale = tm_scale_intervals(c("yellow", "orange", "red"))) + tm_facets(by = "continent") ```

```r tm_shape(df) + tm_polygons() ``` breaks in view mode, due to the existence of Z ```r df

bug

For interactive maps, we would like to have layers that are zoom-specific, e.g. ```r tm_shape(NLD_prov) + tm_polygons(zoom = c(5, 7)) + tm_shape(NLD_muni) + tm_polygons(zoom = c(7, 10)) ```

enhancement
tmap_v4
view

``` r library(spData) library(tmap) # works tm_shape(nz) + tm_polygons("Median_income") + tm_layout(legend.position = c("left", "bottom")) ``` ![](https://i.imgur.com/Z1lTbc2.png) ``` r # fails tm_shape(nz) + tm_polygons("Median_income") + tm_layout(legend.position = c(0.02, 0.02)) #> Error...

bug

I'm trying to insert a textbox on a map with a paragraph but I don't want the lines broken with "\n" in between the text except for a new paragraph....

enhancement

I need to put my logo at the top right of a plot just outside the map window within the title panel box. Is there a way to position the...

enhancement

Hello. I enjoy using tmap for plotting bubbles over polygons of various interval sizes. However, the legend gets too long or too wide when plotted with tm_bubbles. Is there a...

enhancement

tmap v4 is progressing well. The plot mode is almost finished, now working on view mode. I'm trying to implement as many There are a few features that would be...

enhancement
help wanted
tmap_v4