ios - 在 iOS 6 上使用 Google Maps SDK 转发地理编码
<p><p>是否有任何方法可以在 Google Maps SDK 上实现正向地理编码?我不想使用 Google Maps API Web Services。
谢谢</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>根据您的评论,您可以使用 native<a href="https://developer.apple.com/library/ios/documentation/CoreLocation/Reference/CLGeocoder_class/Reference/Reference.html" rel="noreferrer noopener nofollow">CLGeocoder</a>类(class)。前向地理编码请求获取用户可读的地址并找到相应的纬度和经度值。</p>
<pre><code>CLGeocoder geocoder = [ init];
[geocoder geocodeAddressString:@"1 Infinite Loop"
completionHandler:^(NSArray* placemarks, NSError* error){
for (CLPlacemark* aPlacemark in placemarks)
{
// Process the placemark.
}
}];
</code></pre></p>
<p style="font-size: 20px;">关于ios - 在 iOS 6 上使用 Google Maps SDK 转发地理编码,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/21535187/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/21535187/
</a>
</p>
页:
[1]