console.log(item.Latt);
L.marker([item.pintouts.latt, item.pintouts.long]).addTo(cartofab).bindPopup("<b><a href="+item.pintouts.site+" target=\"_blank\">"+i+"</a></b><br/>"+item.pintouts.intitulé+"<br/>"+item.pintouts.structures);
if ( $.inArray( 'printouts', item ) ) {
$.each ( item.printouts, function( property, values ) {
$.map ( values, function( value ) {
var D = {};
// Time type properties
if ( value instanceof smw.dataItem.time ) {
D.date = value.getDate().toISOString();
// Page type properties
} else if ( value instanceof smw.dataItem.wikiPage ) {
D.title = value.getFullText();
}
...
} )
} )
} );