i have a website for tourism, here its url : www.irangardeshgar.ir

i want to add google directions to this website,and i did some works to do that,but got some problems,plz help me.

i want to show user a direction from his/her hotel to where he/she wants to go and helps him/her to plan a trip. here is a sample url :

http://irangardeshgar.ir/gmaps.php?user_pids=&place_pids=1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,23,40,41,42,43,44,45,46,47,48,49,50,&hotel_id=52&num_trip_days=4&trip_season=4&trip_type=1

and here is my javascript code in :

<script type="text/javascript">


var directionsDisplay;
var directionsService = new google.maps.DirectionsService();
var map;
var start_point = new google.maps.LatLng(<?php echo $hotel_result['hotel_Latitude'].",".$hotel_result['hotel_Longtitude']; ?>);
var end_point = new google.maps.LatLng(31.893047, 54.369782);

function initialize() {  
    directionsDisplay = new google.maps.DirectionsRenderer();  
    var chicago = new google.maps.LatLng(<?php echo $hotel_result['hotel_Latitude'].",".$hotel_result['hotel_Longtitude']; ?>);  
    var myOptions = {    
        zoom:15,    
        mapTypeId: google.maps.MapTypeId.ROADMAP,    
        center: chicago  
    }  

    map = new google.maps.Map(document.getElementById("map_canvas"), myOptions);  
    directionsDisplay.setMap(map);
    directionsDisplay.setPanel(document.getElementById("directionsPanel"));

}
function calcRoute() {  
    var start = start_point;  
    var end = end_point;  
    var request = {    
        origin:start,    
        destination:end,    
        travelMode: google.maps.TravelMode.DRIVING  
    }; 
    //directionsDisplay.setMap(map.map); 
    directionsService.route(request, function(result, status) {
        if (status == google.maps.DirectionsStatus.OK) {
            directionsDisplay.setDirections(result);    
        }  
    });
}


</script>

and this a part of my html code :

<table>
                            <tr>
                                <td>
                                    <div id="map_canvas" name="map_canvas" style="width:500px; height:550px"></div>
                                </td>
                                <td>
                                    <div id="directionsPanel" name="directionsPanel" style="width:200px; height:550px"></div>
                                </td>
                            </tr>
                        </table>

the problem is the map is showing but the directions is not showing !!!!!!!!!!

what is wrong with my code?where is my mistake?

link|improve this question
is there anyone to help me?? :( – armin Jan 11 at 14:46
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.