web-dev-qa-db-ja.com

MKMapViewを使用するときに精度と距離フィルターを設定する方法

setShowsUserLocationMKMapViewを使用してユーザーの位置を追跡する場合、精度と距離フィルターを設定するにはどうすればよいですか?私はCLLocationManagerについて話していません。

ありがとう、

29
Van Du Tran

内部のMKMapViewロケーションマネージャー(青いドットでユーザーを追跡するために使用されるロケーションマネージャー)の精度を制御することはできませんが、独自のマップを作成して使用することができます。ここにレシピがあります...

コアロケーションのアクセス許可を処理するには

コアロケーションデリゲートで:

- (void)locationManager:(CLLocationManager *)manager didFailWithError:(NSError *)error
{
    if ([CLLocationManager authorizationStatus] == kCLAuthorizationStatusDenied){
        NSLog(@"User has denied location services");
    } else {
        NSLog(@"Location manager did fail with error: %@", error.localizedFailureReason);
    }
}

ロケーションマネージャーをセットアップする直前:

if (![CLLocationManager locationServicesEnabled]){
    NSLog(@"location services are disabled"];
    return;
}
if ([CLLocationManager authorizationStatus] == kCLAuthorizationStatusDenied){
    NSLog(@"location services are blocked by the user");
    return;
}
if ([CLLocationManager authorizationStatus] == kCLAuthorizationStatusAuthorized){
    NSLog(@"location services are enabled");
}  
if ([CLLocationManager authorizationStatus] == kCLAuthorizationStatusNotDetermined){
    NSLog(@"about to show a dialog requesting permission");
}

コアロケーションをセットアップするには

self.locationManager = [CLLocationManager new];
self.locationManager.purpose = @"Tracking your movements on the map.";
self.locationManager.delegate = self;

/* Pinpoint our location with the following accuracy:
 *
 *     kCLLocationAccuracyBestForNavigation  highest + sensor data
 *     kCLLocationAccuracyBest               highest     
 *     kCLLocationAccuracyNearestTenMeters   10 meters   
 *     kCLLocationAccuracyHundredMeters      100 meters
 *     kCLLocationAccuracyKilometer          1000 meters 
 *     kCLLocationAccuracyThreeKilometers    3000 meters
 */
self.locationManager.desiredAccuracy = kCLLocationAccuracyNearestTenMeters;

/* Notify changes when device has moved x meters.
 * Default value is kCLDistanceFilterNone: all movements are reported.
 */
self.locationManager.distanceFilter = 10.0f;

/* Notify heading changes when heading is > 5.
 * Default value is kCLHeadingFilterNone: all movements are reported.
 */
self.locationManager.headingFilter = 5;

// update location
if ([CLLocationManager locationServicesEnabled]){
    [self.locationManager startUpdatingLocation];
}

ロケーションマネージャーで地図を再センタリングするには

- (void)locationManager:(CLLocationManager *)manager 
    didUpdateToLocation:(CLLocation *)newLocation 
           fromLocation:(CLLocation *)oldLocation 
{
    MKCoordinateRegion region = { { 0.0f, 0.0f }, { 0.0f, 0.0f } };
    region.center = newLocation.coordinate;
    region.span.longitudeDelta = 0.15f; 
    region.span.latitudeDelta = 0.15f;
    [self.mapView setRegion:region animated:YES];
}

それをデリゲートに置きます。 MKMapViewには距離フィルターも精度フィルターもありません。CLLocationManagerのみにあります。 MKMapViewには、0.15度(0.15 * 111 Km)を超える例では、ポイントの周りの領域スパンがあります。

試したがうまくいかなかったこと

ドキュメントには、MKMapViewが更新を取得する場所が示されていません。私は試した

- (void)locationManager:(CLLocationManager *)manager 
    didUpdateToLocation:(CLLocation *)newLocation 
           fromLocation:(CLLocation *)oldLocation {
    NSLog(@"newLocation %@", newLocation.timestamp);
    NSLog(@"last map location %@", [NSString stringWithFormat:@"%@",[[[self.mapView userLocation] location] timestamp]]);
}

そして、それぞれに異なる値を取得しています。 MKMapViewが独自のCLLocationManagerを使用しているかのように見えます。つまり、精度を設定することはできません。 CLLocationManagerMKMapViewのデリゲートも追加できません。

私の印象では、精度を設定する唯一の方法は、ユーザーの表示位置をNOに設定し、青いドットでカスタム注釈を作成することです。 githubプロジェクトアートワークエクストラクターを使用して、SDKから青いドットのグラフィックを取得できます。

私は何かが足りないのか、MKMapViewのこの部分がただひどいのかわからない。

81
Jano

ここにマップを表示するためのサンプルコードがあります。

最初に、MKMapKitとCoreLocationフレームワークを.hファイルにインポートします。

#import <MapKit/MapKit.h>
 #import <CoreLocation/CoreLocation.h>

MKMapKitとCoreLocation Delegateを.hファイルに追加します

@interface MapViewController : UIViewController <MKMapViewDelegate, CLLocationManagerDelegate>


CGPoint gameMapCenter = CGPointMake([[UIScreen mainScreen] bounds].size.width / 2, [[UIScreen mainScreen] bounds].size.height / 2);
    gameMapView = [[MKMapView alloc] initWithFrame:CGRectMake(0, 0, 640, 620)];
    [gameMapView setCenter:gameMapCenter];
    [gameMapView setMapType:MKMapTypeStandard];
    [gameMapView setDelegate:self];
    [self.view addSubview:gameMapView];
    [gameMapView setShowsUserLocation:YES];

ユーザーの場所を取得するにはCLLocationManagerを使用します。

CLLocationManagerのインスタンスを宣言します

CLLocationManager *locationManager;

ViewDidLoad

locationManager = [[CLLocationManager alloc] init];

[locationManager setDelegate:self];

[locationManager setDesiredAccuracy:kCLLocationAccuracyBest];

[locationManager setDistanceFilter:kCLDistanceFilterNone];

[locationManger startUpdatingLocation];

startUpdatingLocationメソッドの実装:

(void)locationManager:(CLLocationManager *)manager didUpdateToLocation:(CLLocation *)newLocation fromLocation:(CLLocation *)oldLocation 
{
      //Your Stuff
}
3
morroko

精度を設定することはできませんが、MKMapViewデリゲートメソッドのuserLocationを介して精度を取得できます。

- (void)mapView:(MKMapView *)mapView didUpdateUserLocation:(MKUserLocation *)userLocation
{
    NSLog(@"%f", userLocation.location.horizontalAccuracy);
}
2
nonamelive