私の入力は緯度と経度です。 SwiftのreverseGeocodeLocation
関数を使用して、ローカリティの出力を提供する必要があります。私が使用しようとしたコードは
println(geopoint.longitude)
println(geopoint.latitude)
var manager : CLLocationManager!
var longitude :CLLocationDegrees = geopoint.longitude
var latitude :CLLocationDegrees = geopoint.latitude
var location: CLLocationCoordinate2D = CLLocationCoordinate2DMake(latitude, longitude)
println(location)
CLGeocoder().reverseGeocodeLocation(manager.location, completionHandler: {(placemarks, error) -> Void in
println(manager.location)
if error != nil {
println("Reverse geocoder failed with error" + error.localizedDescription)
return
}
if placemarks.count > 0 {
let pm = placemarks[0] as CLPlacemark
println(pm.locality)
}
else {
println("Problem with the data received from geocoder")
}
私が得るログに
//-122.0312186
//37.33233141
//C.CLLocationCoordinate2D
//fatal error: unexpectedly found nil while unwrapping an Optional value
CLLocationCoordinate2DMake
functionが失敗し、reverseGeocodeLocation
関数で致命的なエラーが発生します。どこかでフォーマットをいじくり回しましたか?
場所を逆ジオコーディングすることはありませんが、manager.locationを渡します。
参照:CLGeocoder().reverseGeocodeLocation(manager.location, ...
私はそれがコピー&ペーストの間違いであり、これが問題だと思います-コード自体は見栄えがいいです-ほとんど;)
var longitude :CLLocationDegrees = -122.0312186
var latitude :CLLocationDegrees = 37.33233141
var location = CLLocation(latitude: latitude, longitude: longitude) //changed!!!
println(location)
CLGeocoder().reverseGeocodeLocation(location, completionHandler: {(placemarks, error) -> Void in
println(location)
if error != nil {
println("Reverse geocoder failed with error" + error.localizedDescription)
return
}
if placemarks.count > 0 {
let pm = placemarks[0] as! CLPlacemark
println(pm.locality)
}
else {
println("Problem with the data received from geocoder")
}
})