Instructions:

  1. Create a web page using R Markdown that features a map created with Leaflet.

  2. Host your webpage on either GitHub Pages, RPubs, or NeoCities.

Here is the Malaysia popular place to visit such as Cyberjaya, Putrajaya, KLIA, National Zoo, KLCC and National Mosque.

m <- leaflet() %>%
  addTiles() %>%  # Add default OpenStreetMap map tiles
  addMarkers(lat=2.921318, lng=101.655935, popup="Cyberjaya, Malaysia") %>%
  addMarkers(lat=2.926361,lng=101.696445, popup="Putrajaya, Malaysia") %>%
  addMarkers(lat=2.75569,lng=101.70467, popup="KLIA, Malaysia") %>%
  addMarkers(lat=3.209096,lng=101.758233, popup="National Zoo, Malaysia") %>%
  addMarkers(lat=3.15916,lng=101.71366, popup="KLCC, Malaysia") %>%
  addMarkers(lat=3.142094,lng=101.691774, popup="National Mosque, Malaysia") #%>%
#setView (lat=2.6129, lng=101.2295, zoom=16) 

m  # Print the map