使用此行仅产生一条路径
Uri routeRequest = new Uri(string.Format("http://dev.virtualearth.net/REST/V1/Routes/Driving?wp.0={0}&wp.1={1}&rpo=Points&key={2}",
from, to, MyMap.Credentials));
这一个
Uri routeRequest = new Uri(string.Format("http://dev.virtualearth.net/REST/V1/Routes/Walking?wp.0={0}&wp.1={1}&rpo=Points&key={2}",
from, to, MyMap.Credentials));
这个没有结果,但它应该返回主要道路上的路线
Uri routeRequest = new Uri(string.Format("http://dev.virtualearth.net/REST/V1/Routes/FromMajorRoads?wp.0={0}&wp.1={1}&rpo=Points&key={2}",
from, to, MyMap.Credentials));
答案 0 :(得分:0)
根据Bing Maps REST路由服务的文档,主要路由功能不使用您正在使用的路标。相反,有一个目标参数。您可以在此处找到文档:http://msdn.microsoft.com/en-us/library/ff967514.aspx