iPhoneの写真データから緯度と経度を取得しようとしていますが選択した写真だけでなく表示されている写真全てから緯度と経度のデータが取得されてしまいます。どのようにしましたら選択した写真のみのデータとすることができますでしょうか。

func imagePickerController(picker: UIImagePickerController, didFinishPickingMediaWithInfo info: [String : AnyObject]) {
    let fetchResult = PHAsset.fetchAssetsWithMediaType(PHAssetMediaType.Image, options: nil)
    fetchResult.enumerateObjectsUsingBlock ({result, index, stop in
        if let asset = result as? PHAsset {
            if let location = asset.location {
                let lat = location.coordinate.latitude as Double
                let lng = location.coordinate.longitude as Double
                print("GPS:\(lat),\(lng)")
            }
        }
    })
}