Da Bologna percorrere via Emilia Levante in direzione San Lazzaro di Savena. Attraversare San Lazzaro seguendo le indicazioni per Idice. Alla seconda rotonda sulla via Emilia, svoltare a destra in direzione Castel de Britti e proseguire per circa un chilometro.
Via Idice 24, San Lazzaro di Savena (BO)
'
});
google.maps.event.addListener(markerPhocaMarker1, 'click', function() {
infoPhocaWindow1.open(mapPhocaMap, markerPhocaMarker1 );
});
phocaDirService = new google.maps.DirectionsService();
phocaDirDisplay = new google.maps.DirectionsRenderer();
phocaDirDisplay.setMap(mapPhocaMap);
phocaDirDisplay.setPanel(document.getElementById("phocaDir"));
google.maps.event.addDomListener(tstPhocaMap, 'DOMMouseScroll', CancelEventPhocaMap);
google.maps.event.addDomListener(tstPhocaMap, 'mousewheel', CancelEventPhocaMap); }
}
function setPhocaDir(fromPMAddress, toPMAddress) {
var request = {
origin: fromPMAddress,
destination: toPMAddress,
travelMode: google.maps.DirectionsTravelMode.DRIVING
};
phocaDirService.route(request, function(response, status) {
if (status == google.maps.DirectionsStatus.OK) {
pPI = document.getElementById('phocaMapsPrintIcon');
pPI.style.display='block';
var from64 = Base64.encode(fromPMAddress).toString();
var to64 = Base64.encode(toPMAddress).toString();
pPI.innerHTML = '
';
phocaDirDisplay.setDirections(response);
} else if (google.maps.DirectionsStatus.NOT_FOND) {
alert("One of the locations specified in the requests's origin, destination, or waypoints could not be geocoded.");
} else if (google.maps.DirectionsStatus.ZERO_RESULTS) {
alert("No route could be found between the origin and destination.");
} else if (google.maps.DirectionsStatus.MAX_WAYPOINTS_EXCEEDED) {
alert("Too many DirectionsWaypoints were provided in the DirectionsRequest.");
} else if (google.maps.DirectionsStatus.OVER_QUERY_LIMIT) {
alert("Webpage has sent too many requests within the allowed time period.");
} else if (google.maps.DirectionsStatus.INVALID_REQUEST) {
alert("The provided DirectionsRequest was invalid.");
} else if (google.maps.DirectionsStatus.REQUEST_DENIED) {
alert("Webpage is not allowed to use the directions service.");
} else if (google.maps.DirectionsStatus.UNKNOWN_ERROR) {
alert("Directions request could not be processed due to a server error. The request may succeed if you try again.");
} else {
alert("Directions request could not be processed due to a server error. The request may succeed if you try again.");
}
});
}
function initialize() {
tstPhocaMap.setAttribute("oldValue",0);
tstPhocaMap.setAttribute("refreshMap",0);
tstIntPhocaMap = setInterval("CheckPhocaMap()",500);
}
google.setOnLoadCallback(initialize);
//]]>