2013-04-03 72 views
2

我想在windows phone 8中的兩個地理座標之間顯示路線。如何顯示兩個地理之間的路線座標的Windows Phone 8?

我嘗試了很多,但無法成功,我可以使用GeocodeQuery獲取指定位置,如下所示。

但如果我想顯示從28.608554只有兩個地理座標之間在地圖上的路線,例如,77.232922到28.630721,77.220219?

 GeocodeQuery Mygeocodequery = new GeocodeQuery(); 
     Mygeocodequery.SearchTerm = "New Delhi, India"; 
     Mygeocodequery.GeoCoordinate = new GeoCoordinate(myGeoposition.Coordinate.Latitude, myGeoposition.Coordinate.Longitude); 
     Mygeocodequery.QueryCompleted += Mygeocodequery_QueryCompleted; 
     Mygeocodequery.QueryAsync(); 

回答

相關問題