我可以使用 Google/Yahoo Maps API 根据邮政编码查找城市/州吗?
我在搜索 SO 时发现了这个: 邮政编码到城市/州,反之亦然在数据库中?
但我想知道,为什么我们不能仅使用 Maps API 来实现此目的?有人尝试这样做吗?
I came across this when I did a search on SO:
Zip Code to City/State and vice-versa in a database?
But I'm wondering, why can't we just use the Maps APIs for this? Has anyone tried doing this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
使用 google 地图 api Geocoder
use the google maps api Geocoder
是的,使用 Google 地图地理编码 getLocations( )。
您可以通过 Google 代码 playground 在线尝试一下.
玩得开心!
Yes, it's pretty easy to do it with Google Maps Geocoding getLocations().
You could give it a try online on Google code playground.
Have fun!
为此,使用 Geonames Web 服务 api 非常简单,特别是 postalCodeSearch 方法。根据我的经验,除非您每秒发出多个查询,否则效果很好,尽管缓存结果通常是值得的。 (即:它们不会经常改变。)
It's pretty easy to use the Geonames webservice apis for this, specifically the postalCodeSearch method. Works great in my experience unless you're issuing multiple queries/second, although caching results is generally worthwhile. (ie: they do not change frequently.)