为什么Google Maps API结果不正确?

时间:2018-12-20 22:26:50

标签: google-maps google-maps-api-3 google-maps-api-2

我们将高级计划用于 google maps api 查找,并在将其用于以下用途时遇到准确性问题。但这只是示例,可能有很多

52241(应该是Coralville,拉着爱荷华城)

43065(应该是鲍威尔,拉肖尼·希尔斯)

11040(应该是新海德公园,拉着花园城市)。

我们使用以下URL: https://maps.googleapis.com/maps/api/geocode/json?components=country:US|postal_code

1 个答案:

答案 0 :(得分:0)

您在问题中提到的邮政编码与多个地区重叠。 Google在地址部分显示了一个位置,这可能是他们认为最突出的位置。

但是,在响应中,您可以看到邮政编码重叠的地区列表。只需查看响应中的postcode_localities字段即可。

例如,邮政编码52241

https://maps.googleapis.com/maps/api/geocode/json?components=postal_code%3A52241%7Ccountry%3AUS&key=YOUR_API_KEY

您将会看到

"place_id":"ChIJbaAjdYZD5IcRBfptU5KhMJk",
"postcode_localities":[
    "Coralville","Iowa City","Oakdale"
],
"types":[
    "postal_code"
]

对于邮政编码43065

https://maps.googleapis.com/maps/api/geocode/json?components=postal_code%3A43065%7Ccountry%3AUS&key=YOUR_API_KEY

响应将包含

"place_id":"ChIJW2TudRTsOIgR8v0-4d19bNA",
"postcode_localities":[
    "Powell","Shawnee Hills"
],
"types":[
    "postal_code"
]

最后输入邮政编码11040

https://maps.googleapis.com/maps/api/geocode/json?components=postal_code%3A11040%7Ccountry%3AUS&key=YOUR_API_KEY

你会得到

"place_id":"ChIJ28UCx5hiwokRf_9UXmJHg5I",
"postcode_localities":[
    "GARDEN CITY P","Garden City Park","Hillside Manor","Manhasset Hills","New Hyde Park","North Hills","North New Hyde Park"
],
"types":[
    "postal_code"
]

请注意,您要查找的位置在postcode_localities数组中。

我希望这会有所帮助!