Get Directions:
|
|
Company name:
|
Your Directions: |
|
Driving Map: |
|
|
|
my_window.document.write("
Directions:
to: "+destination_address+"
" + document.getElementById("directionsPanel").innerHTML + "
window.print();");
return false;
}
function dtbaker_do_directions(fromAddress, toAddress) {
$('#directions').html('');
$('#directions_bit').show();
load();
var request = {
origin:fromAddress,
destination:toAddress,
travelMode: google.maps.DirectionsTravelMode.DRIVING
};
directionsService.route(request, function(response, status) {
if (status == google.maps.DirectionsStatus.OK) {
directionsDisplay.setDirections(response);
}
});
}
//]]>