WP8 Nokia Here Maps:使用官方Here Maps应用程序获取两个地点之间的路线

时间:2013-07-23 12:06:52

标签: windows-phone-8 here-api

我想将两对坐标(我的位置和目的地)发送到Here Maps,并向我显示这两个位置之间的路线,而不是我自己开发的。这可能吗?如果有,怎么样?谢谢!

1 个答案:

答案 0 :(得分:4)

您可以使用URI Association Schemes

directions://v2.0/route/destination/?latlon=52.53,13.41&origin.latlon=52.53,13.41&mode=car 

HERE Launchers

DirectionsRouteDestinationTask routeTo = new DirectionsRouteDestinationTask();
routeTo.Destination = new GeoCoordinate(60.35, 24.60);
routeTo.Mode = RouteMode.Car;
routeTo.Show();

有关这些API here和演示应用here的更多信息。