var geocoder3; var directionDisplay3; var directionsService = new google.maps.DirectionsService(); var map3; function initialize3() { directionsDisplay3 = new google.maps.DirectionsRenderer(); geocoder3 = new google.maps.Geocoder(); var startplace3 = new google.maps.LatLng(52.52340510, 13.41139990); var myOptions3 = { zoom:12, disableDefaultUI: true, mapTypeId: google.maps.MapTypeId.ROADMAP, navigationControl: true, navigationControlOptions: {style: google.maps.NavigationControlStyle.DEFAULT}, mapTypeControl: true, mapTypeControlOptions: {style: google.maps.MapTypeControlStyle.HORIZONTAL_BAR}, center: startplace3 } map3 = new google.maps.Map(document.getElementById("map_canvas3"), myOptions3); directionsDisplay3.setMap(map3); directionsDisplay3.setPanel(document.getElementById("map_directions3")); google.maps.NavigationControlStyle.SMALL; codeAddress3(' La Aldea de San Nicolás, Calle el Canonigo, 41, Tasarte'); } function codeAddress3(address) { if (geocoder3) { geocoder3.geocode( { 'address': address}, function(results, status) { if (status == google.maps.GeocoderStatus.OK) { map3.setCenter(results[0].geometry.location); var infowindow = new google.maps.InfoWindow({ content: " La Aldea de San Nicolás, Calle el Canonigo, 41, Tasarte" }); var marker = new google.maps.Marker({ position: results[0].geometry.location, title:" La Aldea de San Nicolás, Calle el Canonigo, 41, Tasarte" }); marker.setMap(map3); google.maps.event.addListener(marker, 'click', function() { infowindow.open(map3,marker); }); } else { alert("Could not find the start location. Please be more specific!"); } }); } } function calcRoute3() { var start = document.getElementById("fromAddress3").value; var end = ' La Aldea de San Nicolás, Calle el Canonigo, 41, Tasarte'; var request = { origin:start, destination:end, travelMode: google.maps.DirectionsTravelMode.DRIVING }; directionsService.route(request, function(result, status) { if (status == google.maps.DirectionsStatus.OK) { directionsDisplay3.setDirections(result); } }); }