iPhone MapKit 用户位置无效

发布于 2024-10-20 06:33:01 字数 356 浏览 1 评论 0原文

我试图将地图视图的中心坐标设置为用户位置:

[self.mapView setCenterCoordinate:[[[self mapView] userLocation] coordinate]];

但是我遇到了崩溃,这与用户位置无效有关:

*** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: 'Invalid Coordinate -180.00000000, -180.00000000'

以前有其他人遇到过此错误吗?或者你知道如何解决这个问题吗?

I am trying to set the mapView's center coordinate to be the users location:

[self.mapView setCenterCoordinate:[[[self mapView] userLocation] coordinate]];

However I am getting a crash which is to do with the user location being invalid:

*** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: 'Invalid Coordinate -180.00000000, -180.00000000'

Has anyone else had this error before? Or do you know how to fix this?

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

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

发布评论

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

评论(1

习ぎ惯性依靠 2024-10-27 06:33:01

事实证明,您需要获取 [[[[self mapView] userLocation] location] 坐标] 而不是 mapView 的 userLocation 坐标。

Turns out you need to get the [[[[self mapView] userLocation] location] coordinate] rather than the mapView's userLocation's coordinate.

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