From 19ec0804bd5bda8cfc81f4e8345ac5ccba2fb400 Mon Sep 17 00:00:00 2001 From: Kilian Koeltzsch Date: Thu, 24 May 2018 00:37:32 +0200 Subject: [PATCH] add placeholder func --- Sources/Karte.swift | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Sources/Karte.swift b/Sources/Karte.swift index 99e774c..ca9e020 100644 --- a/Sources/Karte.swift +++ b/Sources/Karte.swift @@ -55,6 +55,15 @@ public enum Karte { UIApplication.shared.open(url, completionHandler: nil) } + /// Launch a navigation app showing a certain location. + /// + /// - Parameters: + /// - app: the app to be launched + /// - location: the location to show + public static func launch(app: App, location: LocationRepresentable) { + // TODO + } + /// Return a `UIAlertController` with all supported apps the device has installed to offer an option for which app to start. /// Use this instead of `Karte.presentPicker()` if you want to control the presentation of the alert view controller manually. ///