菜鸟教程小白 发表于 2022-12-13 09:49:34

ios - GMSServices GMSGeocoder reverseGeocode IOS中返回结果的坐标语言


                                            <p><p>我有两个成对使用的应用程序,并且都使用 GMSServices 的 GMSGeocoder 进行反向地理编码坐标搜索。但是在第一个结果中,结果以英语出现,而在其他结果中,则以设备本地语言出现。设备<strong>相同</strong>。</p>

<p>我搜索了很多,发现现在没有办法让 GMSGeocoder 使用指定的语言作为结果。这是不可能的,我们应该改用 google API 请求。但它以某种方式工作,我不知道如何让第二个应用程序仅以英语返回结果。</p>

<p>类似的问题 mapView - 同一设备上的不同语言。</p>

<p>无论设备本地化如何为 GMSServices 设置英文?</p>

<p> <a href="/image/E3nB9.png" rel="noreferrer noopener nofollow"><img src="/image/E3nB9.png" alt="Local device language present"/></a>
<a href="/image/Gphin.png" rel="noreferrer noopener nofollow"><img src="/image/Gphin.png" alt="No local languge present"/></a> </p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>GMSGeocoder 向您发送了县名,但没有发送国家 ISO 代码。</p>

<p>您可以使用 nativeCLGeocoder 类从纬度和经度获取 counytyISOcode。例如:</p>

<pre><code>CLLocation *location = (your location)
CLGeocoder *geocoder = [ init];
[geocoder reverseGeocodeLocation:location completionHandler:
    ^(NSArray* placemarks, NSError* error){
      if ( &gt; 0)
      {
            CLPlacemark *placemark = ;
            NSLog(@&#34;Your counry is %@&#34;,placemark. ISOcountryCode);
      }
}];
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - GMSServices GMSGeocoder reverseGeocode IOS中返回结果的坐标语言,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/31924147/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/31924147/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - GMSServices GMSGeocoder reverseGeocode IOS中返回结果的坐标语言