当用户更改位置时,如何将地图居中

时间:2016-12-13 17:01:26

标签: ios swift google-maps google-maps-sdk-ios

当用户移动时,您如何将谷歌地图置于中心位置,如驾驶?我所拥有的代码并不是用户的中心,用户只是走向边界并消失。你如何让用户始终处于中心位置?

func locationManager(manager: CLLocationManager, didUpdateLocations locations: [CLLocation]) {

    if let location = manager.location {

        if (firstLoad) {
            firstLoad = false
            recentCoordinate = location.coordinate
            mapView.camera = GMSCameraPosition(target: location.coordinate, zoom: Constants.MapView.Zoom, bearing: 0, viewingAngle: Constants.MapView.ViewingAngle)
        }
        else {
             // This line of code suppose to center the user as user moves along while keeping the zoom and angle state user has chosen
             mapView.camera = GMSCameraPosition(target: location.coordinate, zoom: mapView.camera.zoom, bearing: 0, viewingAngle: mapView.camera.viewingAngle)


        }

        // Filter out noise. Currently not working
        let age = 0 - location.timestamp.timeIntervalSinceNow
        if (age > 120) {
            return;    // ignore old (cached) updates
        }
        if (location.horizontalAccuracy < 0) {
            return;   // ignore invalid updates
        }

        if (location.horizontalAccuracy <= 10){
            // this is a valid update
            // Draw route as user moves along
            path.addCoordinate(CLLocationCoordinate2D(latitude: location.coordinate.latitude,
                longitude: location.coordinate.longitude))
            let polyline = GMSPolyline(path: path)
            polyline.strokeColor = UIColor.redColor()
            polyline.strokeWidth = 3
            polyline.map = mapView

            // Save the coordinates to array
            coordinateArray.append([location.coordinate.latitude, location.coordinate.longitude])



        }
     }

2 个答案:

答案 0 :(得分:1)

您还可以尝试其他几种方式。

let update = GMSCameraUpdate.setTarget(location.coordinate)
mapView.moveCamera(update)

mapView.camera = GMSCameraPosition.camera(target: location.coordinate, zoom: 15.0)

let update = GMSCameraUpdate.setTarget(location.coordinate)
        mapView.animate(with: update)

答案 1 :(得分:0)

如果有人像我一样寻找swift 2.3解决方案,这就是解决方案:

mapView.animateToLocation(CLLocationCoordinate2D(latitude: location.coordinate.latitude,longitude: location.coordinate.longitude))