应用程序中地图上的 GPS 位置

发布于 2024-11-27 22:40:08 字数 194 浏览 1 评论 0原文

我有一个显示地图的应用程序。我需要显示用户的当前位置并设法使用

[mapView setShowsLocation:YES];

来做到这一点,但是当我放大或缩小地图时,它需要很多时间才能再次向我显示蓝色图钉。

这是正常的还是我需要放置其他东西来使蓝色图钉始终保持在屏幕上???

谢谢。

I have one application that shows maps. I need to show current position of user and manage to do that with

[mapView setShowsLocation:YES];

But when I zoom In or zoom Out map it needs a lot of time to show me that blue pin again.

Is it normal or I need to put something else to keep that blue pin on screen all time???

Thanks.

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

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

发布评论

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

评论(1

英雄似剑 2024-12-04 22:40:08
[self setCurrentLocation:self._mapView.userLocation.location.coordinate withZoom:1.0];
self._mapView.showsUserLocation = YES;

- (void)setCurrentLocation:(CLLocationCoordinate2D)coord withZoom:(float)zoomLevel {
    MKCoordinateRegion region = self._mapView.region;
    region.span.latitudeDelta = self.defaultSpanLevel.latitudeDelta*zoomLevel;
    region.span.longitudeDelta = self.defaultSpanLevel.longitudeDelta*zoomLevel;
    region.center = coord;
    [self._mapView setRegion:region animated:YES];
}

你可以在视图中使用这个方法

然后你可以使用mapview委托方法......

区域确实更改了动画:YES {并在此处设置地图的区域....采取
当前用户位置作为区域中心.. }

这将解决您的问题

}

[self setCurrentLocation:self._mapView.userLocation.location.coordinate withZoom:1.0];
self._mapView.showsUserLocation = YES;

- (void)setCurrentLocation:(CLLocationCoordinate2D)coord withZoom:(float)zoomLevel {
    MKCoordinateRegion region = self._mapView.region;
    region.span.latitudeDelta = self.defaultSpanLevel.latitudeDelta*zoomLevel;
    region.span.longitudeDelta = self.defaultSpanLevel.longitudeDelta*zoomLevel;
    region.center = coord;
    [self._mapView setRegion:region animated:YES];
}

You can use this in view will appear Method

Then You can use mapview delegate methods....

region did change animated:YES { and set map's region here.... take
current user location as region centre.. }

This will solve your problem

}

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