緯度経度から住所などに変換
今回の内容
- 緯度経度から住所などに変換
コードと簡単解説
-
func locationManager(_ manager: CLLocationManager, didUpdateLocations locations: [CLLocation]) {}
内でlocations
から緯度と経度を取得します。
- 取得してきた緯度と経度から
reverseGeocodeLocation
により住所などに変換して利用することができる。
//使用者の現在地の緯度と経度を取得して、住所か建物の名前などに変換
func locationManager(_ manager: CLLocationManager, didUpdateLocations locations: [CLLocation]) {
CLGeocoder().reverseGeocodeLocation(CLLocation(latitude: (locations.first?.coordinate.latitude)!, longitude: (locations.first?.coordinate.longitude)!)) { placeMark, error in
if error != nil{
return
}
if let resultPlaceMark = placeMark?.first{
if resultPlaceMark.administrativeArea != nil || resultPlaceMark.locality != nil{
self.currentLocationLabel.text = resultPlaceMark.name! + resultPlaceMark.administrativeArea!
}else{
self.currentLocationLabel.text = resultPlaceMark.name!
}
}
}
}
終わり
-
func locationManager(_ manager: CLLocationManager, didUpdateLocations locations: [CLLocation]) {}
内でlocations
から緯度と経度を取得します。 - 取得してきた緯度と経度から
reverseGeocodeLocation
により住所などに変換して利用することができる。
//使用者の現在地の緯度と経度を取得して、住所か建物の名前などに変換
func locationManager(_ manager: CLLocationManager, didUpdateLocations locations: [CLLocation]) {
CLGeocoder().reverseGeocodeLocation(CLLocation(latitude: (locations.first?.coordinate.latitude)!, longitude: (locations.first?.coordinate.longitude)!)) { placeMark, error in
if error != nil{
return
}
if let resultPlaceMark = placeMark?.first{
if resultPlaceMark.administrativeArea != nil || resultPlaceMark.locality != nil{
self.currentLocationLabel.text = resultPlaceMark.name! + resultPlaceMark.administrativeArea!
}else{
self.currentLocationLabel.text = resultPlaceMark.name!
}
}
}
}
終わり
ご指摘、ご質問などありましたら、コメントまでお願い致します。
Author And Source
この問題について(緯度経度から住所などに変換), 我々は、より多くの情報をここで見つけました https://qiita.com/HiroUrata/items/eed941e3facb5af68e97著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .