Currently, I am utilizing leaflet in typescript for my project.
marker.bindPopup(
`
<img src='${imgList[0]}'>
<a href='http://toto.fr/?id=${markerData.id}'>show details</a>
`
)
.openPopup();
I am looking to iterate through an object in order to generate a slideshow of images within the "Popup". Any suggestions on how to achieve this would be greatly appreciated!
Thank you :)