使用 Android LBS 获取我所在的街道

发布于 2024-12-10 11:11:29 字数 147 浏览 0 评论 0原文

我想开发一个简单的 Android 应用程序,它知道我从任何方向接近哪条街道。我的问题是如何在节省电量的同时保存某条街道覆盖的所有坐标/点。使用的库肯定是位置管理器、位置和位置列表器等。

请有人提供有关如何操作的提示。地图没有。

亲切的问候, 凯文

I Would like to develop a simple android application that knows which street I am on approached from any direction. My question is how do you save all the co-ordinates/points on which a certain street covers while saving power.Definitly the Libraries to use are the Location Manager, Location and LocationListner etc.

Would someone please give tips on what to do. Maps not.

Kind Regards,
Kevin

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

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

发布评论

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

评论(1

来日方长 2024-12-17 11:11:29

知道我在哪条街道的应用程序

使用反向地理编码您可以获得这个地址。

Geocoder geocoder = new Geocoder(this, Locale.getDefault());
List<Address> addresses = geocoder.getFromLocation(lat, lng, 1);

它需要互联网许可

<uses-permission android:name="android.permission.INTERNET" />

application that knows which street I am on

Using reverse geocoding you can get this address.

Geocoder geocoder = new Geocoder(this, Locale.getDefault());
List<Address> addresses = geocoder.getFromLocation(lat, lng, 1);

It needs the internet permission

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