0
我有一個應用程序需要一個準確的地址,通過使用手機GPS座標在葡萄牙和巴西。GPS室內精度
當我嘗試獲取我的當前位置地址(室內)時,地點以及街道名稱是正確的,但街道號碼和郵政編碼通常是錯誤的。
我使用反向地理編碼蒙山這裏的谷歌地圖API調用代碼:
NSString *requestUrlString = [NSString stringWithFormat:@"http://maps.googleapis.com/maps/api/geocode/json?address=%@&sensor=false", coordinatesString];
//Creating the HTTP Request and setting the required post values
ASIFormDataRequest *request = [ASIFormDataRequest requestWithURL:[NSURL URLWithString:requestUrlString]];
[request setTimeOutSeconds:200];
[request setDelegate:self];
[request setDidFinishSelector:@selector(geocodeFinished:)];
[request setDidFailSelector:@selector(geocodeFailed:)];
[request startAsynchronous];
我的問題是,通過使用IOS地圖框架,我能得到一個特定的地點的座標和翻譯它到一個正確的地址? 另外我能做些什麼來提高室內/室外座標的精度?
在此先感謝您,對於問題的更多解釋,請問,我會在這裏。
對於建築物內部的精度,iOS7中還有一些應該考慮並可能有用的附加內容。特別是,看看所謂的iBeacons。 – isaac
@isaac是的,我知道,但我們不能在這裏討論:) – Mat