#The World Wildlife Capital!!
library(dplyr)
## Warning: package 'dplyr' was built under R version 3.3.2
##
## Attaching package: 'dplyr'
## The following objects are masked from 'package:stats':
##
## filter, lag
## The following objects are masked from 'package:base':
##
## intersect, setdiff, setequal, union
install.packages("leaflet",repos='http://cran.us.r-project.org')
## package 'leaflet' successfully unpacked and MD5 sums checked
##
## The downloaded binary packages are in
## D:\Documents and Settings\tnjunge\AppData\Local\Temp\Rtmp2vTp1E\downloaded_packages
library(leaflet)
## Warning: package 'leaflet' was built under R version 3.3.3
my_map <- leaflet() %>%
addTiles()
my_map
NairobiPark <-c("<a href= 'http://www.kws.go.ke/parks/nairobi-national-park' > Nairobi Park</a>")
leaflet() %>%
addTiles() %>%
addMarkers(lat= -1.364726,lng=36.831855,popup = NairobiPark)