Google Maps API 反向地理编码 - result_type?

Google Maps APIs Reverse geocoding - result_type?

https://developers.google.com/maps/ 我真的很累。我运气不好或者我是盲人我不知道如何解决我的问题。

所以我想对 address_component 中更具体的数据使用反向地理编码:

https://maps.googleapis.com/maps/api/geocode/json?latlng=49.5014564,18.8833393&result_type=administrative_area_level_1&key=api_key - 这很完美,但我不知道如何使用地理编码器 API

设置可选 result_type

    geocoder.geocode ({
           Location: latlng,
           Result_type: "administrative_area_level_1" // ???? i just don't know
           }, 
           Function (results, status) 
           {
              // check status etc...
           } });

感谢您的建议、提示或其他。

已在 Google 问题跟踪器中提交功能请求:

https://issuetracker.google.com/issues/35826518

如您所见,Google 工程师的回答是:

result_type filtering can be achieved by simply dropping results that don't match desired types. While it'd be convenient to have this in the JavaScript API, it is not truly necessary.

您可以为功能请求加注星标以添加您的投票并订阅进一步的通知。