1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
| <script type="text/javascript">
$(function(){
$('#test1').gmap3({
map:{
options:{
center:[54, -72],
zoom: 5
}
},
marker:{
values:[ {latLng:[46.4125163, -72.57183750000002], data:"<span class=p33><strong>Entre Deux Eaux</strong><br/>730, rue Dosithé Bourrassa<br/>Trois-Rivières, Quebec G8T 1C3<p><p><span class=p33>Téléphone : 819 374-5307<br/>Télécopieur : </span><p><em>Voir la fiche complète</em></span>", id:"17", options:{icon: "images/icons/qsn/iconloc5.jpg"}},
{latLng:[45.1211111, -72.9874466], data:"<span class=p33><strong>Club de la Landroche</strong><br/>25, Charles-Gérald Lemire<br/>Bedford, Quebec J0G 1A0<p><p><span class=p33>Téléphone : <br/>Télécopieur : </span><p><em>Voir la fiche complète</em></span>", id:"1", options:{icon: "images/icons/qsn/icon18.jpg"}},
],
options:{
draggable: false
},
// Debut des options Info-bulle
events:{
click: function(marker, event, context){
var map = $(this).gmap3("get"),
infowindow = $(this).gmap3({get:{name:"infowindow"}});
if (infowindow){
infowindow.open(map, marker);
infowindow.setContent(context.data);
} else {
$(this).gmap3({
infowindow:{
anchor:marker,
options:{content: context.data}
}
});
}
},
}
// Fin de l'infobulle
}
}
});
});
</script> |
Partager