我可以使用 Google/Yahoo Maps API 根据邮政编码查找城市/州吗?

发布于 2024-08-26 05:20:30 字数 203 浏览 10 评论 0原文

我在搜索 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 技术交流群。

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

发布评论

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

评论(3

生生漫 2024-09-02 05:20:30

使用 google 地图 api Geocoder

use the google maps api Geocoder

白云悠悠 2024-09-02 05:20:30

是的,使用 Google 地图地理编码 getLocations( )

<html>
  <head>
    <meta http-equiv="content-type" content="text/html; charset=utf-8"/>
    <title>Geocoding example</title>
    <script src="http://maps.google.com/maps?file=api&v=2" type="text/javascript"></script>
    <script type="text/javascript">
   var geocoder;
   var map;
   var address = "10001"; //NEW YORK zip
   function load()
   {
      map = new GMap2(document.getElementById("map"));
      geocoder = new GClientGeocoder();
      geocoder.getLocations(address, addToMap);
   }
   function addToMap(response)
   {
      place = response.Placemark[0];
      point = new GLatLng(place.Point.coordinates[1],place.Point.coordinates[0]);
      map.setCenter(point, 13);
      marker = new GMarker(point);
      map.addOverlay(marker);
      marker.openInfoWindowHtml(place.address);
   }
  </script>
  </head>
  <body onload="load()" onunload="GUnload()">
    <div id="map" style="width: 500px; height: 500px"></div>
  </body>
</html>

您可以通过 Google 代码 playground 在线尝试一下.
玩得开心!

Yes, it's pretty easy to do it with Google Maps Geocoding getLocations().

<html>
  <head>
    <meta http-equiv="content-type" content="text/html; charset=utf-8"/>
    <title>Geocoding example</title>
    <script src="http://maps.google.com/maps?file=api&v=2" type="text/javascript"></script>
    <script type="text/javascript">
   var geocoder;
   var map;
   var address = "10001"; //NEW YORK zip
   function load()
   {
      map = new GMap2(document.getElementById("map"));
      geocoder = new GClientGeocoder();
      geocoder.getLocations(address, addToMap);
   }
   function addToMap(response)
   {
      place = response.Placemark[0];
      point = new GLatLng(place.Point.coordinates[1],place.Point.coordinates[0]);
      map.setCenter(point, 13);
      marker = new GMarker(point);
      map.addOverlay(marker);
      marker.openInfoWindowHtml(place.address);
   }
  </script>
  </head>
  <body onload="load()" onunload="GUnload()">
    <div id="map" style="width: 500px; height: 500px"></div>
  </body>
</html>

You could give it a try online on Google code playground.
Have fun!

看海 2024-09-02 05:20:30

为此,使用 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.)

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