My Submission

I created an interactive map with a pin and pop-up of “My Country” using Leaflet.

library(leaflet)
## Warning: package 'leaflet' was built under R version 3.6.3
my_map <- leaflet() %>%
  addTiles() %>%
  addMarkers(lat=1.3521, lng=103.8198, popup = "My Country")
my_map