iphone - 如何使用 MapKit 在两个位置之间绘制路线并绘制要点?

标签 iphone objective-c ios5 mapkit

我正在使用 MapKit api 来获取 map 上的当前位置,并绘制由落针指向的两个位置之间的路线。我还想获得其路线之间的所有主要看台。 我正在使用以下函数获取两个位置之间的路线

- (NSArray*)getRoutePointFrom:(MyLocation*)origin to:(MyLocation*)destination
{
 NSString* saddr = [NSString stringWithFormat:@"%f,%f", origin.coordinate.latitude, origin.coordinate.longitude];
 NSString* daddr = [NSString stringWithFormat:@"%f,%f", destination.coordinate.latitude, destination.coordinate.longitude];


 NSURL *url=[NSURL URLWithString:[NSString stringWithFormat:@"http://maps.googleapis.com/maps/api/directions/json?origin=%@&destination=%@&sensor=false&avoid=highways&mode=driving",saddr,daddr]];

 NSError *error=nil;

 NSMutableURLRequest *request = [[NSMutableURLRequest alloc] init] ;

 [request setURL:url];
 [request setHTTPMethod:@"POST"];

  NSURLResponse *response = nil;

  NSData *responseData = [NSURLConnection sendSynchronousRequest:request returningResponse:&response error: &error];

  NSString *responseString = [[NSString alloc] initWithData:responseData encoding:NSUTF8StringEncoding];

 SBJsonParser *json=[[SBJsonParser alloc] init];

 NSDictionary *dic=[json objectWithString:responseString error:nil];

 NSDictionary *nextdic=[dic valueForKey:@"routes"];
 NSDictionary *legdic=[nextdic valueForKey:@"legs"];
 NSDictionary *stepdic=[legdic valueForKey:@"steps"];

 NSArray *array=[[NSArray alloc] initWithArray:[[stepdic valueForKey:@"polyline"] valueForKey:@"points"]];  


 NSString *string=[NSString stringWithFormat:@"%@",[[array objectAtIndex:0] objectAtIndex:0]];




 return [self decodePolyLine:[string mutableCopy]];

}



-(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] ;  
 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];  
  NSNumber *longitude = [[NSNumber alloc] initWithFloat:lng * 1e-5];  
  //          printf("[%f,", [latitude doubleValue]);  
  //          printf("%f]", [longitude doubleValue]);  
  CLLocation *loc =[[CLLocation alloc] initWithLatitude:[latitude floatValue] longitude:[longitude floatValue]] ;  
  [array addObject:loc];  
 }  

 NSLog(@"array in decode polygon is %@",array);

 return array;  
}

但它不起作用。 ..

关于这个的帮助 谢谢!...

最佳答案

这个问题已经被问过好几次了。我猜你是从 http://iosguy.com/2012/05/22/tracing-routes-with-mapkit/ 获取代码的 您还可以查看 SO 问题:Plotting Route with Multiple Points in iOS

您可以从http://iosboilerplate.com 获取代码也为之做出贡献。

最后但并非最不重要的一点是,有一个框架可以帮助您花很少的钱就可以做到这一点(但与您做同样的事情相比,这算不了什么): http://www.cocoacontrols.com/controls/mtdirectionskit

关于iphone - 如何使用 MapKit 在两个位置之间绘制路线并绘制要点?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12490753/

相关文章:

iphone - 在 iTunes Connect 中更改应用程序名称

ios - Adobe AIR iOS 应用程序中 iPhone 6 和 6+ 的启动画面错误

iphone - 从 didFinishLaunchingWithOptions 播放电影

objective-c - 如何配置 Xcode 以将 '{' 放在生成文件中我想要的位置

ios - 您将如何以及在何处使用 instantiateViewControllerWithIdentifier

ios - 如何显示iAD?

javascript - Safari 中可用的默认字体

ios - 在 iOS 上的 Objective-C 中查找几乎重复的字符串

iphone - iOS5 的 Json 解析器示例

objective-c - 如何在类实现中区分两个协议(protocol)的相同方法名称?