我正在 WP7 中编写旅行应用程序。是否可以在 WP7 上使用 Bing 地图导航到 GPS 坐标。
我的意思是我有 GPS 坐标,按钮“前往”,点击它后我会有到达那个点的路线(通过 Bing 服务)?
我正在 WP7 中编写旅行应用程序。是否可以在 WP7 上使用 Bing 地图导航到 GPS 坐标。
我的意思是我有 GPS 坐标,按钮“前往”,点击它后我会有到达那个点的路线(通过 Bing 服务)?
我没有在 Windows Phone 7 上测试过,但从这篇 MSDN 文章来看,它也适用于 WP 7.1。
这是示例:
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();
您可以使用以下 URI 方案打开 Here Drive(由诺基亚提供):
guidance-drive://v2.0/navigate/destination/?latlon=52.53,13.41&title=Museum
这将切换应用程序,然后开始导航到52.52/13.41
. 标题是可选的。