我想在C#中使用BingMap。
我创建了一个WPF项目,并通过添加Microsoft.Maps.MapControl.WPF
来使用BingMap。
我还在https://www.bingmapsportal.com/Application#
创建了一个密钥但是,当我运行WPF项目时,我收到了错误:
invalid credential. sign up for a developer account at maicrosoft.com/maps/developers
然后我创建了一个新密钥并且工作正常。大约一个小时后,我得到了同样的错误。
这是我的MainWindow.xaml:
<Window x:Class="draw_a_map.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="350" Width="525">
<Grid>
<m:Map CredentialsProvider="<my key>" Margin="0,0,0,-10"/>
</Grid>
的解决方案
不适合我。
任何帮助都将不胜感激。