gpt4 book ai didi

iphone - 使用 MKPolyline 在两个位置之间绘制路径

转载 作者:可可西里 更新时间:2023-11-01 06:19:23 24 4
gpt4 key购买 nike

我试图在 this 的帮助下显示两个位置之间的路线教程。他们使用了坐标的 CSV 文件,我正在使用 google api 来获取坐标。但是结果完全不同。 Output

如您所见,它没有绘制正确的路径。请给我一些建议。

最佳答案

您需要解码从响应中获得的折线..为此您需要谷歌的算法...

// http://code.google.com/apis/maps/documentation/utilities/polylinealgorithm.html  
//
-(NSMutableArray *)decodePolyLine:(NSString *)encodedStr {
NSMutableString *encoded = [[NSMutableString alloc] initWithCapacity:[encodedStr length]];
[encoded appendString:encodedStr];
[encoded replaceOccurrencesOfString:@"\\\\" withString:@"\\"
options:NSLiteralSearch
range:NSMakeRange(0, [encoded length])];
NSInteger len = [encoded length];
NSInteger index = 0;
NSMutableArray *array = [[[NSMutableArray alloc] init] autorelease];
NSInteger lat=0;
NSInteger lng=0;
while (index < len) {
NSInteger b;
NSInteger shift = 0;
NSInteger result = 0;
do {
b = [encoded characterAtIndex:index++] - 63;
result |= (b & 0x1f) << shift;
shift += 5;
} while (b >= 0x20);
NSInteger dlat = ((result & 1) ? ~(result >> 1) : (result >> 1));
lat += dlat;
shift = 0;
result = 0;
do {
b = [encoded characterAtIndex:index++] - 63;
result |= (b & 0x1f) << shift;
shift += 5;
} while (b >= 0x20);
NSInteger dlng = ((result & 1) ? ~(result >> 1) : (result >> 1));
lng += dlng;
NSNumber *latitude = [[[NSNumber alloc] initWithFloat:lat * 1e-5] autorelease];
NSNumber *longitude = [[[NSNumber alloc] initWithFloat:lng * 1e-5] autorelease];
// printf("[%f,", [latitude doubleValue]);
// printf("%f]", [longitude doubleValue]);
CLLocation *loc = [[[CLLocation alloc] initWithLatitude:[latitude floatValue] longitude:[longitude floatValue]] autorelease];
[array addObject:loc];
}
[encoded release];
return array;
}

这将为您提供包含所有点的可变数组(以 CLLocation 对象的形式)并且不要只解码主折线 .. 解码您收到的每条子折线,然后绘制,否则方向将不正确。

关于iphone - 使用 MKPolyline 在两个位置之间绘制路径,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8426592/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com