如何在所需位置显示mapkit蓝点(用户位置)?
我正在使用 MapKit。我想知道如何获取当前用户的位置。 MapKit 在当前用户位置显示一个蓝点。
我想做这样的事情:用户位置显示在地图上。我有一个按钮,再次单击时,会获取当前用户位置并在那里显示蓝点。
我需要使用 locationManager
还是只在按钮的点击事件上调用 mapView.showUserLocation=YES;
?
I am using MapKit. I want to know how to get current user's location. The MapKit shows a blue dot at current user location.
I want to do something like this: The user location is showed on the map. I have a button which, on clicking again, gets the current user location and shows the blue dot there.
Do I need to use locationManager
or just call the mapView.showUserLocation=YES;
on the button's click event?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当您想显示当前用户位置时,只需编写
[mapView setShowsUserLocation:YES];
When you want to show the current user location simply write
[mapView setShowsUserLocation:YES];