1

我想在swift4中的两个坐标之间绘制路线。我正在使用这段代码,

import UIKit
import MapKit

class ViewController: UIViewController, MKMapViewDelegate {

    @IBOutlet weak var myMap: MKMapView!


var myRoute : MKRoute!

override func viewDidLoad() {

    super.viewDidLoad()

    let point1 = MKPointAnnotation()
    let point2 = MKPointAnnotation()

    point1.coordinate = CLLocationCoordinate2DMake(25.0305, 121.5360)
    point1.title = "Taipei"
    point1.subtitle = "Taiwan"
    myMap.addAnnotation(point1)

    point2.coordinate = CLLocationCoordinate2DMake(24.9511, 121.2358)
    point2.title = "Chungli"
    point2.subtitle = "Taiwan"
    myMap.addAnnotation(point2)
    myMap.centerCoordinate = point2.coordinate
    myMap.delegate = self

    //Span of the map

    myMap.setRegion(MKCoordinateRegionMake(point2.coordinate, MKCoordinateSpanMake(0.7,0.7)), animated: true)

    let directionsRequest = MKDirectionsRequest()

    let markTaipei = MKPlacemark(coordinate: CLLocationCoordinate2DMake(point1.coordinate.latitude, point1.coordinate.longitude), addressDictionary: nil)

    let markChungli = MKPlacemark(coordinate: CLLocationCoordinate2DMake(point2.coordinate.latitude, point2.coordinate.longitude), addressDictionary: nil)

    directionsRequest.source = MKMapItem(placemark: markChungli)
    directionsRequest.destination = MKMapItem(placemark: markTaipei)

    directionsRequest.transportType = MKDirectionsTransportType.automobile

    let directions = MKDirections(request: directionsRequest)

    directions.calculate(completionHandler: {

        response, error in

        if error == nil {

            self.myRoute = response!.routes[0] as MKRoute

            self.myMap.add(self.myRoute.polyline)

        }
    })
}

func mapView(_ mapView: MKMapView, rendererFor overlay: MKOverlay) ->MKOverlayRenderer {

    let myLineRenderer = MKPolylineRenderer(polyline: myRoute.polyline)

    myLineRenderer.strokeColor = UIColor.red

    myLineRenderer.lineWidth = 3

    return myLineRenderer
}
}

这段代码给了我正确的答案 在此处输入图像描述

但是当我更改坐标时,它不会显示路线。新坐标为 point1 = 26.9124, 75.7873 point2 = 26.9124, 76.7873

4

1 回答 1

0
于 2019-06-14T14:01:11.400 回答