1. 30
    Recreate the Marker from our Second Favorite Location with React Leaflet bindPopup
    23s

Recreate the Marker from our Second Favorite Location with React Leaflet bindPopup

Colby Fayock
InstructorColby Fayock
Share this video with your friends

Social Share Links

Send Tweet
Published 4 years ago
Updated 4 years ago

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.

Click here for exercise instructions

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.