Overview

1.This project is created as a Coursera Data Science Specialization under the subject Developing Data Products. 2.This assignment I have created an interactive map showing the hospital and Laboratory in Pinehaven.

Hospital Map

library(leaflet)

We are going to run packages using the latitude and longitude coordinates.

mymap <- leaflet()%>%
addTiles()
mymap = addMarkers(mymap, lat =-26,061857,lng = 27,829973,popup = "Netcare Pinehaven")
mymap = addMarkers(mymap,lat = -26.061857,lng = 27,829973,popup = "Pathcare Laboratory")
mymap