Skip to content

Instantly share code, notes, and snippets.

@casspangell
Created November 16, 2013 23:41
Show Gist options
  • Save casspangell/7506921 to your computer and use it in GitHub Desktop.
Save casspangell/7506921 to your computer and use it in GitHub Desktop.
- (void)viewDidLoad
{
[super viewDidLoad];
//Provided location
CLLocationCoordinate2D zoomLocation;
zoomLocation.latitude = 39.750655;
zoomLocation.longitude= -104.999127;
MKCoordinateRegion viewRegion = MKCoordinateRegionMakeWithDistance(zoomLocation, 1000, 1000);
[mapView setRegion:viewRegion animated:YES];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment