无法在交互式查看模式下添加tmap标题

问题描述 投票:0回答:2

我在 RStudio 1.4.1103 上使用

tmap

当我尝试使用

tm_layout()
函数调用向地图添加标题时,我可以在绘图模式下看到标题,但当我切换到交互式查看模式时,标题就会消失。

请在下面找到最小的可重现代码以及结果输出图:

library(tmap)

data("World")

ttm()

tm_shape(World) + tm_polygons("HPI") + tm_layout(title="Hello World!")

code output example

r tmap
2个回答
0
投票

更新:这似乎是最新版本 tmap 中的问题,如here所述。


0
投票

我认为同样的问题仍然存在。使用 rmarkdown,我可以使用 html 解决这个问题:

<p style= "margin-bottom:0; font-weight:bold">Your title</p>

margin-bottom 设置为 0 很重要。

© www.soinside.com 2019 - 2024. All rights reserved.