使用Google Map Swift 4.0在两个位置之间绘制路线方向

时间:2019-02-19 23:27:46

标签: swift xcode api google-maps gmsmapview

我无法将JSON响应呈现到地图上。 我正在尝试制作一个可以在目标位置输入的应用,而Google地图会根据您当前的位置来确定路线。

我可以在控制台中成功打印出JSON响应

但是我不确定如何使用折线来建立路线。

我在网上看到的所有内容都已过时

任何帮助将非常感谢。

如果您可以为我提供教程,那就太好了!

谢谢:)

1 个答案:

答案 0 :(得分:1)

这就是我的回答方式:

  func drawPath()
    {
        let origin = "\(43.1561681),\(-75.8449946)"
        let destination = "\(38.8950712),\(-77.0362758)"


        let url = "https://maps.googleapis.com/maps/api/directions/json?origin=\(origin)&destination=\(destination)&mode=driving&key=API_KEY"



        Alamofire.request(url).responseJSON { response in
            print(response.request!)  // original URL request
            print(response.response!) // HTTP URL response
            print(response.data!)     // server data
            print(response.result)   // result of response serialization

            do {
                let json = try JSON(data: response.data!)
                let routes = json["routes"].arrayValue

                for route in routes
                {
                    let routeOverviewPolyline = route["overview_polyline"].dictionary
                    let points = routeOverviewPolyline?["points"]?.stringValue
                    let path = GMSPath.init(fromEncodedPath: points!)
                    let polyline = GMSPolyline.init(path: path)
                    polyline.map = self.MapView
                }
            }
            catch {
                print("ERROR: not working")
            }



        }

    }