admin管理员组文章数量:1345730
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" />
本文标签: javascriptMake leaflet map mobile responsiveStack Overflow
版权声明:本文标题:javascript - Make leaflet map mobile responsive - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743813636a2543520.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论