My Interactive Leaflet Map

This web page was created using R Markdown and contains an interactive map made with Leaflet.

library(leaflet)

leaflet() %>%
  addTiles() %>%
  addMarkers(
    lng = 77.5946,
    lat = 12.9716,
    popup = "Hello from Bengaluru, India!"
  )