Página de inicio



 
var locations = [ ['AGRI‌ 86‌ SAINT‌ GENEST‌ D’AMBIERE
Route‌ de‌ chatellerault,
86140‌ SAINT‌ GENEST‌ D’AMBIERE
Tel‌ -‌ 05‌ 49‌ 90‌ 80‌ 00
Fax - ‌05 49 90 31 31 ', 46.815524, 0.363579, 4], ['AGRI 86 - Vernon
La Douardiere,
86340 Vernon,
Tel‌ -‌ 05 49 39 54 00', 46.438951, 0.469966, 5], ['AGRI 86 - Loudun
Route de Poitiers,
86200 Loudun,
Tel‌ -‌ 05 49 98 51 81
Fax - ‌05 49 22 52 30',46.995358, 0.09304, 3], ['AGRI 86 - Chauvigny
Rue du Planty (Z.A. du Planty),
86300 Chauvigny,
Tel -‌ 05 49 43 57 37
Fax - ‌05 49 62 19 01 ', 46.559569, 0.651283, 2], ]; var map = new google.maps.Map(document.getElementById('map'), { zoom: 9, center: new google.maps.LatLng(46.815524, 0.363579), mapTypeId: google.maps.MapTypeId.ROADMAP }); var infowindow = new google.maps.InfoWindow(); var marker, i; for (i = 0; i < locations.length; i++) { marker = new google.maps.Marker({ 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)); }


Dans la même rubrique :