Maybe I should add some indexes manually?
> --
> You received this message because you are subscribed to the Google Groups "route-me" group.
> To post to this group, send email to route-...@googlegroups.com.
> To unsubscribe from this group, send email to route-me-map...@googlegroups.com.
> For more options, visit this group at http://groups.google.com/group/route-me-map?hl=en.
>
--
Pagarbiai,
Jaroslav Ozevič,
+37065350120
http://www.linkedin.com/in/jaroslavozevic
On Feb 20, 7:11 am, Jaroslav <jaroslav.oze...@gmail.com> wrote:
> I'm using offline maps from sqlite database and loading 100Mb of maps
> takes several seconds. How could I kame view controller visible with
> some type of indicator while view controller is loading map? I tried
> using
> [self performSelectorInBackground:@selector(loadMap) withObject:nil];
> in viewDidLoad and then in loadMap
> [self performSelectorOnMainThread:@selector(showMap) withObject:nil
> waitUntilDone:NO];
> with
> - (void) showMap{
> self.view = mapView;
>
> }
>
> Map seems to be loaded but I doesn't get displayed until I exit from
> this view controller and go back to it again.
>
> Maybe someone came to solution how to show user that map is currently
> loading?