用户位置查找器

时间:2016-09-12 16:34:31

标签: ios swift uibutton

我有一个按钮,当按下它时会转到用户位置。无法弄清楚要放什么,所以我可以放大用户位置。

我在按钮中输入以下代码。

@IBAction func Refreshbutton(sender: AnyObject) {   
    Mapview.setCenterCoordinate(Mapview.userLocation.coordinate, animated: true)
}

1 个答案:

答案 0 :(得分:1)

这就是我在Swift中的表现:

   @IBAction func CenterMapToUserLocation(sender: AnyObject) {
        let latitude = locationManager.location?.coordinate.latitude
        let longitude = locationManager.location?.coordinate.longitude
        let span = MKCoordinateSpanMake(0.02, 0.02)
        let region = MKCoordinateRegion(center:CLLocationCoordinate2D(latitude: latitude!, longitude: longitude!),span: span)
        tripMapView.setRegion(region, animated: true)
    }