IOSの位置情報操作
IOS 測位操作
はじめに
IOS の CoreLocation 測位により、ユーザーの現在位置を取得でき、デバイスの移動情報も取得できます。
インスタンスの手順
1. 単純な View ベースのアプリケーションを作成します。
2. プロジェクト ファイルを選択し、ターゲットを選択して、次に示すように CoreLocation.framework を追加します。
3. ViewController に 2 つ追加します。 xib ラベル、latitudeLabel および longtitudeLabel
4 という名前の ibOutlet ラベルを作成します。次に、「ファイル -> 新規 -> ファイル... ->」を選択して Objective C クラスを選択し、「次へ」をクリックします
5. NSObject として「サブクラス」を設定し、クラスに LocationHandler
という名前を付けます。6. Create
7 を選択します。以下に示すように LocationHandler.h を更新します。
#import <Foundation/Foundation.h>#import <CoreLocation/CoreLocation.h>@protocol LocationHandlerDelegate <NSObject>@required-(void) didUpdateToLocation:(CLLocation*)newLocation fromLocation:(CLLocation*)oldLocation;@end@interface LocationHandler : NSObject<CLLocationManagerDelegate>{ CLLocationManager *locationManager;}@property(nonatomic,strong) id<LocationHandlerDelegate> delegate;+(id)getSharedInstance;-(void)startUpdating;-(void) stopUpdating;@end
8. LocationHandler.m を以下のように更新します
#import "LocationHandler.h"static LocationHandler *DefaultManager = nil;@interface LocationHandler()-(void)initiate;@end@implementation LocationHandler+(id)getSharedInstance{ if (!DefaultManager) { DefaultManager = [[self allocWithZone:NULL]init]; [DefaultManager initiate]; } return DefaultManager;}-(void)initiate{ locationManager = [[CLLocationManager alloc]init]; locationManager.delegate = self;}-(void)startUpdating{ [locationManager startUpdatingLocation];}-(void) stopUpdating{ [locationManager stopUpdatingLocation];}-(void)locationManager:(CLLocationManager *)manager didUpdateToLocation: (CLLocation *)newLocation fromLocation:(CLLocation *)oldLocation{ if ([self.delegate respondsToSelector:@selector (didUpdateToLocation:fromLocation:)]) { [self.delegate didUpdateToLocation:oldLocation fromLocation:newLocation]; }}@end
9. ViewController.h を以下のように更新します
#import <UIKit/UIKit.h>#import "LocationHandler.h"@interface ViewController : UIViewController<LocationHandlerDelegate>{ IBOutlet UILabel *latitudeLabel; IBOutlet UILabel *longitudeLabel;}@end
10. ViewController.m を以下のように更新します
#import "ViewController.h"@interface ViewController ()@end@implementation ViewController- (void)viewDidLoad{ [super viewDidLoad]; [[LocationHandler getSharedInstance]setDelegate:self]; [[LocationHandler getSharedInstance]startUpdating];}- (void)didReceiveMemoryWarning{ [super didReceiveMemoryWarning]; // Dispose of any resources that can be recreated.}-(void)didUpdateToLocation:(CLLocation *)newLocation fromLocation:(CLLocation *)oldLocation{ [latitudeLabel setText:[NSString stringWithFormat: @"Latitude: %f",newLocation.coordinate.latitude]]; [longitudeLabel setText:[NSString stringWithFormat: @"Longitude: %f",newLocation.coordinate.longitude]];}@end
Output
アプリケーションを実行すると、次の出力が得られます: