GMSGeocoder – 如何设置响应语言

在国外使用我的应用程序时,Google GMSGeocoder会自动以本地语言返回响应。 我怎样才能把它设置为总是返回英文的回应?

即时通讯使用GMS SDK 1.7和我的代码是这样的:

 GMSGeocoder *geoCoder = [[GMSGeocoder alloc] init]; [geoCoder reverseGeocodeCoordinate:self.cellLocation.coordinate completionHandler:^(GMSReverseGeocodeResponse *respones, NSError *err) { if([respones firstResult]) { GMSAddress* address = [respones firstResult]; NSString* fullAddress = [NSString stringWithFormat:@"%@, %@",address.thoroughfare, address.locality]; self.theTextField.text = fullAddress; } else { self.theTextField.text = @""; } }];