单击标记时,我需要执行一些代码来找到id
与被单击的标记相对应的代码,从后端 API 检索数据,然后将新检索到的数据添加到content
将打开的弹出窗口中。
能够在标记上监听点击事件的唯一方法是
map.on('popupopen', function(e){
// How to retrieve marker?
// eg: Assign an id on creation, retrieve it now during popupopen
};)
我怎样才能找出这是哪个标记?是否可以为每个标记添加一个id
属性,然后id
在popupopen
事件期间检索它?