Skip to main content

All Questions

Tagged with
7 questions with no upvoted or accepted answers
2 votes
0 answers
266 views

Add multiple popups to a single marker location coordinate

I have two different types of information I would like to display in a location. I can do it like this, displaying everything in a single popup: leaflet() %>% addCircleMarkers(data = goo, ...
Felipe Alvarenga's user avatar
2 votes
0 answers
1k views

Automate image size in R shiny leaflet pop-up

I have a shiny app which I run in 3 separate tabs in R Studio: Global tab: library(shiny) library(leaflet) country = c("Russia", "Mongolia", "China") ...
AJGL's user avatar
  • 303
1 vote
0 answers
215 views

R Leaflet - How to combine text and figure in popup?

I would like to combine text and a figure in a Leaflet Popup. I saw this on a website of Deutsche Bahn: Multi-Object-Popup Website: strecken.info For me it would be sufficient to combine two of these ...
Lars Möller's user avatar
1 vote
0 answers
69 views

How are my popups not showing in my Leaflet map?

How can I make popups show up in leaflet that I plot using this code? leaflet(df) %>% addTiles() %>% setView(-119.09, 43.70, zoom = 5) %>% addCircles(~long, ~lat, popup=df$hrus, color="...
maximusdooku's user avatar
  • 5,474
0 votes
1 answer
60 views

Can leaflet layer controls be used to alter popup contents in a Shiny dashboard?

I am building a dashboard in R Shiny that includes a map rendered using R leaflet. There are popups associated with locations on the map and items in the popup are also used as layer controls. i.e., ...
user3900349's user avatar
0 votes
1 answer
264 views

Adding multiple row table in leaflet map

I am trying to add multiple row table in leaflet map R for each polygon, which should popup while clicking the polygon. PopupTable() only allows single row to popup. Please suggest me a better option ...
JincyJ's user avatar
  • 1
0 votes
1 answer
1k views

Leaflet R legend & popup overlap rMarkdown flexdashboard

I am making an rMarkdown flex dashboard interactive html page which we will embed into another page (an iFrame). There are two small maps side by side. The maps themselves, the content, scales, legend ...
sconfluentus's user avatar
  • 4,955