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

I was working on integrating `tmap` and `leaflet` this week in a package so that I can use `tmap` to create a static map then convert to `leaflet` when necessary...

tmap_v4

See https://github.com/r-tmap/tmap.deckgl It's only a start, and mainly serves as a proof of concept for the extendibility of tmap. ```r remotes::install_github("r-tmap/tmap") remotes::install_github("r-tmap/tmap.deckgl") library(tmap) library(tmap.deckgl) tmap_mode("deck") tm_shape(World) + tm_polygons("HPI", fill.scale =...

publicity
help wanted

In tmap4, I started the implementation of 2 text layer functions: * `tm_text` Intended to print text to represent data directly, i.e. with visual variables. * `tm_labels` To label points,...

help wanted

Hi @mtennekes , I started looking into transitioning to v4 in my previous code. I think I ran into a bug. * Missing `id` hovering. * The popup doesn't show...

view

Sorry for the long-winded title, easier to describe what is happening with images. This is the base plot I am working from, with code working as expected: ![grafik](https://github.com/r-tmap/tmap/assets/118363045/43b2c4af-ac54-49c2-9df5-ed4ce1e4aee6) ```meanT_abs

question
tmap_v3

It looks like xmod and ymod are deprecated. Will there be an alternative method to offset tm_text so that it does not overlap tm_dots()?

enhancement
tmap_v4

``` r ## numerical variable tm_shape(World) + tm_polygons ("HPI", fill.scale = tm_scale_intervals(), fill.chart = tm_chart_histogram()) ``` ![](https://i.imgur.com/z3URT2u.png) ``` r tm_shape(World) + tm_polygons ("HPI", fill.scale = tm_scale_continuous(), fill.chart = tm_chart_histogram(position =...

Is it possible to modify the x and y axis of the histogram in the legend? as well as separte it from the colour scale when defining the legend position?...

```r tm_shape(World) + tm_polygons(col = "economy", style = "cat") #> Erreur in if ("col" %in% names(args_called) && (!args$called_from %in% : missing value where TRUE / FALSE is required. ``` v3...

compat

to fix CI. I was able to isolate the issue to the call to `tm_basemap()` in the vignettte. Unfortunately, similar failures happen in examples now..