R: Add title to Leaflet map

21,947

Solution 1

You should provide a reproducible example. But using addControl you could try:

 library(leaflet)
 library(htmlwidgets)
 library(htmltools)

 rr <- tags$div(
   HTML('<a href="https://cran.r-project.org/"> <img border="0" alt="ImageTitle" src="/PathToImage/ImageR.jpeg" width="300" height="100"> </a>')
 )  

 map_leaflet <- leaflet() %>%
   addTiles() %>%
   addMarkers(50, 50) %>%
   addControl(rr, position = "bottomleft")

 saveWidget(map_leaflet, file="testing.html")

Open testing.html saved in your working directory and you will see an image (just create an image with Map Title in it) over your map. It is not center you can only put the control on the four corners. Hope it helps!

Solution 2

@MLavoie's idea is correct, but I was looking for something more specific like this:

tag.map.title <- tags$style(HTML("
  .leaflet-control.map-title { 
    transform: translate(-50%,20%);
    position: fixed !important;
    left: 50%;
    text-align: center;
    padding-left: 10px; 
    padding-right: 10px; 
    background: rgba(255,255,255,0.75);
    font-weight: bold;
    font-size: 28px;
  }
"))

title <- tags$div(
  tag.map.title, HTML("Map title")
)  

map_leaflet <- leaflet() %>%
  addTiles() %>%
  addControl(title, position = "topleft", className="map-title")

This will center the leaflet-control title as shown in the screenshot and place it at the top.

Share:
21,947

Related videos on Youtube

YGS
Author by

YGS

Seabird biologist tinkering with stats, GIS, and other things.

Updated on August 04, 2022

Comments

  • YGS
    YGS almost 2 years

    I'd like to add a title to the whole map (different from the legend title: addLegend(..., title = "", ...): by "title", I mean an overlaid map component that stays in place while the map is moved (unlike an overlaid image)what the map title could look like.

    Is that an option in RStudio's leaflet for R?

    leafletR has a title="" argument but it updates the title of the webpage: it does not add a title to the map.

  • Adhi R.
    Adhi R. about 4 years
    hi Prusswan, this is very clean but I'm a bit of a newbie and need a reprex to understand what's happening here. Could you provide one please? I just don't know what the tags variable is or how that works in the flow of an R script.
  • Spacedman
    Spacedman almost 4 years
    @AdhiR. the only bit missing here for reproducibility is the attaching of leaflet and htmltools. tags is from htmltools and is a list of functions for constructing HTML. eg htmltools::tags$h1("header!"). The code above creates a DIV with STYLE and content for the text label.
  • Ed_Gravy
    Ed_Gravy over 2 years
    This method does work but when you knit an html document, the title actually stays in the middle of the html page and does not stick with the leaflet map, and as you scroll down the page, the title gets dragged along too.