admin管理员组文章数量:1344241
How can I add a compass control to my map? There used to be a function called addControlCompass
in leaflet.extras I believe but is not there anymore. Does anyone know how to add a compass or an arrow indicating north up
?
library(leaflet)
library(leaflet.extras)
# Create a basic Leaflet map
map <- leaflet() %>%
addTiles() %>%
setView(lng = -121.2722, lat = 38.1341, zoom = 10)
# Add a scale bar and compass to the map
map <- map %>%
addScaleBar(position = "bottomleft", options = scaleBarOptions(maxWidth = 100, metric = TRUE, imperial = FALSE)) %>%
addControlCompass(position = "topright", options = compassOptions())
map
How can I add a compass control to my map? There used to be a function called addControlCompass
in leaflet.extras I believe but is not there anymore. Does anyone know how to add a compass or an arrow indicating north up
?
library(leaflet)
library(leaflet.extras)
# Create a basic Leaflet map
map <- leaflet() %>%
addTiles() %>%
setView(lng = -121.2722, lat = 38.1341, zoom = 10)
# Add a scale bar and compass to the map
map <- map %>%
addScaleBar(position = "bottomleft", options = scaleBarOptions(maxWidth = 100, metric = TRUE, imperial = FALSE)) %>%
addControlCompass(position = "topright", options = compassOptions())
map
Share
Improve this question
asked 8 hours ago
SalvadorSalvador
1,6311 gold badge17 silver badges24 bronze badges
4
- Like described here from this post - it's a plugin I thought, which could be included using source. But it might be easier to add an arrow to the leaflet element manually :) – Tim G Commented 8 hours ago
- But I thought all leaflet maps can't be rotated and always have the north on top, so why would you want to add a compass? Unless you have a leaflet rotation plugin like this – Tim G Commented 8 hours ago
- How? With JavaScript (JS). Leaflet is a JS library. – Friede Commented 8 hours ago
- 1 I will be printing the map and want to show a compass showing north. An arrow pointing north also will work. I just want to show the users which way north is. – Salvador Commented 8 hours ago
1 Answer
Reset to default 1If you just need an arrow pointing north, you can use some HTML + CSS and add it to the map using htmltools
. You can take any arrow design and paste it inside the div.
library(leaflet)
library(htmltools)
north_arrow <- HTML('
<div style="
width: 20px;
height: 30px;
text-align: center;
font-weight: bold;
font-size: 22px;
">
<div>⮙</div> <!-- add arrow UTF8 symbol here -->
<div>N</div>
</div>')
leaflet() %>%
addTiles() %>%
setView(lng = -121.2722, lat = 38.1341, zoom = 10) %>%
addScaleBar(position = "bottomleft", options = scaleBarOptions(maxWidth = 100, metric = TRUE, imperial = FALSE)) %>%
addControl(north_arrow, position = "topright")
Or a bit more fancy
library(leaflet)
library(htmltools)
map <- leaflet() %>%
addTiles() %>%
setView(lng = -121.2722, lat = 38.1341, zoom = 10) %>%
addScaleBar(position = "bottomleft", options = scaleBarOptions(maxWidth = 100, metric = TRUE, imperial = FALSE)) %>%
addControl(HTML('
<div style="width: 90px;height: 90px;">
<img src="https://clipart-library/images/rTnRjnAGc.png" style="width: 100%; width: 100%; opacity: 0.7;">
</div>'), position = "topright", className = "leaflet-control-nobg")
map <- htmlwidgets::prependContent(map,
tags$style(".leaflet-control-nobg { background: none !important; box-shadow: none !important; border: none !important; }")
)
map
本文标签: rhow to draw a compass on leaflet or mapview mapStack Overflow
版权声明:本文标题:r - how to draw a compass on leaflet or mapview map - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743745380a2531658.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论