1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
| var locations = [
[' src = " <a href = " <a href="http://ssssss.com/mmmmm/ddddd/805403330117832704" target="_blank">http://ssssss.com/mmmmm/ddddd/805403330117832704</a> " target = " _blank " > SEE ', 48.144, 6.3355,1480858256, 0],
];
var infowindow = new google.maps.InfoWindow();
var monIconPerso = new google.maps.MarkerImage("icones/cibles.png"),i;
for (i = 0; i < locations.length; i++)
{
marker = new google.maps.Marker({
icon : monIconPerso,
position: new google.maps.LatLng(locations[i][1], locations[i][2]),
map: map
});
google.maps.event.addListener(marker, 'click', (function(marker, i) {
return function() {
infowindow.setContent(locations[i][0]);
infowindow.open(map, marker);
}
})(marker, i));
} |
Partager