更新当前用户位置时Google地图闪烁

时间:2018-06-26 07:10:31

标签: ios swift google-maps

我正在使用 Google地图在开始位置和目标位置之间绘制路径。 使用此委托功能,当用户旅行时,它可以完美工作,更新当前位置并绘制路线。

public func mapView(_ mapView: GMSMapView, didChange position: GMSCameraPosition) {

   drawPath() 

}

地图开始闪烁,我正在使用此功能绘制路径

func drawPath()
{
   let urlString = "https://maps.googleapis.com/maps/api/directions/json?origin=\(origin)&destination=\(destination)&mode=driving"

    let url = URL(string: urlString)
    URLSession.shared.dataTask(with: url!, completionHandler: {
        (data, response, error) in

        if(error != nil){
            print("error")
        }else{
            DispatchQueue.main.async {
            do{
                let json = try JSONSerialization.jsonObject(with: data!, options:.allowFragments) as! [String : AnyObject]
                let routes = json["routes"] as! NSArray
                self.googleMapView?.clear()

                    for route in routes
                    {
                        let routeOverviewPolyline:NSDictionary = (route as! NSDictionary).value(forKey: "overview_polyline") as! NSDictionary
                        let points = routeOverviewPolyline.object(forKey: "points")
                        let path = GMSPath.init(fromEncodedPath: points! as! String)
                        let polyline = GMSPolyline.init(path: path)
                        polyline.strokeWidth = 8
                        polyline.strokeColor = #colorLiteral(red: 0.2420450151, green: 0.487836957, blue: 0.9020499587, alpha: 1)
                        let bounds = GMSCoordinateBounds(path: path!)
                        self.googleMapView!.animate(with: GMSCameraUpdate.fit(bounds, withPadding: 30.0))

                        polyline.map = self.googleMapView
                    }
            }catch let error as NSError{
                print("error:\(error)")
            }
                self.addMarker(loc: desti)

            }
        }
    }).resume()
}

在其他情况下,如果没有委托函数,则不会清除路线折线,而是会更新当前位置。

有人可以建议一种方法,谢谢。

1 个答案:

答案 0 :(得分:1)

我建议您在viewdidload中只绘制一次路线,并在位置更改时更新标记位置。因此,这将消除路线图闪烁,而只是随着头寸变化而移动市场。