これはページです: 私のサイトご覧 のとおり、地図はOKで、中央に配置され、必要に応じてズームされています。問題は、道順が表示されていないことです...
Googleマップコード:
var directionDisplay;
var directionsService = new google.maps.DirectionsService();
var map;
function initialize() {
directionsDisplay = new google.maps.DirectionsRenderer();
var myLatlng = new google.maps.LatLng(37.651429,22.267043);
var myOptions = {
zoom:9,
center: new google.maps.LatLng(37.722392,22.769925),
mapTypeId: google.maps.MapTypeId.ROADMAP,
}
map = new google.maps.Map(document.getElementById("map1"), myOptions);
directionsDisplay.setMap(map);
}
function calcRoute() {
var request = {
origin:"athens, greece",
destination:myLatlng,
travelMode: google.maps.DirectionsTravelMode.DRIVING,
};
directionsService.route(request, function(response, status) {
if (status == google.maps.DirectionsStatus.OK) {
directionsDisplay.setDirections(response);
}
});
}
何かアドバイスはありますか?