Does Google Maps API v3 support driving directions for Korea ?

210 views
Skip to first unread message

Mukunth A

unread,
Feb 3, 2012, 5:00:01 AM2/3/12
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 ??

Dave Medlicott

unread,
Feb 3, 2012, 5:55:50 PM2/3/12
to google-map...@googlegroups.com
No, South Korea is not covered.. Here's a link to the list of what's covered and what's not: http://gmaps-samples.googlecode.com/svn/trunk/mapcoverage_filtered.html
Reply all
Reply to author
Forward
0 new messages