在 iOS 應用中使用 GPS

來源:互聯網
上載者:User

時間: 2010-11-18 15:33 點擊:

365 次

在 iOS 應用中使用 GPS大致分下面兩步:1、添加 CoreLocation.framework;2、產生 CLLocationManager 測量位置。 測試代碼如下: // LocationViewCtrl.h #import UIKit/UIKit.h #import CoreLocation/CoreLocation.h @inter

    在 iOS 應用中使用 GPS大致分下面兩步:1、添加 CoreLocation.framework;2、產生 CLLocationManager 測量位置。

測試代碼如下:

// LocationViewCtrl.h
#import <UIKit/UIKit.h>
#import <CoreLocation/CoreLocation.h>
@interface LocationViewCtrl : UIViewController <CLLocationManagerDelegate>{
  CLLocationManager *man;
}
@property(nonatomic, retain) CLLocationManager *man;
@end

LocationViewCtrl.m
#import "LocationViewCtrl.h"
#import <CoreLocation/CoreLocation.h>

@implementation LocationViewCtrl
@synthesize man;

- (void)viewDidLoad {
  [super viewDidLoad];
  man = [[CLLocationManager alloc] init];

  // 如果可以利用本地服務時
  if([man locationServicesEnabled]){
    // 接收事件的執行個體
    man.delegate = self;
    // 發生事件的的最小距離間隔(預設是不指定)
    man.distanceFilter = kCLDistanceFilterNone;
    // 精度 (預設是Best)
    man.desiredAccuracy = kCLLocationAccuracyBest;
    // 開始測量
    [man startUpdatingLocation];
  }
}

// 如果GPS測量成果以下的函數被調用
- (void)locationManager:(CLLocationManager *)manager
  didUpdateToLocation:(CLLocation *)newLocation
      fromLocation:(CLLocation *)oldLocation{

  // 取得經緯度
  CLLocationCoordinate2D coordinate = newLocation.coordinate;
  CLLocationDegrees latitude = coordinate.latitude;
  CLLocationDegrees longitude = coordinate.longitude;
  // 取得精度
  CLLocationAccuracy horizontal = newLocation.horizontalAccuracy;
  CLLocationAccuracy vertical = newLocation.verticalAccuracy;
  // 取得高度
  CLLocationDistance altitude = newLocation.altitude;
  // 取得時刻
  NSDate *timestamp = [newLocation timestamp];

  // 以下面的格式輸出 format: <latitude>, <longitude>> +/- <accuracy>m @ <date-time>
  NSLog([newLocation description]);

  // 與上次測量地點的間隔距離
  if(oldLocation != nil){
    CLLocationDistance d = [newLocation getDistanceFrom:oldLocation];
    NSLog([NSString stringWithFormat:@"%f", d]);
  }
}

// 如果GPS測量失敗了,下面的函數被調用
- (void)locationManager:(CLLocationManager *)manager
     didFailWithError:(NSError *)error{
  NSLog([error localizedDescription]);
}
...

    測量精度有以下幾類,精度越高越消耗電力。

kCLLocationAccuracyNearestTenMeters 10m
kCLLocationAccuracyHundredMeters 100m
kCLLocationAccuracyKilometer 1km
kCLLocationAccuracyThreeKilometers 3km

    因為在模擬器上不能設定經緯度,所以只能在實際裝置中測試你的GPS程式。

轉自 http://www.yifeiyang.net/iphone-developer-advanced-10-use-gps/

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.