是否可以使用 Firebase (iOS) 获取当前位置?
Is possible to get the current location with Firebase (iOS)?
我阅读了所有文档和 GeoFire for Firebase 的一些示例,但我不明白是否有可能获取用户的当前位置...这可能吗?如果是,我怎样才能得到它?
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\"")
}
})
我阅读了所有文档和 GeoFire for Firebase 的一些示例,但我不明白是否有可能获取用户的当前位置...这可能吗?如果是,我怎样才能得到它?
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\"")
}
})