在 LocationManager 中获取错误位置

发布于 2024-12-23 11:37:28 字数 167 浏览 1 评论 0原文

当将 LocationManager 与网络提供商一起使用时,我得到了完全错误的位置。我在非洲以外的海域找到了一个位置,精度约为 2000。我的 Google 地图显示了准确的位置。

有人知道问题出在哪里吗?当我使用getLastKnownLocation()时,情况是一样的。

I get totally wrong location when using the LocationManager with the Network provider. I get a Location out in the sea outside Africa, the accuracy is around 2000. My Google Maps is showing the accurate position.

Does anyone have a idea about what the problem can be? It is the same when I use the getLastKnownLocation().

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

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

发布评论

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

评论(1

下雨或天晴 2024-12-30 11:37:28

网络位置提供商极其不准确。通常如果你连接到 WiFi,你可以到达 100 米以内,但在手机信号塔上,2000 米是很正常的。珀赛,这并不是真正的问题。

如果 Google 地图能够在 GPS 关闭的情况下获得准确的位置,那么很可能是由于他们执行了一些非常先进的位置管理。但不幸的是,2000 米的网络定位在我的所有测试用例中都是正常的。

编辑:

也就是说location.getAccuracy()的值在2000左右(不是以米为单位的值)。

当 getAccuracy() 返回值 2000 时,表示米。以下是文档关于 getAccuracy( )

返回定位精度(以米为单位)。如果 hasAccuracy() 为 false,则返回 0.0。

但它返回一个 float 值,虽然它不显示单位,但它仍然是米。

The network location provider is extremely inaccurate. Usually if you are connected to WiFi, you can get within 100 meters, but on cell towers, 2000 meters is pretty normal. There's not really a problem, persay.

If Google Maps is able to get an accurate location with GPS turned off, then it is likely due to some very advanced location management that they do. But 2000 meters with Network Location, unfortunately, is normal in all of my test cases.

EDIT:

It is to say that the value of location.getAccuracy() is around 2000 (not a value in meters).

When getAccuracy() returns a value of 2000, it means meters. Here's what The Docs say about getAccuracy():

Returns the accuracy of the fix in meters. If hasAccuracy() is false, 0.0 is returned.

But it returns a float value, and while it doesn't display the unit, it is still meters.

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