Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 R 传单包来生成地图。创建网页时,将网页的<title>元素设置为“传单”:
<title>
<title>leaflet</title>
我想将其更改为更具信息性的内容,但我看不到这样做的方法。我在这里看到了讨论,但那是在地图本身上添加标题。我想做一些不同的事情:设置显示在浏览器选项卡顶部的标题。
有没有使用传单或 htmltools 的简单方法?
我找到了解决这个问题的方法。htmlwidgets::saveWidget当使用或将传单对象写入 HTML 文件时,可以设置标题mapview::mapshot:
htmlwidgets::saveWidget
mapview::mapshot
mapshot(x=lf,url="map.html",title="Map title")