【发布时间】:2014-02-13 07:39:32
【问题描述】:
我试图在我的应用程序中与我当前的位置共享谷歌地图(类似于 whatsapp),我搜索了它但没有找到任何解决方案。任何人都可以指导我如何开始工作。我不知道我应该如何开始。
【问题讨论】:
标签: android google-maps location
我试图在我的应用程序中与我当前的位置共享谷歌地图(类似于 whatsapp),我搜索了它但没有找到任何解决方案。任何人都可以指导我如何开始工作。我不知道我应该如何开始。
【问题讨论】:
标签: android google-maps location
我们需要知道您打算如何共享这些数据,但一般来说,您可以共享包含您在地球上的纬度和经度位置的 GeoPoint 变量..
GeoPoint(int latitudeE6, int longitudeE6)
// Constructs a GeoPoint with the given latitude and longitude, measured in microdegrees (degrees * 1E6).
【讨论】: