Map created with Leaflet

library(leaflet)
capital<- leaflet() %>% addTiles() %>% addMarkers(lat = 28.6139, lng= 77.2090)
capital

Here is the capital of India

.