Open GoogleCodeExporter opened 8 years ago
To solve it just send all messages in main thread. Like instead of:
[mapView moveToLatLong:coordinate];
create and use function:
[self performSelectorOnMainThread:@selector(moveMapTo) withObject:nil];
/// Call this function in main thread to ensure correct map reaction
-(void)moveMapTo{
[_mapView moveToLatLong:coordinate];
}
It should resolve your problem.
Original comment by vit...@gmail.com
on 16 Feb 2011 at 10:34
Original issue reported on code.google.com by
zghotlawala@gmail.com
on 8 Dec 2010 at 9:07Attachments: