BingMapsDirectionsTask

BingMapsDirectionsTask

我想使用BingMapsDirectionsTask从当前位置导航到指定位置。
这是我的代码:

        BingMapsDirectionsTask bingMapsDirectionsTask = new BingMapsDirectionsTask();
        LabeledMapLocation lml = new LabeledMapLocation();
        lml.Location = location;
        bingMapsDirectionsTask.End = lml;
        bingMapsDirectionsTask.Show();


因为我没有标签,所以它不起作用,您可以看到以下屏幕截图:
http://i.stack.imgur.com/HoqRm.png

我可以仅使用纬度/经度参数使用BingMapsDirectionsTask吗?

感谢您的回答

最佳答案

尝试使用如下所示的内容:

BingMapsDirectionsTask Direction = new BingMapsDirectionsTask();
LabeledMapLocation lml = new LabeledMapLocation("Your location here", null)
Direction.End = lml;
Direction.Show();

09-25 20:19