My Interactive Map

Below is an interactive map created using Leaflet in R.

library(leaflet)

leaflet() %>%
  addTiles() %>%
  addMarkers(
    lng = 77.5946,
    lat = 12.9716,
    popup = "Bangalore, India"
  )