如何使用 API 或 PHP Web 服务查找世界各地的邮政编码或城市和州?

发布于 2024-11-26 13:32:26 字数 237 浏览 0 评论 0原文

如何使用 API 或 PHP Web 服务通过世界各地的邮政编码查找城市和州?我尝试过 Google Maps Ge coder API,它适用于美国和加拿大,但不适用于所有国家/地区的英国和墨西哥。我还为此使用了 Yahoo API,它比 Google 效果更好,但针对某些邮政编码和邮政编码,它会返回来自不同国家/地区的结果。

如果我必须根据美国、英国、加拿大和墨西哥的邮政编码获取城市和州/省,有人知道我可以使用哪个 API 或数据库吗?

How can I look up City and State From a Zip or Postal Code throughout the world using an API or web service with PHP? I have tried Google Maps Ge coder API, which works fine for US and Canada but not for UK and Mexico for all countries. Also I used Yahoo API for this, which worked better than Google but against some Zip Codes and Postal codes it returns results from Different countries.

Does anybody know which API or database I can use if I have to get City and State/Province against US, UK, Canada and Mexican zip/postal codes?

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

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

发布评论

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

评论(3

凉城已无爱 2024-12-03 13:32:26

好吧,不太确定这就是你想要的,但我正在研究类似的东西。我一直在使用以下免费网络服务。用户输入要在 Web 服务调用中使用的国家/地区和邮政编码。

文档:
www.geonames.org/export/web-services.html

用户需要输入国家/地区和邮政编码。要获取国家/地区列表:
http://api.geonames.org/countryInfo?username=demo
** 注册并用您的注册 ID 替换演示。

使用从上述服务中选择的国家/地区代码和邮政编码,致电:
http://api.geonames.org/postalCodeLookupJSON?postalcode=23454& ;country=US&username=demo

希望这会有所帮助。

Well, not exactly sure this is what your looking for but I am working on something similar. I have been using the following free web services. User enters a country and Postal Code to be used in the web service calls.

Documentation:
www.geonames.org/export/web-services.html

User needs to enter a country and Postal code. To get the list of countries:
http://api.geonames.org/countryInfo?username=demo
** Register and replace demo with your registration id.

Using the country code selected from above service and the postal code, call:
http://api.geonames.org/postalCodeLookupJSON?postalcode=23454&country=US&username=demo

Hope this helps.

时光瘦了 2024-12-03 13:32:26
  $doc = new DOMDocument();
  $url = 'http://maps.googleapis.com/maps/api/geocode/xml?address='.$_GET['Zip'].'@&sensor=true';
  $doc->load($url);
  $result = $doc->getElementsByTagName( "address_component" );
  $i=0;
  foreach( $result as $address_component )
  {
      $short_names = $address_component->getElementsByTagName( "long_name" );
      $short_name = $short_names->item(0)->nodeValue;
      if($i==1)
      {
        echo  $city=$short_name;
         break;  
      }
      $i++;

  }
  $doc = new DOMDocument();
  $url = 'http://maps.googleapis.com/maps/api/geocode/xml?address='.$_GET['Zip'].'@&sensor=true';
  $doc->load($url);
  $result = $doc->getElementsByTagName( "address_component" );
  $i=0;
  foreach( $result as $address_component )
  {
      $short_names = $address_component->getElementsByTagName( "long_name" );
      $short_name = $short_names->item(0)->nodeValue;
      if($i==1)
      {
        echo  $city=$short_name;
         break;  
      }
      $i++;

  }
超可爱的懒熊 2024-12-03 13:32:26

这是一个网络服务来做到这一点

https://www.mashape.com/vanitysoft/ uk-boundaries-io

..简单地说,它允许通过单个或组合英国邮政编码(例如ZE1 0AE)、部门、区、城市和查询来获取用于googleMaps的GeoJson。病区边界,

例如英国地区“曼彻斯特”
.../boundary/uk?district=Manchester 将为您提供以下 GeoJson(该地区的所有扇区边界...

您可以将其用于美国邮政编码:
https://www.mashape.com/vanitysoft/boundaries-io

输入图像描述这里

Here is a webservice to do just that

https://www.mashape.com/vanitysoft/uk-boundaries-io

..simply it allows obtaining GeoJson for googleMaps..query by single or combining UK Postal Code(ex. ZE1 0AE) ,Sector, District, City, and Wards Boundaries

for example a UK District "Manchester"
.../boundary/uk?district=Manchester will get you the below GeoJson(all sector boundaries in this district...

you can use this for US zipcodes:
https://www.mashape.com/vanitysoft/boundaries-io

enter image description here

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