нарисовать ломаную линию между двумя широтой и долготой - PullRequest
0 голосов
/ 26 июня 2018

Я передаю два широты и долготы для источника и пункта назначения, но не рисую линию поли между двумя точками. Всегда получаю что-то не так Я хочу нарисовать поли линию между sourceCoordinates и destCoordinates ..

  if(CLLocationManager.locationServicesEnabled()){
        locationManager.delegate = self
        locationManager.desiredAccuracy = kCLLocationAccuracyBest
        locationManager.startUpdatingLocation()
    }

    //let sourceCoordinates = locationManager.location?.coordinate


      let sourceCoordinates = CLLocationCoordinate2DMake(19.115950,72.856448)
    let destCoordinates = CLLocationCoordinate2DMake(19.119670,72.853616)
    let sourcePlacemark = MKPlacemark(coordinate: sourceCoordinates)
         let destPlacemark = MKPlacemark(coordinate: destCoordinates)

    let sourceItem = MKMapItem(placemark: sourcePlacemark)
    let destItem = MKMapItem(placemark: destPlacemark)

    let directionRequest = MKDirectionsRequest()

    directionRequest.source=sourceItem
    directionRequest.destination=destItem



    directionRequest.transportType = .walking
    let directions = MKDirections(request: directionRequest)
    directions.calculate(completionHandler: {
    response,error in
        guard let response = response else{

           if let error = error {
            print("something wrong")
            }
            return
        }
        let route = response.routes[0]
        self.upcoming_info_map.add(route.polyline,level: .aboveRoads)
        let rekt = route.polyline.boundingMapRect
        self.upcoming_info_map.setRegion(MKCoordinateRegionForMapRect(rekt), animated: true)

    })

для рисования полилинии я использую эту функцию

    func mapView(_ mapView: MKMapView, rendererFor overlay: MKOverlay) -> MKOverlayRenderer {
    let renderer = MKPolygonRenderer(overlay:overlay)
    renderer.strokeColor = UIColor.blue
    renderer.lineWidth = 5.0
    return renderer
}

1 Ответ

0 голосов
/ 26 июня 2018

используйте этот method.takes список мест и нарисуйте полилинию

    func addPolyLineToMap(googlemaplist: [CLLocation?]){


    var coordinates = googlemaplist.map({ (location: CLLocation!) -> CLLocationCoordinate2D in
        return location.coordinate
    })

    print("locatios count")
    print(googlemaplist.count)

    var polyline = MKPolyline(coordinates: &coordinates, count: googlemaplist.count)

    DispatchQueue.main.async {
        self.MapKit.add(polyline)

    }
}
...