我正在创建一个Windows 8.1应用程序。我正在使用Bing放大器控制。 但它在Bin地图控件上显示访问被拒绝的图像。
<map:Map x:Name="MapControl" Height="480" Width="475" IsEnabled="{Binding IsMapEnabled}"
Credentials="{StaticResource BingMapKey}" ManipulationMode="All" ZoomLevel="3"
ShowNavigationBar="False" ShowScaleBar="False" ShowBuildings="True" ViewRestriction="OneWorldOnly">
<map:Map.Center>
<map:Location Latitude="{Binding CurrentLocation.Latitude}" Longitude="{Binding CurrentLocation.Longitude}"/>
</map:Map.Center>
还提供了凭据。有什么问题?如果有人知道原因请帮助我。
答案 0 :(得分:1)
这是由于区域设置。由于地缘政治问题,某些地区被封锁。这在此处记录:http://msdn.microsoft.com/en-us/library/jj670541.aspx
解决此问题的一种方法是将地图的HomeRegion属性设置为US或其他一些支持的2个字母的国家/地区代码。