calculateETA(completionHandler:)
Begins calculating the requested travel-time information asynchronously.
Declaration
func calculateETA(completionHandler: @escaping @Sendable (MKDirections.ETAResponse?, (any Error)?) -> Void)func calculateETA() async throws -> MKDirections.ETAResponseParameters
- completionHandler:
The block to execute when the travel-time estimate is ready or when an error occurs. This parameter can’t be
nil.
Discussion
This method initiates a request for a travel-time estimate and calls your completion handler block with the results. Travel-time estimates take much less time to generate than directions, so use this method in situations where you want a time estimate only. The method executes your completion handler on your app’s main thread. The implementation of your handler needs to check for errors and then incorporate the response data as appropriate.
If you call this method while a previous request is in process, this method calls your completion handler with an error. You can determine whether a request is in process by checking the value of the isCalculating property. You can also cancel a request as necessary.