Как рисовать маршруты в GMSmap View Swift (не прямо) с помощью Google Api Swift - PullRequest
1 голос
/ 10 февраля 2020

Я пытаюсь нарисовать маршрут на карте с помощью API направления Google. Я использую решение от самого stackoverflow, но я получаю некоторые ошибки относительно инициализаторов. Также маршрут будет таким же, как и карта Google, или прямой. Любая помощь приветствуется. Также, где я должен вызывать эти методы Я получаю ошибку как

Невозможно вызвать инициализатор для типа 'GMSCoordinateBounds' со списком аргументов типа '(координата: String, Строка, координата: String, String) '

Ниже приведен код.

 func getRouteSteps(from source: CLLocationCoordinate2D, to destination: CLLocationCoordinate2D) {

        let session = URLSession.shared

        let url = URL(string: "https://maps.googleapis.com/maps/api/directions/json?origin=\(lat),\(long)&destination=\(directionlat),\(directionlong)&sensor=false&mode=driving&key=\(API KEY)")!

        let task = session.dataTask(with: url, completionHandler: {
            (data, response, error) in

            guard error == nil else {
                print(error!.localizedDescription)
                return
            }

            guard let jsonResult = try? JSONSerialization.jsonObject(with: data!, options: .allowFragments) as? [String: Any] else {

                print("error in JSONSerialization")
                return

            }



            guard let routes = jsonResult!["routes"] as? [Any] else {
                return
            }

            guard let route = routes[0] as? [String: Any] else {
                return
            }

            guard let legs = route["legs"] as? [Any] else {
                return
            }

            guard let leg = legs[0] as? [String: Any] else {
                return
            }

            guard let steps = leg["steps"] as? [Any] else {
                return
            }
            for item in steps {

                guard let step = item as? [String: Any] else {
                    return
                }

                guard let polyline = step["polyline"] as? [String: Any] else {
                    return
                }

                guard let polyLineString = polyline["points"] as? String else {
                    return
                }

                //Call this method to draw path on map
                DispatchQueue.main.async {
                    self.drawPath(from: polyLineString)
                }

            }
        })
        task.resume()
    } 

Функция для рисования полилинии

 func drawPath(from polyStr: String){
        let mapView: GMSMapView
        let path = GMSPath(fromEncodedPath: polyStr)
        let polyline = GMSPolyline(path: path)
        polyline.strokeWidth = 3.0
        polyline.map = mapView // Google MapView

//
        let cameraUpdate = GMSCameraUpdate.fit(GMSCoordinateBounds(coordinate: "\(lat)","\(long)", coordinate: "\(directionlat)","\(directionlong)")) as? [String : AnyObject]
        mapView.moveCamera(cameraUpdate)
        let currentZoom = mapView.camera.zoom
        mapView.animate(toZoom: currentZoom - 1.4)
    }

Ответы [ 2 ]

2 голосов
/ 10 февраля 2020

GMSCoordinatesBounds принимает в качестве параметра тип CLLocationCoordinates2D, а не String.

замените

let cameraUpdate = GMSCameraUpdate.fit(GMSCoordinateBounds(coordinate: "\(lat)","\(long)", coordinate: "\(directionlat)","\(directionlong)")) as? [String : AnyObject]

на

let cameraUpdate = GMSCameraUpdate.fit(GMSCoordinateBounds(coordinate: CLLocationCoordinate2D(latitude: Double(lat), longitude: Double(long)), coordinate: CLLocationCoordinate2D(latitude: Double(directionlat), longitude: Double(directionlat))))

и, как только вы добавите mapView в свой контроллер вида и получите координаты, вызовите вашу функцию

self.getRouteSteps(from source: CLLocationCoordinate2D(latitude: Double(lat), longitude: Double(long)), destination: CLLocationCoordinate2D(latitude: Double(directionlat), longitude: Double(directionlat)))
1 голос
/ 10 февраля 2020

Вы можете попробовать это, используйте ниже, чтобы получить направление:

  //This function is used to fetch the directions from origin to destination

private func fetchDirection(destinationLat: CLLocationDegrees, destinationLong: CLLocationDegrees) {

    //Here you need to set your origin and destination points and mode

    if let location = locationManager.location {


            guard let url = URL(string: "\("https://maps.googleapis.com/maps/api/directions/json")?origin=\(location.coordinate.latitude),\(location.coordinate.longitude)&destination=\(destinationLat),\(destinationLong)&key=\(Constants.MapKey)") else { return }

            let task = URLSession.shared.dataTask(with: url) { [unowned self](data, response, error) -> Void in

                do {

                    guard let data = data else { return }

                    let decoder = JSONDecoder()

                    decoder.keyDecodingStrategy = .convertFromSnakeCase

                    guard let mapData = try? decoder.decode(MapModel.self, from: data) else { return }

                    if let points = mapData.routes.first?.overviewPolyline.points {

                        self.drawRoute(points: points)

                    }
                }

            }

            task.resume()

    }
}

Используйте это, чтобы нарисовать маршрут на карте:

    //This function is used to draw the routes

private func drawRoute(points: String) {


        let path = GMSPath.init(fromEncodedPath: points)
        let singleLine = GMSPolyline.init(path: path)
        self.polylines.append(singleLine)
        singleLine.strokeWidth = 6.0
        let gradientColor: GMSStrokeStyle = GMSStrokeStyle.gradient(from: .red, to: .blue)
        singleLine.spans = [GMSStyleSpan.init(style: gradientColor)]

        if  self.polylines.count > 0 {

            self.polylines.forEach{ $0.map = nil }

        }

        singleLine.map = self.mapView

}

И, вот MapModel

struct MapModel: Decodable {

let status: String
let routes: [Routes]
}

struct Routes: Decodable {

let overviewPolyline: OverviewPolyline
}

struct OverviewPolyline: Decodable {

let points: String
}

Надеюсь, вы знакомы с Codables, а также я вызвал функцию drawRoute, когда получил очки.

...