routeResult.Status in windows phone 8.1 应用程序不断提供无效凭据错误消息

routeResult.Status in windows phone 8.1 app keeps giving invalidcredentials errormessage

我对 XAML 中的编程还很陌生,我正在申请学校作为 windows phone 带有 MapControl 的 8.1 模拟器的作业。

昨天我想画一条路线,按照这个教程http://msdn.microsoft.com/en-us/library/windows/apps/xaml/dn631250.aspx,效果很好。今天我再次运行它,但它一直给我错误消息 'InvalidCredentials' 和 routeResult.Status。我不知道为什么会出现此错误。

这是我使用的代码:

public async void SetRouteDirectionsBreda()
    {
        string beginLocation = "Willemstraat 17 Breda";
        string endLocation = "Reigerstraat 2 Breda";

        MapLocationFinderResult result = await MapLocationFinder.FindLocationsAsync(beginLocation, map.Center);
        MapLocation begin = result.Locations.First();

        result = await MapLocationFinder.FindLocationsAsync(endLocation, map.Center);
        MapLocation end = result.Locations.First();

        List<Geopoint> waypoints = new List<Geopoint>();
        waypoints.Add(begin.Point);
        // Adding more waypoints later
        waypoints.Add(end.Point);

        MapRouteFinderResult routeResult = await MapRouteFinder.GetWalkingRouteFromWaypointsAsync(waypoints);

        Debug.WriteLine(routeResult.Status); // DEBUG

        if (routeResult.Status == MapRouteFinderStatus.Success)
        {
            MapRouteView viewOfRoute = new MapRouteView(routeResult.Route);
            viewOfRoute.RouteColor = Colors.Blue;
            viewOfRoute.OutlineColor = Colors.Black;

            map.Routes.Add(viewOfRoute);

            await map.TrySetViewBoundsAsync(routeResult.Route.BoundingBox, null, MapAnimationKind.Bow);
        }
        else
        {
            throw new Exception(routeResult.Status.ToString());
        }
    }

您应该在 xaml 页面中添加您的地图服务令牌,并将您的应用程序 ID 添加到程序包清单中。

关于将 mapservicetoken 添加到您的应用程序,您需要了解的所有信息都可以在下面的 link 中找到。 http://msdn.microsoft.com/en-us/library/windows/apps/xaml/dn741528.aspx