Example of Popup geo-location using Leaflet

library("leaflet")
## Warning: package 'leaflet' was built under R version 3.5.1

My Hometown

My region

region<-leaflet() %>% addTiles() %>% addMarkers(lat = 40.3000, lng= 16.3000, popup = "My Region") %>% fitBounds(0,40,10,50)  
region

Matera is a city in the Basilicata region in Italy.

city<-leaflet() %>% addTiles() %>% addMarkers(lat = 40.6664, lng= 16.6043, popup = "My City")
city