我正在尝试使用 Rapache 和“R 的传单”制作一个网页。我安装 Rapache 的主要原因是在 html 页面中使用 R(使用 brew)。但是,我无法弄清楚如何在 html 页面中返回我的地图而不将其保存为 html extern 文件(Rapache 没有用)。让我们举个例子:
<%
library(leaflet)
m <- leaflet()
m <- addTiles(m)
m <- addMarkers(m, lng=174.768, lat=-36.852, popup="The birthplace of R")
m #Does not show anything
saveWidget(m, file = outPath, selfcontained = FALSE, libdir ='leafletwidget_libs') #work but not proper
%>
这就是我的 html 文件中的内容,我希望能够返回此地图 (m) 并将其添加到当前页面的某个位置。我想这样做的主要原因是因为我要在网站上使用它,我希望它是动态的,而不是创建大量的 htmlfile。这不太合适。希望你能帮助我:) 谢谢你!