可以使用Firebase(iOS)获取当前位置吗?

时间:2016-11-19 18:25:20

标签: ios xcode firebase firebase-realtime-database geofire

我阅读了GeoFire for Firebase的所有文档和一些示例,但我不明白是否可以获取用户的当前位置......是否可能?如果是的话,我怎么能得到它?

1 个答案:

答案 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\"")
  }
})

看看herehere