我阅读了GeoFire for Firebase的所有文档和一些示例,但我不明白是否可以获取用户的当前位置......是否可能?如果是的话,我怎么能得到它?
答案 0 :(得分:0)
Geofire在github上有一个很好的自述...
使用Swift检索位置
geoFire.getLocationForKey("firebase-hq", withCallback: { (location, error) in
if (error != nil) {
println("An error occurred getting the location for \"firebase-hq\": \(error.localizedDescription)")
} else if (location != nil) {
println("Location for \"firebase-hq\" is [\(location.coordinate.latitude), \(location.coordinate.longitude)]")
} else {
println("GeoFire does not contain a location for \"firebase-hq\"")
}
})