0

アプリで苦労していmapviewます。をオンにして画面を読み込むとmapview、マップは のデフォルトの場所に開くだけですmapviews。ただし、前の画面に戻ってから 2 回目にマップを起動すると、正しい場所が表示されます。

明らかに、これは理想的ではありません。

何か提案はありますか?

私のコードは次のとおりです。

CLLocation *mapLocation = [[CLLocation alloc] initWithLatitude:latitude longitude:longitude];
[[self map] setCenterCoordinate:[mapLocation coordinate]];
[[self map] setRegion: MKCoordinateRegionMakeWithDistance([mapLocation coordinate], 1000, 1000)];        
MapAnnotation *annotation = [[MapAnnotation alloc] init];
[annotation setCoordinate:[mapLocation coordinate]];
[[self map] addAnnotation:annotation];

ありがとうございました!

4

1 に答える 1

0

現在の場所を次のように設定します:
Location.h:

@interface WhereamiViewController : UIViewController <CLLocationManagerDelegate, MKMapViewDelegate, UITextFieldDelegate> {
CLLocationManager *locationManager;    
MKMapView *worldView;
IBOutlet UIActivityIndicatorView *activityIndicator;
IBOutlet UITextField *locationTextField;
}

- (void)findLocation;
- (void)foundLocation:(CLLocation *)loc;
- (IBAction)setMapTyp:(id)sender;

@property MKMapType mapType;
@property (nonatomic, retain) IBOutlet MKMapView *worldView;
@property (nonatomic, readonly) NSDate *currentDate;

@end

Location.m:

- (void)locationManager:(CLLocationManager *)manager
didUpdateToLocation:(CLLocation *)newLocation
       fromLocation:(CLLocation *)oldLocation {
NSLog(@"%@", newLocation);

NSTimeInterval t = [[newLocation timestamp] timeIntervalSinceNow];
if (t < -180) {
    return;
}

[self foundLocation:newLocation];
}

- (void)mapView:(MKMapView *)mapView didUpdateUserLocation:(MKUserLocation *)userLocation {
CLLocationCoordinate2D loc = [userLocation coordinate];
MKCoordinateRegion region = MKCoordinateRegionMakeWithDistance(loc, 250, 250);
[worldView setRegion:region animated:YES];
}



- (void)locationManager:(CLLocationManager *)manager
   didFailWithError:(NSError *)error {
NSLog(@"Could not find location: %@", error);
}

- (void)findLocation {
[locationManager startUpdatingLocation];
[activityIndicator startAnimating];
[locationTextField setHidden:YES];
}

- (void)foundLocation:(CLLocation *)loc {
CLLocationCoordinate2D coord = [loc coordinate];
NSDateFormatter *format = [[NSDateFormatter alloc] init];
[format setDateFormat:@"HH:mm, dd. MMM. yyyy "];

NSDate *now = [[NSDate alloc] init];

NSString *dateString = [format stringFromDate:now];

MyOwnMapPoint *mp = [[MyOwnMapPoint alloc] initWithCoordinate:coord
                                                    title:[locationTextField text]
                                                 subtitle:dateString];
NSLog(@"Die Uhrzeit ist: %@", dateString);
[worldView addAnnotation:mp];
MKCoordinateRegion region = MKCoordinateRegionMakeWithDistance(coord, 250, 250);
[worldView setRegion:region animated:YES];

//Reset the UI
[locationTextField setText:@""];
[activityIndicator stopAnimating];
[locationTextField setHidden:NO];
[locationManager stopUpdatingLocation];
}

それがあなたにアイデアを与えることを願っています!

于 2013-02-02T12:22:14.020 に答える