iOS: acceso a mapas
Los mapas siempre nos ayudan a localizar lugares. Los mapas se integran en iOS usando el marco MapKit.
Pasos involucrados
Step 1 - Cree una aplicación sencilla basada en vistas.
Step 2 - Seleccione su archivo de proyecto, luego seleccione los objetivos y luego agregue MapKit.framework.
Step 3 - También deberíamos agregar Corelocation.framework.
Step 4 - Agregue un MapView a ViewController.xib y cree un ibOutlet y asígnele el nombre mapView.
Step 5 - Cree un nuevo archivo seleccionando Archivo → Nuevo → Archivo ... → seleccione la clase Objective C y haga clic en Siguiente.
Step 6 - Nombra la clase como MapAnnotation con "subclase de" como NSObject.
Step 7 - Seleccione crear.
Step 8 - Actualice MapAnnotation.h de la siguiente manera -
#import <Foundation/Foundation.h>
#import <MapKit/MapKit.h>
@interface MapAnnotation : NSObject<MKAnnotation>
@property (nonatomic, strong) NSString *title;
@property (nonatomic, readwrite) CLLocationCoordinate2D coordinate;
- (id)initWithTitle:(NSString *)title andCoordinate:
(CLLocationCoordinate2D)coordinate2d;
@end
Step 9 - actualización MapAnnotation.m como sigue -
#import "MapAnnotation.h"
@implementation MapAnnotation
-(id)initWithTitle:(NSString *)title andCoordinate:
(CLLocationCoordinate2D)coordinate2d {
self.title = title;
self.coordinate =coordinate2d;
return self;
}
@end
Step 10 - actualización ViewController.h como sigue -
#import <UIKit/UIKit.h>
#import <MapKit/MapKit.h>
#import <CoreLocation/CoreLocation.h>
@interface ViewController : UIViewController<MKMapViewDelegate> {
MKMapView *mapView;
}
@end
Step 11 - actualización ViewController.m como sigue -
#import "ViewController.h"
#import "MapAnnotation.h"
@interface ViewController ()
@end
@implementation ViewController
- (void)viewDidLoad {
[super viewDidLoad];
mapView = [[MKMapView alloc]initWithFrame:
CGRectMake(10, 100, 300, 300)];
mapView.delegate = self;
mapView.centerCoordinate = CLLocationCoordinate2DMake(37.32, -122.03);
mapView.mapType = MKMapTypeHybrid;
CLLocationCoordinate2D location;
location.latitude = (double) 37.332768;
location.longitude = (double) -122.030039;
// Add the annotation to our map view
MapAnnotation *newAnnotation = [[MapAnnotation alloc]
initWithTitle:@"Apple Head quaters" andCoordinate:location];
[mapView addAnnotation:newAnnotation];
CLLocationCoordinate2D location2;
location2.latitude = (double) 37.35239;
location2.longitude = (double) -122.025919;
MapAnnotation *newAnnotation2 = [[MapAnnotation alloc]
initWithTitle:@"Test annotation" andCoordinate:location2];
[mapView addAnnotation:newAnnotation2];
[self.view addSubview:mapView];
}
// When a map annotation point is added, zoom to it (1500 range)
- (void)mapView:(MKMapView *)mv didAddAnnotationViews:(NSArray *)views {
MKAnnotationView *annotationView = [views objectAtIndex:0];
id <MKAnnotation> mp = [annotationView annotation];
MKCoordinateRegion region = MKCoordinateRegionMakeWithDistance
([mp coordinate], 1500, 1500);
[mv setRegion:region animated:YES];
[mv selectAnnotation:mp animated:YES];
}
- (void)didReceiveMemoryWarning {
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
@end
Salida
Cuando ejecutamos la aplicación, obtendremos el resultado como se muestra a continuación:
Cuando desplazamos el mapa hacia arriba, obtendremos el resultado como se muestra a continuación: