web-dev-qa-db-ja.com

swift)で文字列をCLLocationCoordinate2Dに変換します

firebaseをバックエンドとして使用すると、緯度と経度の座標である一連の文字列があります。注釈に使用できるように、それらをCLLocationCoordinate2Dに変換するにはどうすればよいですか。更新されるたびにFirebaseから情報を取得するコードは次のとおりです

var UpdateRef = Firebase(url:"https://ici.firebaseio.com/users")

UpdateRef.observeEventType(.ChildChanged, withBlock: { (snapshot) in
    let MomentaryLatitude = snapshot.value["latitude"] as? String
    let MomentaryLongitude = snapshot.value["longitude"] as? String
    let ID = snapshot.value["ID"] as? String

    println("\(MomentaryLatitude)")

    var Coordinates = CLLocationCoordinate2D(latitude: MomentaryLatitude as
        CLLocationDegrees, longitude: MomentaryLongitude as CLLocationDegrees)

}

最後の行が機能しません。代わりに何を使用すればよいですか?

12
Learnin

doubleValueプロパティを使用します。

let MomentaryLatitude = (snapshot.value["latitude"] as NSString).doubleValue
let MomentaryLongitude = (snapshot.value["longitude"] as NSString).doubleValue
20
fred02138