我无法使用addControl
显示到本地图像的链接。
起初,我认为我的问题与以下问题相同:Icons not loading (empty image) in R Leaflet with Shiny。但是,我注意到,当我尝试重现该示例时,遇到了一些问题。
我认为这些问题是相关的:
我很惊讶某些事情在R GUI而不是R Studio中起作用。在将对象渲染为HTML之后检查它们之后,我发现图像被转换为64位对象。我认为问题在于makeIcon
使用的是getFromNamespace(".b64EncodeFile", "markdown")
,并且当添加链接到相对路径的HTML控件时,没有协议,因此不会转换对象。
这是我的可复制示例:
library(leaflet)
data(quakes)
quakes <- quakes[1:10,]
leafIcons <- icons(
iconUrl = ifelse(quakes$mag < 4.6,
"https://leafletjs.com/examples/custom-icons/leaf-green.png",
"https://leafletjs.com/examples/custom-icons/leaf-red.png"),
iconWidth = 38, iconHeight = 95,
iconAnchorX = 22, iconAnchorY = 94)
html_legend <- "<img src='data/icons/1.png'>green<br/>
<img src='C:/FULL_ABSOLUTE_PATH/data/icons/2.png'>red"
leaflet(data = quakes) %>% addTiles() %>%
addMarkers(~long, ~lat, icon = leafIcons) %>%
addControl(html = html_legend, position = "bottomleft")
您需要在本地复制这些文件: