R Leaflet标签设置方向

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

请看下面的示例代码,我想使用标签方向(MyDirection),它存储在df中,在我的地图中有不同的标签方向。

我可以将每个标签设置为特定的方向,如direction = "top",但如果我指定direction = ~MyDirection,它会以某种方式起作用。

任何想法/解决方案将不胜感激。

提前致谢。

library(leaflet)

df  <- read.csv(textConnection("
Name,Lat,Long,MyDirection
ANN,51.19,4.46277778,right
BAB,43.26306,-2.94972222,left
BCN,41.29694,2.07833333,top
BCN,41.29694,2.07833333,bottom
"))

#---Create Map----
m <- leaflet(df) %>% 
     addTiles(group = "OSM (default)") %>%
     addCircles(~Long, ~Lat,
                 label = ~htmlEscape(Name), 
                 labelOptions = labelOptions(noHide = T, 
                                              #direction = "top",
                                              #direction = "bottom",
                                              #direction = "left",
                                              #direction = "right",
                                              direction = ~MyDirection))

m
r leaflet label r-leaflet
2个回答
1
投票

你好,

我找到了4个图层(顶部,底部,左侧,右侧)的解决方法,并为每个图层添加了相同的组名称。

library(leaflet)


df  <- read.csv(textConnection("
Name,Lat,Long,MyDirection
ANN,51.19,4.46277778,right
BAB,43.26306,-2.94972222,left
BCN,41.29694,2.07833333,top
BCN,41.29694,2.07833333,bottom
"))


#---Create 4 additional DFs (1 for each dirction)----
dfLeft = df[df$MyDirection == "left", ]
dfRight = df[df$MyDirection == "right", ]
dfTop = df[df$MyDirection == "top", ]
dfBottom = df[df$MyDirection == "bottom", ]

#---Create Map----
m <- leaflet(df) %>% 
  addTiles(group = "OSM (default)") %>%

  addCircles(~dfLeft$Long, ~dfLeft$Lat, color = '#d40511',
             label = ~htmlEscape(dfLeft$Name), 
             labelOptions = labelOptions(noHide = T, 
                                         direction =  "left"),
             group = "Show All")%>%

  addCircles(~dfRight$Long, ~dfRight$Lat, color = '#d40511',
             label = ~htmlEscape(dfRight$Name), 
             labelOptions = labelOptions(noHide = T, 
                                         direction =  "right"),
             group = "Show All")%>%

  addCircles(~dfTop$Long, ~dfTop$Lat, color = '#d40511',
             label = ~htmlEscape(dfTop$Name), 
             labelOptions = labelOptions(noHide = T, direction = "top",
                                         offset = c(0, -2)),
             group = "Show All")%>%

  addCircles(~dfBottom$Long, ~dfBottom$Lat, color = '#d40511',
             label = ~htmlEscape(dfBottom$Name), 
             labelOptions = labelOptions(noHide = T, direction = "bottom",
                                         offset = c(0, 2)),
             group = "Show All")

m

1
投票

我想分享一下我的最新方法。我终于设法根据mydf $ MyDirection设置标签方向。而不是像我在前面的例子中那样添加多个图层,而是使用了库“Purrr”。这极大地减少了层数。

最好的祝福

#Libraries----
library(leaflet)
library(htmltools)
library(htmlwidgets)
library(purrr)
#---Data Input----
mydf  <- read.csv(textConnection("
Facility,Lat,Long,MyDirection
ANN,51.19,4.46277778,right
BAB,43.26306,-2.94972222,left
BCN,41.29694,2.07833333,top
BCN2,41.29694,2.07833333,bottom
"))

#---Create Vector----
ob_Facility <- mydf %>% 
  split(., .$Facility)
#---Create Map----
m <- leaflet() %>% 
  addTiles() 

#---Purrr Layers----
names(ob_Facility) %>%
  purrr::walk(function(mydf) {
    m <<- m %>%
      addCircleMarkers(data=ob_Facility[[mydf]],
                       lng=~Long, lat=~Lat,
                       group = "Show All",
                       label = ~Facility,
                       labelOptions = labelOptions(noHide = T,direction = ~MyDirection))
  })

#---Layers control----
m %>%
  addLayersControl(
    overlayGroups = "Show All",
    options = layersControlOptions(collapsed = FALSE)  
  )%>%
  #---Save as HTML File----
saveWidget('Example Go Live Date.html', selfcontained = TRUE)
© www.soinside.com 2019 - 2024. All rights reserved.