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 :
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?