使用Android中的Geocoder类根据zip获取纬度和经度
伙计们。 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否尝试过“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.