Mukunth A
unread,Feb 3, 2012, 5:00:01 AM2/3/12Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to google-map...@googlegroups.com
Does Google Maps API v3 support driving directions for Korea ?
function calcRoute() {
var start = "Suwon";
var end = "Seoul";
var request = {
origin:start,
destination:end,
travelMode: google.maps.DirectionsTravelMode.DRIVING
};
directionsService.route(request, function(response, status) {
alert(status);
if (status == google.maps.DirectionsStatus.OK) {
directionsDisplay.setDirections(response);
}
});
}
but status is getting returned as "ZERO Results".
The above code works for all other countries except korea.
Any suggestion to this ??