在我的应用程序中,我需要在Google商家信息自动填充功能上找到一个位置。此函数返回位置Country,Region,City等。这些字段以函数调用中传递的语言返回。
在下一步中,我希望翻译结果。
我的方法是使用Autocomplete函数返回的位置引用来为每种语言调用getDetails,但是当我使用该库时,语言参数将被忽略。
我更喜欢使用该库,因为我不需要客户端密钥。
var request = {
reference: place.reference,
language: lang
};
service.getDetails(request, function(place, status) {});