Skip to content
Advertisement

How can i click my html (DOM) and open an existing popup on my Leaflet Map. Im only using Vanilla JS

Im trying to conect my “See in map” (html) with my map and open a popUp that is already created (i click on the map and the popups open).

i know i have to use something like

JavaScript

but i dont know how to do it. Can anyone help me? Thank you!

enter image description here

enter image description here

Advertisement

Answer

I see that all of your links have the same id="tiendanombre" attribute – is this intentional (id attributes should be unique on the page)?

According to this answer How to open leaflet marker popup from link outside of map? the marker has an openPopup() method that we need to call

In your HTML template is there a way that we can identify which entry in your diet array the link refers to? Is the HTML generated from the same array maybe?

If we can get an identifier into the HTML, for example

JavaScript

Then we can look for that link when we are in your forEach loop, after you have made your marker

JavaScript
User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement