I'm doing a website http://hotelvecchiotram.com/dovesiamo/ and on the page that i linked I've tried to implement a google map and an input box for users that want to calculate the distance between their address and my client address. So far so good!
Now the problem that i have is that on my computer works perfectly on localhost and also online; also on another friend of mine works local and online BUT it doesn't work on Winows Browsers, and it works very slowly in Mac's Safari.
I re-edited the code 100 of times and still no dice :(
SPECIFICS : The development environment that i use it's a Ubuntu machine;
The Website Engine is made in Python/Twisted;
The webpages for now are just italian;
The pages are rendered in XHTML with Nevow.
Here is the script
<script type="text/javascript">
//<![CDATA[
var directionDisplay;
var directionsService = new google.maps.DirectionsService();
var map;
function initialize() {
directionsDisplay = new google.maps.DirectionsRenderer();
var udine = new google.maps.LatLng(46.0595822, 13.2331782);
var myOptions = {
zoom:15,
mapTypeId: google.maps.MapTypeId.ROADMAP,
center: udine,
}
map = new google.maps.Map(document.getElementById("map_canvas"), myOptions);
var marker = new google.maps.Marker({
position: udine,
map: map,
title: "Albergo Al Vecchio Tram"
});
marker.setMap(map);
directionsDisplay.setMap(map);
directionsDisplay.setPanel(document.getElementById("directionsPanel"));
}
function c() {
var start = document.getElementById("inizio").value;
var request = {
origin:start,
destination:"Via Brenari, 28, Udine",
travelMode:google.maps.TravelMode.DRIVING
};
directionsService.route(request, function(response, status) {
if (status == google.maps.DirectionsStatus.OK) {
directionsDisplay.setMap(map);
directionsDisplay.setPanel(document.getElementById("directionsPanel"));
directionsDisplay.setDirections(response);
} else {
alert('Error: ' + status);
}
});
}
//]]>
</script>
I hope You will help me.
Thanks!