2
我有兩組地理座標,我試圖計算它們之間的距離。我已經做了一些挖掘,但無法弄清楚如何去做。我正在嘗試獲取用戶(userLatitude/userLongitude)和地點(placeLatitude/placeLongitude)之間的英里距離。我的座標存儲爲NSStrings,如下所示。有誰知道如何做到這一點?謝謝你們!計算兩組座標之間的距離(NSStrings)
NSString *userLatitude =[(PDCAppDelegate *)[UIApplication sharedApplication].delegate
getUserLatitude];
NSString *userLongitude =[(PDCAppDelegate *)[UIApplication sharedApplication].delegate
getUserLongitude];
NSString *placeLatitude = [element1 objectForKey:@"placeLatitude"];
NSString *placeLongitude = [element1 objectForKey:@"placeLongitude"];