google 地图地理编码 api 网络服务 return 地址类型更改
google map geocoding api webservice return address type changes
我们注意到 google 地图地理编码 api 现在 returns 不同的地址类型。对于 "type" XML 元素中曾经是 "street_address" 的地址,有些地址可能是 "premise"。我们正在根据响应中 "type" XML 元素中的数据值过滤响应。
除了 "premise" 和 "street_address" 之外,"type" XML 元素中是否还有任何其他值可以匹配街道级别?自 2017 年 2 月 14 日发布版本:3.27 以来,它添加了哪些值?我在哪里可以找到与 google 地图地理编码 api 相关的修订版的确切更改?
首先,下面列出了 type
字段当前支持的所有值:https://developers.google.com/maps/documentation/geocoding/intro#Types
您观察到的变化与 Maps 3.27 版无关JavaScriptAPI。 Google 已于 2016 年 11 月宣布 new version of forward geocoder。
这个版本的地理编码器可以找到比以前版本更多的东西。例如,也可以找到 POI 和企业。
看看这个例子:
https://google-developers.appspot.com/maps/documentation/utils/geocoder/#q%3Daaa%26nfw%3D1
您可以看到以下类型:"car_repair, establishment, insurance_agency, point_of_interest, travel_agency"
以下文档中也描述了这些更改:
https://developers.google.com/maps/documentation/geocoding/best-practices
https://developers.google.com/maps/documentation/geocoding/faq
希望对您有所帮助!
我们注意到 google 地图地理编码 api 现在 returns 不同的地址类型。对于 "type" XML 元素中曾经是 "street_address" 的地址,有些地址可能是 "premise"。我们正在根据响应中 "type" XML 元素中的数据值过滤响应。
除了 "premise" 和 "street_address" 之外,"type" XML 元素中是否还有任何其他值可以匹配街道级别?自 2017 年 2 月 14 日发布版本:3.27 以来,它添加了哪些值?我在哪里可以找到与 google 地图地理编码 api 相关的修订版的确切更改?
首先,下面列出了 type
字段当前支持的所有值:https://developers.google.com/maps/documentation/geocoding/intro#Types
您观察到的变化与 Maps 3.27 版无关JavaScriptAPI。 Google 已于 2016 年 11 月宣布 new version of forward geocoder。
这个版本的地理编码器可以找到比以前版本更多的东西。例如,也可以找到 POI 和企业。
看看这个例子:
https://google-developers.appspot.com/maps/documentation/utils/geocoder/#q%3Daaa%26nfw%3D1
您可以看到以下类型:"car_repair, establishment, insurance_agency, point_of_interest, travel_agency"
以下文档中也描述了这些更改:
https://developers.google.com/maps/documentation/geocoding/best-practices
https://developers.google.com/maps/documentation/geocoding/faq
希望对您有所帮助!