如何使Android上的位置稳定

发布于 2024-10-16 16:13:47 字数 92 浏览 2 评论 0原文

我尝试接收纬度和Android 手机上的经度。 安卓上的位置是直接从卫星接收的吗? 为什么它一直在动态,而我却站着? 那么,有人知道如何使其稳定吗?

谢谢

I try to receive latitude & longitude on android phone.
Is location on android receive directly from satellite?
Why it dynamic all the time, while I standing though?
So, anyone know how to make it stable ?

Thanks

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

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

发布评论

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

评论(1

夏至、离别 2024-10-23 16:13:47

该位置可能来自各个地方:

  • “最后已知”位置、操作系统级缓存位置(速度快,但可能不准确)
  • wifi 网络(Google 通常可以从您所在的 wifi 网络推断出位置,但并非总是如此)
  • 移动网络 - 如果设备位于移动电话网络上,则
  • GPS 接收器可以提供位置信息。如果设备在室外,这将提供最准确的位置。

您的应用程序将有特定的需求,因此您需要根据其准确性和来源来决定您想要哪些位置,以及在获得它们后做什么。

使用 GPS 时,建筑物、球座、天气等都会对位置产生影响,因此您永远无法获得极其准确的位置。许多应用程序只是请求位置并使用它,但如果您需要准确、稳定的位置数据,则需要从相关来源收集数据,然后使用自己的算法来决定使用哪个。

您需要阅读、理解并使用此页面中的内容:
http://developer.android.com/guide/topics/location /获取-用户-位置.html

The location may come from a variety of places:

  • The "last-known" location, an OS-level cached location (fast, but may be inaccurate)
  • The wifi network (Google can often deduce location from the wifi net you're on, but not always)
  • Mobile network - if the device is on a mobile phone network, that can provide location information
  • GPS receiver. If the device is outdoors this will provide the most accurate location

Your app will have specific needs, and so you need to decide which locations you want, and what you do when you get them, based on their accuracy, and the source.

With GPS, buildings, tees, the weather, etc will all have an effect on the location, so you'll never get one amazingly accurate location. Many apps just request a location and use it, but if you need accurate, stable location data, you need to collect data from relevant sources, and then use your own algorithm to decide which to use.

You need to read, understand, and use what's in this page:
http://developer.android.com/guide/topics/location/obtaining-user-location.html

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