Bing Maps Silverlight コントロール SDK

Bing Maps を Silverlight で制御・表示するための Bing Maps Silverlight Control SDK V1.0 が公開されました。

必要な環境は、VS2008 SP1と Silverlight 3 Tools for VS2008 SP1です。また、使用には Bing Maps Key が必要なので、Bing Maps Accounts Center で登録する必要があります。

詳しくは SDK ドキュメント(英語)を参照してください。

こんな風に使えるそうです。

<UserControl x:Class="SilverlightApplication1.MainPage"
xmlns="https://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="https://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:m="clr-namespace:Microsoft.Maps.MapControl;
assembly=Microsoft.Maps.MapControl">
<Grid x:Name="LayoutRoot" Background="White">
<m:Map CredentialsProvider="your key" Mode="Aerial" />
</Grid>
</UserControl>