iPhone 开发 - 无法在地图视图上显示用户的当前位置

发布于 2024-11-27 20:24:13 字数 116 浏览 1 评论 0原文

我将mapView的showUserLocation属性设置为YES,但它什么也没做。我能够使用 CLLocationManager 将地图置于用户当前位置的中心,但屏幕上没有图钉/点。如何在地图上标记用户的确切位置?

I set the mapView's showUserLocation property to YES, and it does nothing. I was able to use a CLLocationManager to center the map on the user's current location, but there's no pin/dot on the screen. How can I put a pin on the map for the exact location of the user?

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

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

发布评论

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

评论(2

赠我空喜 2024-12-04 20:24:13

这已经让我搞砸了好几次,但它很容易解决

问题是你的代码是:

 [self.mapView showUserLocation:YES];

应该是:

 [self.mapView setShowsUserLocation:YES]

还要确保你也设置了委托

This has messed me up several times but its an easy fix

The problem is that your code is:

 [self.mapView showUserLocation:YES];

Should be:

 [self.mapView setShowsUserLocation:YES]

Also make sure you have set the delegate as well

凉月流沐 2024-12-04 20:24:13

在 Nib 名称中,您可以设置 showuserlocation 来标记 Mapview。

IN Nib name you can set showuserlocation to mark for Mapview.

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