﻿// QUENTIN
// 23-12-10
// GOOGLE MAP
//
function initialize() {
    // LATITUDES
    var latlng0 = new google.maps.LatLng(49.103516, -1.065429);
    var latlng = new google.maps.LatLng(48.67672, -1.02035);
    var latlng2 = new google.maps.LatLng(49.103516, -1.069429);
    
    //CREATION MAPS
    var myOptions = {
        zoom: 7,
        center: latlng0,
        mapTypeId: google.maps.MapTypeId.HYBRID
    };
    var map = new google.maps.Map(document.getElementById("map_canvas"),myOptions);
    
    // MARKER 1 
    var marker = new google.maps.Marker({
        position: latlng, 
        map: map,
        //icon: newIcon,
        title:"S.A.R.L Contact"
    });
        google.maps.event.addListener(marker, 'click', function() {
        map.setCenter(latlng);
        infowindow.open(map,marker);
    });
    var contentString = '<div id="content" style="font-size : 10px; height:70px; overflow:hidden; width:170px; " >'+
                        '<h3 id="firstHeading" class="firstHeading">Siège social</h3>'+
                        '<div id="bodyContent">'+
                        '<p style="color:#cc0000;">Tél. 02 33 79 41 00</p>'+
                        '<p>zone artisanale Le plat bois</p>'+
                        '<p style="text-transform: uppercase;">50520 Juvigny le Tertre</p>'+	
                        '</div>'+
                        '</div>';
    
    var infowindow = new google.maps.InfoWindow({
        maxWidth: 250,
        content: contentString
    });
    
    //MARKER 2
    var marker2 = new google.maps.Marker({
        position: latlng2, 
        map: map,
        //icon: newIcon2,
        title:"Agence de St Lô"
    });
    
    var contentString2 = '<div id="content" style="font-size : 10px; height:70px; overflow:hidden; width:170px; " >'+
                        '<h3 id="firstHeading" class="firstHeading">Agence de St Lo</h3>'+
                        '<div id="bodyContent">'+
                        '<p style="color:#cc0000;">Tél. 02 33 55 52 47</p>'+		
                        '<p>35 rue Louis Armand</p>'+
                        '<p style="text-transform: uppercase;">50000 Saint Lô</p>'+	
                        '</div>'+
                        '</div>';
    
    var infowindow2 = new google.maps.InfoWindow({
        maxWidth: 170,
        content: contentString2
    });  
    google.maps.event.addListener(marker2, 'click', function() {
        map.setCenter(latlng2);
        infowindow2.open(map,marker2);
    });
}


