簡體   English   中英

使用我的ios App iOS 9 Swift 2.2中的路線打開Apple Maps應用程序

[英]Open Apple Maps App With Directions from my ios App iOS 9 Swift 2.2

我一直在尋找很多教程\\幫助,但似乎沒有找到任何,所以我再次來到這里....我想打開Apple地圖獲取路線並從用戶當前位置導航到選定Pin當我在我的應用程序中按自定義leftCalloutAccessory時

我已經設置了按鈕,但無法使用該功能,所以請“如果有人可以指導我或幫助我使用代碼,這將是一個救生員! 謝謝

這是我的代碼:

    import UIKit
    import MapKit
    import CoreLocation

    class MapViewController: UIViewController,MKMapViewDelegate, CLLocationManagerDelegate,UISearchBarDelegate{

    @IBOutlet weak var mapView: MKMapView!

    let locationManager = CLLocationManager()

        override func viewDidLoad() {
            super.viewDidLoad()


            //==========RegionLocation : =========

            // Init the zoom level
            let coordinate:CLLocationCoordinate2D = CLLocationCoordinate2D(latitude: 31.30, longitude: 34.45)
            let span = MKCoordinateSpanMake(125, 125)
            let region = MKCoordinateRegionMake(coordinate, span)
            self.mapView.setRegion(region, animated: true)



            //====================================\\
    }

        override func didReceiveMemoryWarning() {
            super.didReceiveMemoryWarning()
        //Dispose of resources that can be re created.

            }

        //Mark : Location

        func locationManager(manager: CLLocationManager, didUpdateLocations locations: [CLLocation])



        {
            let location = locations.last

            let center = CLLocationCoordinate2D(latitude: location!.coordinate.latitude, longitude: location!.coordinate.longitude)

            let region = MKCoordinateRegion(center: center, span: MKCoordinateSpan(latitudeDelta: 0.06, longitudeDelta: 0.06))

            self.mapView.setRegion(region, animated: true)

            self.locationManager.stopUpdatingLocation()
        }

        func locationManager(manager: CLLocationManager, didFailWithError error: NSError)
        {
            print("Errors: " + error.localizedDescription)
        }

        func mapView(mapView: MKMapView, viewForAnnotation annotation: MKAnnotation) -> MKAnnotationView? {
            if annotation is MKUserLocation {
                return nil
            }
            let reuseID = "pin"
            var pinView = mapView.dequeueReusableAnnotationViewWithIdentifier(reuseID) as? MKPinAnnotationView
            if(pinView == nil) {
                pinView = MKPinAnnotationView(annotation: annotation, reuseIdentifier: reuseID)
                pinView!.canShowCallout = true
                pinView!.animatesDrop = true
                pinView!.rightCalloutAccessoryView = UIButton(type: UIButtonType.DetailDisclosure) as UIButton
                let smallSquare = CGSize(width: 30, height: 30)
                let button = UIButton(frame: CGRect(origin: CGPointZero, size: smallSquare))
                button.setBackgroundImage(UIImage(named: "Car"), forState: .Normal)
                pinView?.leftCalloutAccessoryView = button
            }
            else
            {
                pinView!.annotation = annotation
            }


            return pinView

        }

        func mapView(MapView: MKMapView, annotationView: MKAnnotationView, calloutAccessoryControlTapped Control: UIControl) {

            if Control == annotationView.leftCalloutAccessoryView {

            }

}

以下功能將打開Apple Maps應用程序,並顯示從用戶當前位置到坐標的指定目的地的行車路線。 目標名稱顯示在地圖應用的收件人:字段中。

func openMapsAppWithDirections(to coordinate: CLLocationCoordinate2D, destinationName name: String) {
  let options = [MKLaunchOptionsDirectionsModeKey: MKLaunchOptionsDirectionsModeDriving]
  let placemark = MKPlacemark(coordinate: coordinate, addressDictionary: nil)
  let mapItem = MKMapItem(placemark: placemark)
  mapItem.name = name // Provide the name of the destination in the To: field
  mapItem.openInMapsWithLaunchOptions(options)
}

您可以從代碼中調用此函數,如下所示:

func mapView(MapView: MKMapView, annotationView: MKAnnotationView, calloutAccessoryControlTapped Control: UIControl) {

  if Control == annotationView.leftCalloutAccessoryView {
    if let annotation = annotationView.annotation {
      // Unwrap the double-optional annotation.title property or
      // name the destination "Unknown" if the annotation has no title
      let destinationName = (annotation.title ?? nil) ?? "Unknown"
      openMapsAppWithDirections(to: annotation.coordinate, destinationName: destinationName)
    }
  }

}

像這樣創建擴展:

extension CLLocation {

    func drive() {

        let placemark = MKPlacemark(coordinate: self.coordinate, addressDictionary: addressDictionary)

        let launchOptions = [
            MKLaunchOptionsDirectionsModeKey: MKLaunchOptionsDirectionsModeDriving
        ]

        MKMapItem.openMaps(with: [MKMapItem.forCurrentLocation(), MKMapItem(placemark: placemark)], launchOptions: launchOptions)

    }
}

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM