Introduction

This webpage displays a map featuring all the soccer stadiums in Qatar that were used for the 2022 FIFA World Cup.

Load Packages

library("ggplot2")
library(magrittr)
library(leaflet)

Coordinates of all the 2022 FIFA World Cup stadiums in Qatar

stadiums <- data.frame(
  name = c("Lusail Iconic Stadium", "Al Bayt Stadium", "Al Rayyan Stadium",
           "Al Thumama Stadium", "Khalifa International Stadium", "Education City Stadium",
           "Ahmed bin Ali Stadium", "Ras Abu Aboud Stadium"),
  lat = c(25.5022, 25.6128, 25.2919, 25.2338, 25.2611, 25.3176, 25.2362, 25.2765),
  lng = c(51.0995, 51.4336, 51.4246, 51.5204, 51.4489, 51.4095, 51.3407, 51.5304)
)

Create the Leaflet map

m <- leaflet(stadiums) %>%
  addTiles() %>%  
  setView(lng = 51.1839, lat = 25.3548, zoom = 9) %>%  
  addMarkers(~lng, ~lat, popup = ~name)

Display the map

m

Conclusion

This map showcases all the stadiums that were selected for the 2022 FIFA World Cup in Qatar.