vote up 1 vote down star
1

A custom AnnotationView is updated with new coordinates. But the problem is that it visually updates only after some manipulations with MKMapView, e.g. zooming or moving. What should I do to manually update visual position on a map?

PS. I've tried to change region to current map's region. But it does change zoom. It's strange.

[mapView setRegion:[mapView region] animated:YES];
flag

3 Answers

vote up 1 vote down check

I am a little shoked after hours of research. The answer is just:

[mapView setCenterCoordinate:mapView.region.center animated:NO];

Do not ask me why, but it updates a mapview and it's what i was need.

link|flag
1  
UPD: it does not help with SDK 3.1. Still in research. – slatvick Oct 7 at 23:04
Doesn't work in 3.1.2 either. – bradheintz Nov 12 at 0:12
vote up 0 vote down

Thank you so much for figuring this out... I have spent most of the day on this problem as well, and could not solve it, until I saw your solution !!

When coming close to giving up, I noticed that in the simulator, when doing a "pinch", all of a sudden, all the pins would nicely refresh !! At that point, I knew that everything that I was doing was probably ok, and I needed to force a refresh...

Many many thanks..

link|flag
Is your code working on 3.1 properly? Could you provide sample? – slatvick Oct 7 at 23:03
I just use the MapAnnotation class shown below (sorry about the mangled stuff, my browser can't seem to be able to post this cleanly). I just need to change the mapannoation coordinate by using the method called setWithCoordinate, and that actually moves it.. – unknown (google) Oct 10 at 13:59
vote up 0 vote down

Here is the interface to MapAnnotation

// // CSMapAnnotation.h // mapLines // // Created by Craig on 5/15/09. // Copyright 2009 Craig Spitzkoff. All rights reserved. //

import

import

// types of annotations for which we will provide annotation views. typedef enum { MapAnnotationTypeStart = 0, MapAnnotationTypeEnd = 1, MapAnnotationTypeImage = 2 } MapAnnotationType;

@interface MapAnnotation : NSObject { CLLocationCoordinate2D _coordinate; MapAnnotationType annotationType; NSString title; NSString subtitle; NSString userData; NSString speed; NSString* identifier; }

@property (nonatomic, retain) NSString *speed; @property (nonatomic, retain) NSString *identifier;

-(id) initWithCoordinate:(CLLocationCoordinate2D)coordinate annotationType:(MapAnnotationType) annotationType title:(NSString*)title subtitle: (NSString*) subtitle speed: (NSString *) speed identifier: (NSString *) identifier;

-(id) setWithCoordinate:(CLLocationCoordinate2D)coordinate annotationType:(MapAnnotationType) annotationType title:(NSString*)title subtitle: (NSString*) subtitle speed: (NSString *) speed identifier: (NSString *) identifier;

@property MapAnnotationType annotationType; @property (nonatomic, retain) NSString* userData;

@end

And here is the implementation

// // CSMapAnnotation.m // mapLines // // Created by Craig on 5/15/09. // Copyright 2009 Craig Spitzkoff. All rights reserved. //

import "MapAnnotation.h"

@implementation MapAnnotation

@synthesize coordinate = _coordinate; @synthesize annotationType = _annotationType; @synthesize userData = _userData; @synthesize speed; @synthesize identifier;

-(id) initWithCoordinate:(CLLocationCoordinate2D)coordinate annotationType:(MapAnnotationType) annotationType title:(NSString*)title subtitle: (NSString*) subtitle speed: (NSString *) speedz identifier: (NSString *) identifierz { self = [super init]; _coordinate = coordinate; _title = [title retain]; _subtitle = [subtitle retain]; _annotationType = annotationType; speed = speedz; identifier = identifierz; return self; }

-(id) setWithCoordinate:(CLLocationCoordinate2D)coordinate annotationType:(MapAnnotationType) annotationType title:(NSString*)title subtitle: (NSString*) subtitle speed: (NSString *) speedz identifier: (NSString *) identifierz { _coordinate = coordinate; _title = [title retain]; _subtitle = [subtitle retain]; _annotationType = annotationType; speed = speedz; identifier = identifierz;

return self;

}

  • (NSString *)title { return _title; }

  • (NSString *)subtitle { return _subtitle; }

-(void) dealloc { [_title release]; [_userData release];

[super dealloc];

}

@end

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.