Google Maps SDK for iOSのリバースジオコードのレスポンスの言語指定
Google Maps SDK for iOSを使用し、緯度経度から住所を取得しています。
長らく日本語の住所が返されて問題なかったのですが、突如、今日から英語の住所が返されるようになってしまいました。
レスポンスの言語指定は出来るのでしょうか?
また、同じような事象が発生している方がいれば、回避方法を教えて頂きたいです。
一応住所取得部分のソースを載せておきます。
// 住所を取得
GMSGeocoder *geocoder = [[GMSGeocoder alloc] init];
[geocoder reverseGeocodeCoordinate:coordinate completionHandler:^(GMSReverseGeocodeResponse * res, NSError * error) {
// 結果取得
GMSReverseGeocodeResult *result = [res firstResult];
if (result) {
_latitude = coordinate.latitude;
_longitude = coordinate.longitude;
NSLog(@"%@", result);
// thoroughfareに号が入っていないのでaddressLine2から取得
NSArray *arrAddress = [[result addressLine2] componentsSeparatedByString:[result subLocality]];