Mysql
 sql >> Database >  >> RDS >> Mysql

Marcatori per volantini identificativi in ​​modo univoco

Puoi provare ad aggiungere un attributo personalizzato all'indicatore e poi ottenere quell'attributo nell'evento onClick:

//Handle marker click
var onMarkerClick = function(e){
    alert("You clicked on marker with customId: " +this.options.myCustomId);   
}
//Create marker with custom attribute
var marker = L.marker([36.83711,-2.464459], {myCustomId: "abc123"});
marker.on('click', onMarkerClick);

Esempio su JSFiddle