开发者

Drawing the polyline on the map in iphone

Friend

I am trying to Drawing the polyline on the map. For that I use this code. It work fine. Over here I use Fake_location(CSV file) but if I to want use the database location... My database table is like this:

PK LocationID VARCHAR(20)
_id INTEGER
FK1 JourneyID VARCHAR(20)
Altitude FLOAT
Longitude FLOAT
Latitude FLOAT
Speed FLOAT
Accuracy FLOAT
LocationDate DATETIME
LastSyncDate DATETIME 

How can I use Longitude & Latitude ?

-(id)init {
    self = [super init];
    NSString* filePath = [[NSBundle mainBundle] pathForResource:ROUTE_FILE_NAME ofType:@"csv"];
    NSString *fake_location = [[NSString alloc] initWithContentsOfFile:filePath];
    pointsArray = [[fake_location componentsSeparatedByCharactersInSet:[NSCharacterSet whitespaceAndNewlineCharacterSet]] retain];
    pointsArrayIndex = 0;
    oldLocationsIndex = 0;

    [fake_location release];

    oldLocations = [[NSMutableArray alloc] init];
    return self;
}

-(void)startUpdatingLocation {
aTimer = [NSTimer scheduledTimerWithTimeInterval:TIMER_INTERVAL target:self selector:@selector(injectNextLocation) userInfo:nil repeats:YES];
}

-(void)stopUpdatingLocation {
[aTimer invalidate];
}

-(void)injectNextLocation{

if (pointsArray.count == pointsArrayIndex) {
    [self stopUpdatingLocation];
    return;
}

CLLocation *oldLocation = nil;

if ([oldLocations count] > 0) {
    oldLocation = [oldLocations objectAtIndex:oldLocationsIndex];
    oldLocationsIndex++;
}

NSString *pointString = [pointsArray objectAtIndex:pointsArrayIndex];
NSArray *latLong = [pointString componentsSeparatedByString:@","];
//NSLog(@"%@",latLong);

CLLocationCoordinate2D coords;
coords.latitude = [[latLong objectAtIndex:0] doubleValue];
coords.longitude = [[latLong objectAtIndex:1] doubleValue];

float alti开发者_开发百科tude = [self getRandomValue:200 toMax:220];
CLLocation *myLocation = [[CLLocation alloc] initWithCoordinate:coords altitude:altitude horizontalAccuracy:1 verticalAccuracy:1 timestamp:[NSDate date]];

[self.delegate locationManager:self didUpdateToLocation:myLocation fromLocation:oldLocation];

[oldLocations addObject:myLocation];
[myLocation release];

pointsArrayIndex++;
}


-(void)dealloc {
[pointsArray release];
[aTimer release];
[oldLocations release];
[super dealloc];
}

#pragma mark -
#pragma mark functions

- (float) getRandomValue:(float)min toMax:(float)max {
NSNumber *rand;
rand = [NSNumber numberWithUnsignedInt:arc4random()];
return fmod([rand floatValue],(max-min+1))+min;
}
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜