Instructions
- Create a web page using R Markdown that features a map created wih Leaflet.
- Host your webpage on either GitHub Pages,RPubs or NeoCities.
Submission
- I created an interactive map with a pin.
library(leaflet)
## Warning: package 'leaflet' was built under R version 3.6.1
showMap <- leaflet()%>%addTiles()%>%setView(lng = -79.502795,lat = 43.773368,zoom = 16)%>%
addMarkers(lng =-79.502795,lat=43.773368,popup = "York University")
showMap
Review Criteria
The rubric contains the following 2 questions.
- Does the webpage feature a date and this date less than 2 months before the date you are grading this assignment?
- Does the webpage feature an interactive map that appears to have been created with Leaflet?