i am wonder ! when i using origin1 and destinationA not working
status = "ZERO_RESULTS";
but if used origin2 and destinationB it is working perfectly do i missed anything
var origin = "55.930385, -3.118425"
var destination = "50.087692, 14.421150"
override func viewDidLoad() {
super.viewDidLoad()
durationDestance(origin: origin, destination: destination, mode:"bicycling")
}
func durationDestance(origin: String, destination: String, mode:String) {
var urlString : String = "https://maps.googleapis.com/maps/api/distancematrix/json?origins=\(origin)&destinations=\(destination)&mode=\(mode)&key=AIzaSyAVOt9LLagNGSOI8O0ri1Sbahcl_q5AFYc";
urlString = urlString.addingPercentEncoding(withAllowedCharacters: .urlFragmentAllowed)!
let session = URLSession.shared
let url = URL(string:urlString)!
session.dataTask(with: url) { (data: Data?, response: URLResponse?, erorr: Error?) -> Void in
print("url: \(urlString)")
if let responseData = data {
do{
let json = try JSONSerialization.jsonObject(with: responseData, options: JSONSerialization.ReadingOptions.allowFragments);
print(json);
}
catch{
print("do not serialization :)");
}
}
}.resume();
}
Because there is no cycle path between these points. Try to select bicycle: google maps
Swift 3 Full Sample
Swift 2.3 Full Sample
Result