Stadiums of the NFC East

The NFC east is a division that is part of the National Football League. There are four teams in the NFC east: the Dallas Cowboys, New York Giants, Washington Football Team, and the Philadelphia Eagles.

library(leaflet)
map<- leaflet() %>%
  addTiles() %>%
  addMarkers(lng= -97.093628, lat= 32.747841,
             label= "AT&T Stadium", 
             labelOptions=labelOptions(noHide= T, textsize = "9px",direction= "top", style=list("color"= "grey"))) %>%
addMarkers(lng= -75.168098, lat=39.900898, 
             label="Lincoln Financial Field",
             labelOptions = labelOptions(noHide= T, textsize = "9px",direction= "bottom", style = list ("color" = "green")))%>%
  addMarkers(lng= -77.036871, lat=38.907192, 
             label="FedEx Field",
             labelOptions = labelOptions(noHide= T, textsize = "9px",direction= "bottom", style = list ("color" = "red")))%>%
  addMarkers(lng= -74.074310, lat=40.813778, 
             label="MetLife Stadium",
             labelOptions = labelOptions(noHide= T, textsize = "9px",direction= "bottom", style = list ("color" = "blue")))
  
 
map