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 4.4.3
Urlaub <- leaflet()
Urlaub <- addTiles(Urlaub)
Urlaub <- addMarkers(Urlaub, lng=12.5683, lat=55.6761, popup="Copenhagen, Denmark")
Urlaub <- addMarkers(Urlaub, lng=5.1214, lat=52.0907, popup="Utrecht, The Netherlands")
Urlaub <- addMarkers(Urlaub, lng=11.1525, lat=46.6713, popup="Merano, Italy")
Urlaub <- addMarkers(Urlaub, lng=9.9937, lat=53.5511, popup="Hamburg, Germany")
Urlaub <- addMarkers(Urlaub, lng=7.7521, lat=48.5734, popup="Strasbourg, France")
Urlaub