我在我的應用程序中使用MapKit並試圖固定座標(在模擬器中)。地圖視圖返回錯誤400
在地圖視圖中,我可以看到銷,但地圖上沒有加載,我得到以下錯誤在控制檯:
/SourceCache/ProtocolBuffer_Sim/ProtocolBuffer-91/Runtime/PBRequester.m:687 server returned error:400
我在我的應用程序中使用MapKit並試圖固定座標(在模擬器中)。地圖視圖返回錯誤400
在地圖視圖中,我可以看到銷,但地圖上沒有加載,我得到以下錯誤在控制檯:
/SourceCache/ProtocolBuffer_Sim/ProtocolBuffer-91/Runtime/PBRequester.m:687 server returned error:400
//First in your .h file make an object of mapview
MKMapView *mymapView;
//然後在您的.m文件中的viewDidLoad加這個
mymapView.mapType = MKMapTypeStandard;
mymapView.scrollEnabled = YES;
mymapView.zoomEnabled = YES;
[mymapView setDelegate:self];
mymapView.showsUserLocation = NO;
annotation *ann = [[annotation alloc]init]; //annotation is my custom class of markers
ann.title = @" ";
ann.subtitle = @" ";
ann.coordinate = yourCordinates;
[mymapView addAnnotation:ann];
//Make sure that you have successfuly added the MapKit framework
希望你可以讓你的自定義類的註釋,如果不是我會很樂意爲你提供一個:)對不起,我的英語不好,因爲它不是我的母語 – superGokuN 2012-04-04 12:35:46
Thnks naveen當我在設備上運行代碼時,似乎工作正常。 – 2012-04-05 06:52:30
是地圖應用程序中的地圖加載?如果你在談論谷歌基本地圖,它不會在你的應用中加載,但是在官方的地圖應用中,那麼有很多人想知道你是如何做到的,因爲沒有已知的方法來阻止那些瓷磚。
thnks編輯!:) – 2012-04-05 06:53:02