let origin = "\(userLocation.coordinate.latitude),\(userLocation.coordinate.longitude)"
let destination = "\(_cwLatCoord!),\(_cwLonCoord!)"
let url = "https://maps.googleapis.com/maps/api/directions/json?origin=\(origin)&destination=\(destination)&mode=driving"
Alamofire.request(url).responseJSON { response in
let json = try? JSON(data: response.data!) // can't get here
let routes = json!["routes"].arrayValue
for route in routes {
let routeOverviewPolyline = route["overview_polyline"].dictionary
let points = routeOverviewPolyline?["points"]?.stringValue
let path = GMSPath.init(fromEncodedPath: points!)
let routeDistanceValue = Double(path!.length(of: GMSLengthKind.rhumb))
success(routeDistanceValue)
}
}
}
после строчки где в Аламофаер запрос отдаю, никак не получаю респонс. он просто не заходит в клоузер. почему так происходит? можете подсказать или дать наводку где почитать?
видимо у тебя ошибка приходит, а ошибку ты не обрабатываешь
Обсуждают сегодня