我在使用 Bing 地图的第一个独立应用程序时遇到问题
密钥创建
我继续https://www.bingmapsportal.com
创建我的密钥
我使用“Basic”键类型,“windows store app”作为应用程序类型和http://localhost
应用程序 URL
库
根据要求,我下载了这个库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 徽标、英里刻度,没有其他任何东西......我只看到一个可怕的灰色背景......我哪里错了??