使用Android中的Geocoder类根据zip获取纬度和经度

发布于 2024-12-02 09:17:42 字数 304 浏览 0 评论 0原文

伙计们。 Geocoder 类中的 getFromLocationName(..) 方法通过“用户提供的位置描述”返回地址。如果我用“伦敦”字符串或“自由女神像”调用它,它会返回地址,我可以将地图动画化到找到的坐标。但我需要根据邮政编码查找纬度和经度。如果我使用“33040”字符串(基韦斯特地区的 zip)调用方法 - 地理编码器返回一些其他地址(当然!),因为它无法将该字符串与 zip 关联。 我做了一些技巧:如果用户输入十进制值,则添加“usa”前缀。它按字符串“usa 33040”和其他字符串返回 70% 的当前位置。知道如何在 100% 的情况下通过 ZIP 查找位置吗?谢谢!

guys.
Method getFromLocationName(..) in Geocoder class return Addresses by "a user-supplied description of a location". And if I'm calling it with "London" string or "Statue of Liberty" it returns addresses and I can animate the Map to found coordinates. But iI need to find latitude and longitude based on ZIP CODE. If I call method with "33040" string (zip of Key West region) - Geocoder returns some another addresses (of course!), because it can't associate this string with zip.
I have made some trick: adding "usa " prefix if user enters decimal value. And it returns currect locations by string "usa 33040" and others in 70%. Is any idea how to find location by ZIP in 100% cases? Thanks!

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

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

发布评论

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

评论(1

无风消散 2024-12-09 09:17:42

您是否尝试过“33040,United States”之类的字符串?该格式当然可以在 Google 地图中使用,因此它也可以在 Android 上使用,尽管 Android 地理编码器不如 Google 地图使用的那么好。

Have you tried strings like "33040, United States"? That format certainly works in Google Maps, so it may work on Android, though the Android geocoder is not as good as that Google Maps uses.

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