При использовании моего приложения в другой стране Google GMSGeocoder
автоматически возвращает ответ на локальном языке. как я могу настроить его для возврата ответа на английском языке?
Im с использованием 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 = @"";
}
}];