iOS 7地图应用无法正常运行

时间:2014-01-01 12:39:10

标签: iphone ipad ios7

我已经使用iOS 7.0.4更新了我们的iPad4测试版。之前它有iOS 6.现在我的应用程序地图视图没有正确加载。我们使用地图通过将坐标传递到地图视图来显示会议地点。它在iOS 6中运行良好。从那以后我没有做任何改动。我不知道是什么问题。这就是我编写代码的方式。

CLLocationCoordinate2D cordinate = CLLocationCoordinate2DMake(latitude, longitude);
MKCoordinateRegion region;
region.center.latitude = latitude;
region.center.longitude = longitude;
region.span.latitudeDelta = 0.0045;
region.span.longitudeDelta = 0.0045;
[self.mapMeetingLocation setRegion:region];
[self.mapMeetingLocation removeAnnotations:self.mapMeetingLocation.annotations];
MapAnnotation *annotation = [[MapAnnotation alloc] initWithCoordinate:cordinate];
[self.mapMeetingLocation addAnnotation:annotation];

然后检查是否是编程问题我在同一台iPad上运行Apple的地图应用程序并且它有同样的问题。我在英国伦敦搜索它显示的屏幕有很多正方形,这与我在我的应用程序中遇到的问题类似。这发生在我对地图进行的大多数搜索中。我也上传了一张图片。 enter image description here。这是Apple的错误吗?请帮忙

0 个答案:

没有答案