2011-08-19 25 views
0

美國位置如何中心位置在我們中心的地圖在地圖套件觀看如何中心在iphone

我在這裏送我的代碼

mapView .scrollEnabled = YES; 
    appDelegate=(AppDelegate *)[[UIApplication sharedApplication]delegate]; 
    dataStore = [[DataStore alloc] init]; 
    utility = [[Utility alloc] init]; 

    self = [super initWithFrame:CGRectMake(0, 28, mapView.frame.size.width, mapView.frame.size.height)]; 
    //[self setBackgroundColor:[UIColor whiteColor]]; 

    [self setMapView:mapView]; 

    MKCoordinateRegion region; 

region.center.latitude = 41.603854; 
    region.center.longitude = -92.930628; 
    region.span.longitudeDelta = 47.00; 
    region.span.latitudeDelta = 10.00; 

回答

0

需要,一旦你設置設置區域它起來。

region.center.latitude = 41.603854; 
region.center.longitude = -92.930628; 
region.span.longitudeDelta = 47.00; 
region.span.latitudeDelta = 10.00; 

[mapView setRegion:region animated:YES];