Closed GoogleCodeExporter closed 8 years ago
Unable to reproduce, in a clean Simulator, with this test code using r293.
- (void)performTest
{
NSLog(@"moving to Seattle");
CLLocationCoordinate2D destination;
destination.latitude = 47.62;
destination.longitude = -122.35;
[mapContents moveToLatLong:destination];
}
and within -applicationDidFinishLaunching add:
[self performSelector:@selector(performTest) withObject:nil afterDelay:3.0];
Can you provide a sample failure case?
Original comment by halmuel...@gmail.com
on 11 Mar 2009 at 7:25
had a lightbulb moment, the moveToLatLong has to be done on the main thread, if
the
call is made from another thread, the map will move, you can add markers etc,
and if
the tiles are cached they will load. But it will not download new tiles. Not
sure if
this is expected behavior or not. If so this can be closed.
thanks
Original comment by metroiph...@gmail.com
on 11 Mar 2009 at 9:08
Original comment by halmuel...@gmail.com
on 11 Mar 2009 at 7:15
Original issue reported on code.google.com by
metroiph...@gmail.com
on 11 Mar 2009 at 4:44