我的第一个独立应用程序与Bing地图有问题
密钥创建
我已经https://www.bingmapsportal.com
创建了我的密钥
我使用“基本”键类型,“windows store app”作为应用程序类型,http://localhost
作为应用程序URL
利布斯
作为请求我下载了这个lib http://www.microsoft.com/en-us/download/details.aspx?id=27165
,并将其作为资源添加到我的项目中
代码
我创建了新项目(使用.net V4)并编写了此代码
<Window x:Class="WorldMapViewer.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:m="clr-namespace:Microsoft.Maps.MapControl.WPF;assembly=Microsoft.Maps.MapControl.WPF"
Title="MainWindow" Height="600" Width="1000" Loaded="Window_Loaded" Closing="Window_Closing">
<Grid Name="wm_container">
<m:Map CredentialsProvider="_MY_KEY_" Center="37.806029,-122.407007" ZoomLevel="16"/>
</Grid>
</Window>
当我跑的时候,它显示了bing标志,里程刻度而没有别的......我只看到一个可怕的灰色背景......我哪里错了?