如何在Mapbox for iOS SDK中使用userLocation找到正确的位置数据? (迅速)

时间:2016-02-05 22:49:06

标签: ios mapbox userlocation

我正在尝试查找用户位置的纬度和经度,以便我可以在viewdidload中将地图置于用户的中心位置。

我已经实现了似乎是正确的代码,但userLat(纬度)和userLon(经度)的值是关闭的。

N.B。别人和我有同样的问题,但他的回答从未得到解决: Mapbox iOS8 Swift mapView.showUsersLocation

import Mapbox

class ViewController: UIViewController, MGLMapViewDelegate, CLLocationManagerDelegate {

//    let locationManager = CLLocationManager()

    @IBOutlet weak var mapView: MGLMapView!

    override func viewDidLoad() {
        super.viewDidLoad()

        // Initalise map's center coordinate as vancouver
        mapView.setCenterCoordinate(CLLocationCoordinate2D(latitude: 49.283382,
            longitude: -123.117394),
            zoomLevel: 15, animated: false)
        view.addSubview(mapView)

        // Set the delegate property of our map view to self after instantiating it.
        mapView.delegate = self

        // User location
        mapView.showsUserLocation = true

        let userLoc = mapView.userLocation!
        userLoc.title = "Hello"
        userLoc.subtitle = "I am here!"

        let userLat = userLoc.coordinate.latitude
        let userLon = userLoc.coordinate.longitude

        print(userLat, userLon)

        /*
        self.locationManager.requestAlwaysAuthorization()
        if CLLocationManager.locationServicesEnabled() {
            locationManager.delegate = self
            locationManager.desiredAccuracy = kCLLocationAccuracyNearestTenMeters
            locationManager.startUpdatingLocation()
        }*/

    }

    func mapView(mapView: MGLMapView, annotationCanShowCallout annotation: MGLAnnotation) -> Bool {
        return true
    }

}

结果打印:

3.40282346638529e+38 3.40282346638529e+38

奇怪的是,注释工作正常,当我点击我的位置时,我会得到标题和副标题。

2 个答案:

答案 0 :(得分:14)

将地图置于用户所在位置的最简单方法是在目标C中设置final Authentication authentication = this.authenticationManager.authenticate(token); MGLUserTrackingModeFollow)。当位置可用时,这将自动移动地图。

MGLMapView.userTrackingMode = .follow查看虚假号码的原因是用户的位置通常在MGLMapView.userLocation中无法使用。使用mapView:didUpdateUserLocation:委托方法可在用户的位置可用以及更新时通知。

答案 1 :(得分:3)

有一个名为mapViewDidFinishLoadingMap的委托方法。在此方法中将地图的中心设置为用户坐标。

func mapViewDidFinishLoadingMap(_ mapView: MGLMapView) {
    mapView.setCenter((mapView.userLocation?.coordinate)!, animated: false)
}