安卓:当前位置

发布于 2024-11-24 16:30:54 字数 130 浏览 2 评论 0原文

我有一个活动,当在我的 Android 设备上启动时,它会在地图视图上覆盖一个小圆圈,指示我所在的位置。 这是使用 mylocationoverlay 完成的。 我想知道是否有任何方法可以从 mylocationoverlay 获取位置详细信息。

I've got an activity which when started on my android device overlays a small circle on the map view indicating where i am.
This is done using mylocationoverlay.
I want to know if there is any way to get the location details from mylocationoverlay.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

逆光下的微笑 2024-12-01 16:30:54

这很容易。
您可以通过以下代码获取您当前位置的纬度和经度

 Double lattitude = (double)(mMyLocationOverlay.getMyLocation().getLatitudeE6()/1E6);

 Double longitude = (double)(mMyLocationOverlay.getMyLocation().getLongitudeE6()/1E6);

希望它有帮助:)

Its very easy .
You can obtain your current location lattitude and longitude by the following code

 Double lattitude = (double)(mMyLocationOverlay.getMyLocation().getLatitudeE6()/1E6);

 Double longitude = (double)(mMyLocationOverlay.getMyLocation().getLongitudeE6()/1E6);

Hope it helps :)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文