I have built a leaflet with leaflet package in R. Here a simplified version of the code used
library(leaflet)
# dumb data
Points <- data.frame(lon = c(41.889, 41.882, 41.891), lat = c(12.455, 12.446, 12.459))
# web map
wland <-
leaflet(data = Points) %>%
addTiles() %>%
addCircleMarkers(col = "red",
fillOpacity = 1,
radius = 5,
stroke = TRUE,
clusterOptions = markerClusterOptions(
maxClusterRadius=35, disableClusteringAtZoom=14
))
saveWidget(wland, "To:/Your/Path/map.html", selfcontained = FALSE)
I uploaded the html along with all javascript here . It looks fine on desktop, but on mobile it does not respond well: markers remain too small, etc. Do you know how to make leaflet mobile responsive? Shall I modify sometihng in the javascript created by R-leaflet?
Thanks, Jacopo
I have built a leaflet with leaflet package in R. Here a simplified version of the code used
library(leaflet)
# dumb data
Points <- data.frame(lon = c(41.889, 41.882, 41.891), lat = c(12.455, 12.446, 12.459))
# web map
wland <-
leaflet(data = Points) %>%
addTiles() %>%
addCircleMarkers(col = "red",
fillOpacity = 1,
radius = 5,
stroke = TRUE,
clusterOptions = markerClusterOptions(
maxClusterRadius=35, disableClusteringAtZoom=14
))
saveWidget(wland, "To:/Your/Path/map.html", selfcontained = FALSE)
I uploaded the html along with all javascript here . It looks fine on desktop, but on mobile it does not respond well: markers remain too small, etc. Do you know how to make leaflet mobile responsive? Shall I modify sometihng in the javascript created by R-leaflet?
Thanks, Jacopo
Share Improve this question asked Mar 9, 2017 at 18:02 JacopoJacopo 1631 gold badge3 silver badges11 bronze badges 2- I found your question because I had the same problem, then I found this: stackoverflow./questions/46453598/… – Username Commented Oct 29, 2020 at 20:32
- Does this answer your question? Is there a way to make leaflet map popup responsive on R? – Username Commented Oct 29, 2020 at 20:33
1 Answer
Reset to default 8This is what you need. It's pretty simple: http://leafletjs./examples/mobile/
The import part is meta
element for scale. In 2022 they remend:
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />