2014-05-19 7 views
0

여행을 위해 WP7에 신청서를 작성 중입니다. WP7에서 Bing Maps로 GPS 좌표를 탐색 할 수 있습니까?Windows Phone 7 GPS 네비게이션 서비스

내가 GPS 좌표를 가지고 있고, "이동"버튼을 클릭하고 나면 해당 포인트 (빙 서비스 별)로가는 경로가 있음을 의미합니까?

답변

1

Windows Phone 7에서는 테스트하지 않았지만 this MSDN article으로 판단하면 WP 7.1에도 적용됩니다. 다음 URI 구성표와 당신은 여기 (노키아) 드라이브를 열 수 있습니다

BingMapsDirectionsTask bingMapsDirectionsTask = new BingMapsDirectionsTask(); 

// You can specify a label and a geocoordinate for the end point. 
// GeoCoordinate spaceNeedleLocation = new GeoCoordinate(47.6204,-122.3493); 
// LabeledMapLocation spaceNeedleLML = new LabeledMapLocation("Space Needle",  spaceNeedleLocation); 

// If you set the geocoordinate parameter to null, the label parameter is used as a search term. 
LabeledMapLocation spaceNeedleLML = new LabeledMapLocation("Space Needle", null); 

bingMapsDirectionsTask.End = spaceNeedleLML; 

// If bingMapsDirectionsTask.Start is not set, the user's current location is used as the start point. 

bingMapsDirectionsTask.Show();