を使用してのMapControlを表示することができませんC#が、私は以下のような制御フォルダ持ちのBing地図
MapControl.MapServiceToken = "MyMapToken";
ListingClass listing = new ListingClass();
listing.Latitude = Double.Parse("-7.78183620", CultureInfo.InvariantCulture);
listing.Longitude = Double.Parse("110.40856360", CultureInfo.InvariantCulture);
// Specify a known location.
BasicGeoposition snPosition = new BasicGeoposition() { Latitude = listing.Latitude, Longitude = listing.Longitude };
Geopoint snPoint = new Geopoint(snPosition);
// Create a MapIcon.
MapIcon mapIcon1 = new MapIcon();
mapIcon1.Image =
RandomAccessStreamReference.CreateFromUri(new Uri("ms-appx:///images/map-pin-red-md1.png"));
mapIcon1.Location = snPoint;
mapIcon1.NormalizedAnchorPoint = new Point(0.5, 1.0);
mapIcon1.Title = pageTitle.Text;
mapIcon1.ZIndex = 0;
// Add the MapIcon to the map.
MapControl.MapElements.Add(mapIcon1);
// Center the map over the POI.
MapControl.Center = snPoint;
MapControl.ZoomLevel = 14;
MapControl.LandmarksVisible = true;
私は悩みを抱えているが、つまりは(フォルダを表示することができません白いページのみ)。どのようにそれを処理するには?
ビッグマップを使用できるアプリケーションの数には制限がありますか?無料のビング開発者ライセンスをお求めですか? 前のアプリケーションでは、ビン・マップを表示できます(アプリケーションの名前に応じて別のキーを使用します)。