func convertToAddressWith(coordinate: CLLocationCoordinate2D) {
let location = CLLocation(latitude: coordinate.latitude, longitude: coordinate.longitude)
let geocoder = CLGeocoder()
let locale = Locale(identifier: "Ko-kr")
geocoder.reverseGeocodeLocation(location, preferredLocale: locale) { [weak self] placemarks, _ in
guard let placemarks = placemarks?.first,
let dong = placemarks.subLocality,
let city = placemarks.locality
else { return }
DispatchQueue.main.async {
self?.locationLabel.text = "\(city), \(dong)"
}
}
}