获取邮政编码的所有位置的 Api

问题描述 投票:0回答:2

我需要在哪里可以获得印度邮政编码的所有位置。

我已经尝试过以下链接

http://maps.googleapis.com/maps/api/geocode/json?address=110001

但是在这里我得到了城市和州的名称,我需要通过邮政编码我们可以获取所有位置,例如

{
        "Pincode": "110001",
        "Country": "INDIA",
        "City": "Central Delhi",
        "Address": "Baroda House"
    },
    {
        "Pincode": "110001",
        "Country": "INDIA",
        "City": "Central Delhi",
        "Address": "Bengali Market"
    },
    {
        "Pincode": "110001",
        "Country": "INDIA",
        "City": "Central Delhi",
        "Address": "Bhagat Singh Market"
    },
    {
        "Pincode": "110001",
        "Country": "INDIA",
        "City": "Central Delhi",
        "Address": "Connaught Place"
    },
    {
        "Pincode": "110001",
        "Country": "INDIA",
        "City": "Central Delhi",
        "Address": "Constitution House"
    },

我正在谷歌搜索解决方案,但找不到符合我要求的任何解决方案。谁能指导我如何获取邮政编码的所有位置。

预先感谢您的帮助。

javascript php google-maps
2个回答

0
投票

或者,您可以使用 https://thezipcodes.com/ 从帐户部分获取 API 密钥。点击获取请求。

https://thezipcodes.com/api/v1/search?zipCode=302010&countryCode={2digitCountryCode}&apiKey={apiKey}
{
  "success": true,
  "location": [
    {
      "country": "RU",
      "countryCode2": "RU",
      "countryCode3": "",
      "state": "Орловская Область",
      "stateCode2": "56",
      "latitude": "53.0747",
      "longitude": "36.2468",
      "zipCode": "302019",
      "city": "Орел 19"
    },
    {
      "country": "India",
      "countryCode2": "IN",
      "countryCode3": "IND",
      "state": "Rajasthan",
      "stateCode2": "24",
      "latitude": "26.7865",
      "longitude": "75.5809",
      "zipCode": "302019",
      "city": "Shyam Nagar (Jaipur)",
      "timeZone": "Indian Standard Time"
    }
  ]
}
© www.soinside.com 2019 - 2024. All rights reserved.