在 swift 中将字符串转换为 CLLocationCoordinate2D
Convert String to CLLocationCoordinate2D in swift
使用 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)
}
最后一行不起作用,我应该用什么代替?
使用 doubleValue
属性:
let MomentaryLatitude = (snapshot.value["latitude"] as NSString).doubleValue
let MomentaryLongitude = (snapshot.value["longitude"] as NSString).doubleValue
使用 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)
}
最后一行不起作用,我应该用什么代替?
使用 doubleValue
属性:
let MomentaryLatitude = (snapshot.value["latitude"] as NSString).doubleValue
let MomentaryLongitude = (snapshot.value["longitude"] as NSString).doubleValue