繁体   English   中英

始终跟踪iPhone应用程序的用户位置算法

[英]Tracking user location all the time algorithm for an iphone app

我正在开发一个iphone应用程序,该应用程序始终跟踪用户位置。

该位置可以是米的表笔精度(最大为400-500)。 并且应该至少每小时更新一次(即使用户位置没有变化,我也希望对其进行跟踪)

我想知道什么是最好的方法。

如果我使用CLLocation,则希望每小时使用一次startupdatinglocation,然后使用startmonitoringsignificantlocationchanges。 您是否认为这样做是最好的方法,可以减少电池消耗

另一种选择是使用诸如geoloqi之类的地理位置api,但我认为始终使用实时跟踪模式会导致电池电量耗尽,而被动模式的准确性不够好(据我了解,它提供的准确性就像在您所在的城市一样)

如果有人对我可以使用的推荐API有任何想法,或者使用CLLocation解决我的问题的高效算法,我将感到非常高兴。

谢谢!

您可以通过维护一个变量来跟踪位置,该变量从GPS软件读取位置并使用计时器编写算法,该计时器每秒或您想要的精度读取位置

试试这个代码,我认为这将为您工作。 在.h文件中添加此代码

#import "CoreLocation/CoreLocation.h"
#import "MapKit/MapKit.h"

@interface AddressAnnotation : NSObject<MKAnnotation>
{
 CLLocationCoordinate2D coordinate;

  NSString *mTitle;
  NSString *mSubTitle;
}
 @end
 @interface NearestPropertyMatchViewController : UIViewController<MKMapViewDelegate> {

 CLLocationManager *locationManager;
 IBOutlet MKMapView *searchMap;

 NSMutableArray *searchListArray;
 AddressAnnotation *addAnnotation;

}

-(CLLocationCoordinate2D) addressLocation:(NSString *)str;
@property (nonatomic, retain) CLLocationManager *locationManager;

@end

在.m文件中添加此代码。

   - (void)viewDidLoad
   {
     [super viewDidLoad];
     locationManager = [[CLLocationManager alloc] init];
     locationManager.delegate = self;
      locationManager.desiredAccuracy = kCLLocationAccuracyBest;
     locationManager.distanceFilter = kCLDistanceFilterNone;
     [locationManager startUpdatingLocation];

     CLLocation *location = [locationManager location];


     CLLocationCoordinate2D coordinate = [location coordinate];

      NSString *latitude = [NSString stringWithFormat:@"%f", coordinate.latitude];
      NSString *longitude = [NSString stringWithFormat:@"%f", coordinate.longitude];

     NSLog(@"dLatitude : %@", latitude);
     NSLog(@"dLongitude : %@",longitude);
     MKCoordinateRegion region;
       MKCoordinateSpan span;
      span.latitudeDelta=100;
     span.longitudeDelta=100;
     region.span=span;


for(int i=0;i<[regestrationArray  count];i++)
{
    CLLocationCoordinate2D location = [self addressLocation:[regestrationArray objectAtIndex:i]];


    region.center=location;
    addAnnotation = [[AddressAnnotation alloc] initWithCoordinate:location];
    [searchMap addAnnotation:addAnnotation];

    [searchMap setRegion:region animated:TRUE];
    [searchMap regionThatFits:region];   
    }

   -(CLLocationCoordinate2D) addressLocation :(NSString *)str
    {
     NSError* error = nil;
NSString *urlString = [NSString stringWithFormat:@"http://maps.google.com/maps/geo?q=%@&output=csv", 
                       [str  stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding]];
NSString *locationString = [NSString stringWithContentsOfURL:[NSURL URLWithString:urlString] encoding:NSASCIIStringEncoding error:&error];
NSArray *listItems = [locationString componentsSeparatedByString:@","];

double latitude = 0.0;
double longitude = 0.0;

if([listItems count] >= 4 && [[listItems objectAtIndex:0] isEqualToString:@"200"]) {
    latitude = [[listItems objectAtIndex:2] doubleValue];
    longitude = [[listItems objectAtIndex:3] doubleValue];
}
else {
    //Show error
}
CLLocationCoordinate2D location;
location.latitude = latitude;
location.longitude = longitude;
NSLog(@" lati=%f lon=%f",latitude,longitude);

return location;

   }

    - (MKAnnotationView *) mapView:(MKMapView *)mapView viewForAnnotation:(id <MKAnnotation>) annotation
   {
MKPinAnnotationView *annView=[[MKPinAnnotationView alloc] initWithAnnotation:annotation reuseIdentifier:@"currentloc"];
annView.pinColor = MKPinAnnotationColorGreen;
annView.animatesDrop=TRUE;
annView.canShowCallout = YES;
annView.calloutOffset = CGPointMake(-5, 5);
return annView;
   }

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM