We would like to draw a route between two points by using Google Maps Directions API.
Request:
https://maps.googleapis.com/maps/api/directions/json?origin=39.76700140,30.50334660&destination=39.49402464,31.84024373
Response:
{
"geocoded_waypoints" : [ {}, {} ],
"routes" : [],
"status" : "ZERO_RESULTS"
}
It returns ZERO_RESULTS status. However, these two points can be geocoded and they are actual and valid points.
Does anyone know why the route can not be drawn although they can be geocoded?
Thanks in advance, Mark