我在我的应用程序中使用MapKit并尝试固定坐标(在模拟器中)。
在地图视图中,我可以看到引脚,但地图未加载,我在控制台中收到以下错误:
/SourceCache/ProtocolBuffer_Sim/ProtocolBuffer-91/Runtime/PBRequester.m:687服务器返回错误:400
答案 0 :(得分:1)
//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
答案 1 :(得分:0)
地图应用中的地图是否已加载?如果您正在谈论谷歌基础地图并且它没有加载到您的应用程序中,但是在官方地图应用程序中,那么有很多人想要知道您是如何做到的,因为没有已知的方法可以阻止那些瓷砖。