我在考虑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...
} });
请求建议,提示或其他任何内容。
答案 0 :(得分:1)
功能请求已在Google问题跟踪器中提交:
https://issuetracker.google.com/issues/35826518
正如您所看到的,Google工程的答案是:
result_type过滤可以通过简单地删除与所需类型不匹配的结果来实现。虽然在JavaScript API中使用它很方便,但这并不是必需的。
您可以为功能请求添加星标以添加投票并订阅其他通知。