IOSマップの開発


IOS マップ開発


はじめに

IOS マップは場所を特定するのに役立ち、IOS マップは MapKit フレームワークを使用します。

インスタンスの手順

1. 単純なビュー ベースのアプリケーションを作成します

2. プロジェクト ファイルを選択し、ターゲットを選択して、MapKit.framework を追加します。

3. Corelocation.framework を追加します

4. マップ ビューを ViewController.xib に追加し、ibOutlet を作成して、mapView という名前を付けます。

5. 「ファイル」→「新規作成」→「ファイル...」→「Objective C クラスを選択し、「次へ」をクリックします。

6.「サブクラス」をクリックして、新しいファイルを作成します。は NSObject、クラス名は MapAnnotation

7. [Create] を選択します

8. 以下に示すように MapAnnotation.h を更新します

#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

9. 次のように MapAnnotation.m を更新します以下

#import "MapAnnotation.h"@implementation MapAnnotation-(id)initWithTitle:(NSString *)title andCoordinate: (CLLocationCoordinate2D)coordinate2d{    
    self.title = title;    self.coordinate =coordinate2d;    return self;}@end

10.以下に示すように、ViewController.hを更新します。

#import <UIKit/UIKit.h>#import <MapKit/MapKit.h>#import <CoreLocation/CoreLocation.h>@interface ViewController : UIViewController<MKMapViewDelegate>{    MKMapView *mapView;}@end

11.以下に示すように、ViewController.mを更新します

#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

Output

Whenアプリケーションを実行すると、出力は次のようになります

mapOutput1

##マップを上にスクロールすると、出力は次のようになります

mapOutput2