Darwin Lajoie 15 November 2017
Create a web page using R Markdown that features a map created with Leaflet.
Host your webpage on either GitHub Pages, RPubs, or NeoCities.
Your webpage must contain the date that you created the document, and it must contain a map created with Leaflet. We would love to see you show off your creativity!
library(leaflet)
## Warning: package 'leaflet' was built under R version 3.4.2
my_map <- leaflet() %>% addTiles()
my_map <- my_map %>% addMarkers(lat=28.527865, lng= -81.464616, popup="My House")
my_map