xcode - iOS MapView shows entire United States -


i'm trying load region in mapview, view of entire u.s. ipad app runs in landscape mode. i'm thinking spans may not proper dimensions, i'm not sure how fix it. here's data have. ideas?

thanks...enter image description here

i've solved similar problem adding cllocationmanager:

    self.locationmanager = [[cllocationmanager alloc] init];     self.locationmanager.delegate = self;     // check ios 8. without guard, code crash "unknown selector" on ios 7.     if ([self.locationmanager respondstoselector:@selector(requestwheninuseauthorization)]) {         [self.locationmanager requestwheninuseauthorization];     }     [self.locationmanager startupdatinglocation]; 

Comments

Popular posts from this blog

html - Difficulties with background-image property -

visual studio code - What does the isShellCommand property actually do and how should you use it? -

ios - Segue not passing data between ViewControllers -