2013-06-03 50 views
0

的Google地圖/ Apple地圖中獲取座標的方向根據給定方向是否可以獲取在Google地圖/ Apple地圖中使用的座標(取決於iOS版本)?我已經得到了directoon(街道和號),郵編和國家(在我的情況,這個國家將永遠是西班牙)在Objective-C

謝謝

回答

1

您需要使用地理編碼爲,找指導這裏:

[geocoder geocodeAddressString:@"1 Infinite Loop" 
    completionHandler:^(NSArray* placemarks, NSError* error){ 
     for (CLPlacemark* aPlacemark in placemarks) 
     { 
      // Process the placemark. 
     } 
}]; 

正如他們所說的更多信息,你PR:

Geocoding Location Data

您可以在文檔的末尾找到一個例子ovide,會更準確。

+0

對我有用。謝謝 – rai212