在bing地图iPad上绘制路线

时间:2011-09-06 13:17:46

标签: ios ipad bing-maps bing bing-api

有人可以指导我如何在iPad上的bing地图上绘制路线吗?

我从http://dev.virtualearth.net/REST/V1/Routes/Walking?wp.0=place1&wp.1=place2&optmz=distance&output=xml&key=key

得到了中间点

我收到一个包含中途纬度和经度的xml字符串。然后我只用这个坐标绘制线条,但它只绘制直线,我的意思是不是一路走来,请看屏幕截图为enter image description here
我怎样才能做到这一点?

谢谢,

1 个答案:

答案 0 :(得分:2)

试试此代码

   strUrl =  [NSString stringWithFormat:@"http://maps.google.com/maps?saddr=%f,%f&daddr=%f,%f",[app.strLat floatValue],[app.strLng floatValue],[app.strDestinationLat floatValue],[app.strDestinationLng floatValue]];    
    [strUrl retain];
    //strUrl=@"http://maps.google.com/mapssaddr=23.032979,72.497921&daddr=25.027923,74.482643";
    NSURL *urlTemp =[NSURL URLWithString:strUrl];
    NSURLRequest *reqUrl = [NSURLRequest requestWithURL:urlTemp];
    [web loadRequest:reqUrl];