The task was to, create a web page using R Markdown that features a map created with “Leaflet”. And then host it on webpage on either GitHub Pages, RPubs, or NeoCities.

Setting up the library!

library(leaflet)
## Warning: package 'leaflet' was built under R version 4.0.2

Building up the Logo!

inernologo <- makeIcon(
  iconUrl = "https://res-2.cloudinary.com/crunchbase-production/image/upload/c_lpad,h_256,w_256,f_auto,q_auto:eco/g22x3ubybly9dbluxpfe",
  iconWidth = 89*215/230,iconHeight = 89, iconAnchorX = 31*215/230/2,iconAnchorY = 16
)

Building the map, which marks a pop-up at the World’s Largest Gaming Center which is Inferno Online situated in Stockholm.

infmap <- leaflet() %>%
  addTiles()
infmap <- infmap %>%
  addMarkers(lat=59.3434,lng=18.0523,popup = "World's Largest Gaming Centre",icon = inernologo)

The map which shows the Gaming center…

infmap