Here is a leaflet map with the area where I live
library(leaflet) m <- leaflet() %>% addTiles(urlTemplate = "http://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png") %>% addMarkers(lng=-0.18, lat=50.84, popup="My area") m # Print the map