我希望使用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仅用于纬度/经度参数吗?
感谢您的回答
答案 0 :(得分:1)
尝试使用以下内容:
BingMapsDirectionsTask Direction = new BingMapsDirectionsTask();
LabeledMapLocation lml = new LabeledMapLocation("Your location here", null)
Direction.End = lml;
Direction.Show();