Mysql
 sql >> Base de données >  >> RDS >> Mysql

Marqueurs de feuillets d'identification unique

Vous pouvez essayer d'ajouter un attribut personnalisé au marqueur, puis obtenir cet attribut dans l'événement 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);

Exemple sur JSFiddle