我是iphone App开发的新手,我需要代码当前用户的位置。我想使用地图套件在我的应用程序中显示他的位置。请告诉我怎么做?
答案 0 :(得分:0)
您可以参考苹果的文档CLLocationmanager class reference
答案 1 :(得分:0)
- (IBAction) showCurrentLocation{
MKCoordinateRegion region;
MKCoordinateSpan span;
span.latitudeDelta=0.007;
span.longitudeDelta=0.007;
CLLocationCoordinate2D location = [[[mapview userLocation] location] coordinate];
//NSLog(@"Location found from Map: %f %f",location.latitude,location.longitude);
region.span=span;
region.center=location;
[mapview setRegion:region animated:TRUE];
[mapview regionThatFits:region];
}
答案 2 :(得分:0)
您需要告诉地图视图以显示用户的位置(默认情况下它未启用)。将其添加到 viewDidLoad :
[mapView setShowsUserLocation:YES];
请注意,在模拟器中,用户位置始终是Cupertino,CA,因此您可能看不到它,具体取决于地图的当前中心和缩放。