In our previous lesson, we added a 2nd location to the map. Let's do this again but by using the Leaflet API within our useEffect hook.
Colby Fayock: [0:00] For extra credit, we're going to add a second location. I'm going to first grab the location of the Natural History Museum. Here, I can copy and paste the latitude and longitude. To create another marker, I can duplicate that line.
[0:09] First, we want to change the constant name to marker2, and I can go ahead and paste it in the new coordinates for the marker. For our popup, we're going to say marker2.bindPopup(), where we're going to pass in our title. Finally, we want to add it to the map similar to our first marker. Now, we can see both markers on the map.