My Favorite Spot in Kazakhstan This map was created using the Leaflet package in R. It shows the location of the Baiterek Tower in Astana.

# Создаем карту
my_map <- leaflet() %>%
  addTiles() %>%  # Добавляет стандартную подложку OpenStreetMap
  addMarkers(lng=71.4305, lat=51.1283, 
             popup="Baiterek Tower, Astana")

my_map