/*

    |----------------------------------------------------
    | Design      : Fivelines
    | Programming : Objetivo Creativo
    |----------------------------------------------------

*/

function initialize() {

    var latlng = new google.maps.LatLng(43.522954,-5.6261);
    var settings = {
        zoom: 15,
        center: latlng,
        mapTypeControl: false,
        mapTypeControlOptions: false,
        navigationControl: true,
        scrollwheel: false,
        navigationControlOptions: {style: google.maps.NavigationControlStyle.SMALL},
        mapTypeId: google.maps.MapTypeId.ROADMAP
    };
    var map = new google.maps.Map(document.getElementById("map1"), settings);
    var companyPos = new google.maps.LatLng(43.522954,-5.6261);
    var companyMarker = new google.maps.Marker({
        position: companyPos,
        map: map,
        title:"Campus de Viesques"
    });
    
    var latlng = new google.maps.LatLng(43.55584170973478,-5.921459197998047);
    var settings = {
        zoom: 15,
        center: latlng,
        mapTypeControl: false,
        mapTypeControlOptions: false,
        navigationControl: true,
        scrollwheel: false,
        navigationControlOptions: {style: google.maps.NavigationControlStyle.SMALL},
        mapTypeId: google.maps.MapTypeId.ROADMAP
    };
    var map = new google.maps.Map(document.getElementById("map2"), settings);
    var companyPos = new google.maps.LatLng(43.55584170973478,-5.921459197998047);
    var companyMarker = new google.maps.Marker({
        position: companyPos,
        map: map,
        title:"Edificio de Servicios Universitarios"
    });
    
    var latlng = new google.maps.LatLng(43.557329,-5.921773);
    var settings = {
        zoom: 15,
        center: latlng,
        mapTypeControl: false,
        mapTypeControlOptions: false,
        navigationControl: true,
        scrollwheel: false,
        navigationControlOptions: {style: google.maps.NavigationControlStyle.SMALL},
        mapTypeId: google.maps.MapTypeId.ROADMAP
    };
    var map = new google.maps.Map(document.getElementById("map3"), settings);
    var companyPos = new google.maps.LatLng(43.557329,-5.921773);
    var companyMarker = new google.maps.Marker({
        position: companyPos,
        map: map,
        title:"Escuela Superior de Arte del Principado de Asturias"
    });
    
}
