我正在尝试在任何给定时间提取活跃用户的位置
I am trying to pull an active user's location at any given time
我想找到一个 API 可以让我提取客户的当前位置。我知道 Google 个 Places 和 FourSquare 有 API 个可用。基本上,我希望它始终 运行,因为我最终将创建一个约会应用程序,让您可以在任何给定时间查看当前处于 bar/restaurant/social 设置的人。
当前位置的获取显然必须一直运行ning,并且有使用过多客户端资源的考虑。话虽如此,我有哪些选择?
是的,您可以为此使用 Google 个地方 API:PlaceDetectionApi.getCurrentPlace()
。请参阅 https://developers.google.com/places/android-api/current-place (and the Getting Started 指南)。
我想找到一个 API 可以让我提取客户的当前位置。我知道 Google 个 Places 和 FourSquare 有 API 个可用。基本上,我希望它始终 运行,因为我最终将创建一个约会应用程序,让您可以在任何给定时间查看当前处于 bar/restaurant/social 设置的人。
当前位置的获取显然必须一直运行ning,并且有使用过多客户端资源的考虑。话虽如此,我有哪些选择?
是的,您可以为此使用 Google 个地方 API:PlaceDetectionApi.getCurrentPlace()
。请参阅 https://developers.google.com/places/android-api/current-place (and the Getting Started 指南)。