在使用Mapkit时,我可以看到完全可滚动的地图,但没有看到Apple总部?

发布于 2024-10-11 08:40:36 字数 319 浏览 4 评论 0原文

我已经在实际设备(iPad)和 iPhone 模拟器(ios 4)上尝试过,

即使我放大,我也能看到地图,但看不到 Apple 总部(蓝色图钉)。

在我的 OnViewLoad 函数中,我有:

mapView = [[MKMapView alloc] initWithFrame:self.view.bounds];

mapView.showsUserLocation=TRUE;
mapView.mapType=MKMapTypeHybrid;

[self.view insertSubview:mapView atIndex:0];

I have tried it both on an actual device (iPad) and the iPhone simulator (ios 4)

I see the map but no Apple headquarters (blue pin) even if I zoom in.

In my OnViewLoad function I have:

mapView = [[MKMapView alloc] initWithFrame:self.view.bounds];

mapView.showsUserLocation=TRUE;
mapView.mapType=MKMapTypeHybrid;

[self.view insertSubview:mapView atIndex:0];

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

居里长安 2024-10-18 08:40:36

在您的 -mapView:viewForAnnotation: 方法中,如果注释是 userLocation 对象,则返回 nil:

- (MKAnnotationView *)mapView:(MKMapView *)mapView viewForAnnotation:(id <MKAnnotation>)annotation {
    if ([annotation isMemberOfClass:[MKUserLocation class]]) {
        return nil;
    }
    // your normal code
}

这是为了确保 iOS 默认实现用于显示蓝色 userLocation 点。

In your -mapView:viewForAnnotation: method, return nil if the annotation is a userLocation object:

- (MKAnnotationView *)mapView:(MKMapView *)mapView viewForAnnotation:(id <MKAnnotation>)annotation {
    if ([annotation isMemberOfClass:[MKUserLocation class]]) {
        return nil;
    }
    // your normal code
}

This is needed to make sure, the iOS default implementation is used to show the blue userLocation dot.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文