setShowsUserLocation
でMKMapView
を使用してユーザーの位置を追跡する場合、精度と距離フィルターを設定するにはどうすればよいですか?私はCLLocationManager
について話していません。
ありがとう、
内部の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
を使用しているかのように見えます。つまり、精度を設定することはできません。 CLLocationManager
のMKMapView
のデリゲートも追加できません。
私の印象では、精度を設定する唯一の方法は、ユーザーの表示位置をNOに設定し、青いドットでカスタム注釈を作成することです。 githubプロジェクトアートワークエクストラクターを使用して、SDKから青いドットのグラフィックを取得できます。
私は何かが足りないのか、MKMapView
のこの部分がただひどいのかわからない。
ここにマップを表示するためのサンプルコードがあります。
最初に、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
}
精度を設定することはできませんが、MKMapViewデリゲートメソッドのuserLocationを介して精度を取得できます。
- (void)mapView:(MKMapView *)mapView didUpdateUserLocation:(MKUserLocation *)userLocation
{
NSLog(@"%f", userLocation.location.horizontalAccuracy);
}