如何在MapView中计算当前位置与其他Pins之间的距离

时间:2016-08-15 18:42:23

标签: ios mkmapview distance

我是Swift的新手,我需要计算当前位置附近最近的地方。你能告诉我应该用哪个函数来计算我的位置和我周围最近的距离。我必须在应用程序中显示距离和位置,以便用户可以选择哪一个最适合他。我想我应该使用可以与我的比较的纬度和经度坐标。我还发现我必须使用distanceFromLocation,但我不知道如果有人向我提供了一个我可以用于代码的示例,我会很高兴。 到目前为止我的代码是:

 class ViewThree: UIViewController, CLLocationManagerDelegate{
@IBOutlet weak var SegmentControl: UISegmentedControl!
@IBOutlet weak var Mapview: MKMapView!


var manager =  CLLocationManager()
var receiveImeNaSladkarnica: String = ""
var KordaA: String = ""
var KordaB: String = ""
var PodImeNaObekt: String = ""

  override func viewDidLoad() {
super.viewDidLoad()


    let pinLocation: CLLocationCoordinate2D = CLLocationCoordinate2DMake((KordaA as NSString).doubleValue,(KordaB as NSString).doubleValue)
    let objectAnn = MKPointAnnotation()
    objectAnn.coordinate = pinLocation
    objectAnn.title = receiveImeNaSladkarnica
    objectAnn.subtitle = PodImeNaObekt
    self.Mapview.addAnnotation(objectAnn)

 }

override func didReceiveMemoryWarning() {
    super.didReceiveMemoryWarning()
}

@IBAction func Directions(sender: AnyObject) {
    UIApplication.sharedApplication().openURL(NSURL(string: "http://maps.apple.com/maps?daddr=\((KordaA as NSString).doubleValue),\((KordaB as NSString).doubleValue))")!)



}

@IBAction func MapType(sender: AnyObject) {
    if (SegmentControl.selectedSegmentIndex == 0){
        Mapview.mapType = MKMapType.Standard
    }
    if (SegmentControl.selectedSegmentIndex == 1){
        Mapview.mapType = MKMapType.Satellite
    }


}

@IBAction func LocateMe(sender: AnyObject) {
    manager.delegate = self
    manager.desiredAccuracy = kCLLocationAccuracyBest
    manager.requestWhenInUseAuthorization()
    manager.startUpdatingLocation()

    Mapview.showsUserLocation = true



}
func  locationManager(manager: CLLocationManager, didUpdateLocations locations: [CLLocation]) {
    let userlocation: CLLocation = locations[0] as CLLocation
    manager.stopUpdatingLocation()
    let location = CLLocationCoordinate2D(latitude: userlocation.coordinate.latitude, longitude: userlocation.coordinate.longitude)
    let span = MKCoordinateSpanMake(0.5, 0.5)
    let region = MKCoordinateRegion(center: location, span: span)
    Mapview.setRegion(region, animated: true )
}

2 个答案:

答案 0 :(得分:2)

我和其他应用程序的情况相同。

CLLocation 对象中,有一个实例函数:

func distanceFromLocation(location:CLLocation) - > CLLocationDistance

//Get your two locations that you want to calculate the distance from:

let userLocation: CLLocation = ...
let locationToCompare: CLLocation = ...

// Returned value is in meters
let distanceMeters = userLocation.distanceFromLocation(locationToCompare)

// If you want to round it to kilometers
let distanceKilometers = distanceMeters / 1000.00

// Display it in kilometers
let roundedDistanceKilometers = String(Double(round(100 * distanceKilometers) / 100)) + " km"

<强>已更新

对于您的用例

let locations = ... // All locations you want to compare

for location in locations {

    let distanceMeters = userLocation.distanceFromLocation(location)

    if distanceMeters > 5000 { // Some distance filter
          // Don't display this location
    } else {
          // Display this location
    }

}

我的代码:    的改进

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

    let userlocation:CLLocation = locations[0] as CLLocation

    manager.stopUpdatingLocation()

    let location = CLLocationCoordinate2D(latitude: userlocation.coordinate.latitude, longitude: userlocation.coordinate.longitude)

    let span = MKCoordinateSpanMake(0.5, 0.5)

    let region = MKCoordinateRegion(center: location, span: span)

    Mapview.setRegion(region, animated: true)

    let locationStrings = ["42.6977,23.3219","43.6977,24.3219"]

    // This array must be an array that contains CLLocation objects        
    var locations: [CLLocation] = []

    // We must retrieve the latitude and longitude from locationStrings array to convert them into CLLocation objects
    for locationString in locationStrings {

        let location = CLLocation(latitude: <latitude_value>, longitude: <latitude_value>)

        locations.append(location)

    }

    // Then you will be able to enumerate through the array
    for location in locations {

        let distanceMeters = userLocation.distanceFromLocation(location)

        if distanceMeters > 5000 { // Some distance filter
            // Don't display this location
        } else {
            // Display this location
        }

    }

答案 1 :(得分:0)

您可以使用distanceFromLocation方法获取距离

let distance = userlocation.distanceFromLocation(YourPinInMap)