Including Plots

You can also embed plots, for example:

library(leaflet)
## Warning: package 'leaflet' was built under R version 3.4.1
mymap<- leaflet() 

My Page dated 27 July 2017

mwicon <- makeIcon(
        iconUrl = "https://camo.githubusercontent.com/e47927a93ba474c67347176b98b2e90b0f297c6c/68747470733a2f2f7777772e6d617468776f726b732e636f6d2f636d73696d616765732f36343834385f776c5f63635f6c6f676f5f6d656d6272616e655f323030325f776c2e676966",
        iconWidth = 31*215/230, iconHeight = 31,
        iconAnchorX = 21*215/230/2, iconAnchorY = 16
)
mwsite <- ("<a href = 'http://www.mathworks.com.au'>Sydney Office  </a>")

mymap <- mymap %>%
        addTiles()%>%
addMarkers(icon = mwicon, lat = -33.7970 , lng=151.17920, popup = mwsite)
mymap