This map includes the marker pointing the location of Pfizer World Headquarters in New York City
library("leaflet")
library("lattice")
pfe_lat <- 40.7503024
pfe_lng <- -73.9726573
pfe_map <- leaflet() %>%
addTiles()
pfe_map <- pfe_map %>%
addMarkers(lat=pfe_lat, lng=pfe_lng,
popup="Pfizer World Headquarters"
)
pfe_map