我正在使用 C# 和 XAML 开发 Windows 8 应用程序。该应用程序有一个带有自定义图钉的地图页面。我使用以下代码添加了自定义图钉:
<Style x:Key="PushPinStyle" TargetType="bm:Pushpin">
<Setter Property="Width" Value="25"/>
<Setter Property="Height" Value="39"/>
<Setter Property="Template">
<Setter.Value>
<ControlTemplate>
<Image Source="Assets/pushpin_icon.png" Stretch="Uniform" HorizontalAlignment="Left"/>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
启用上述代码后,除非用户移动地图,否则图钉不会显示。以下代码用于生成地图。数据模板-
<DataTemplate x:Key="pushpinSelector" >
<bm:Pushpin Tapped="pushpinTapped" Style="{StaticResource PushPinStyle}">
<bm:MapLayer.Position >
<bm:Location Latitude="{Binding Latitude}" Longitude="{Binding Longitude}"/>
</bm:MapLayer.Position>
</bm:Pushpin>
</DataTemplate>
映射 XAML-
<bm:Map.Children>
<bm:MapItemsControl Name="pushPinModelsLayer"
ItemsSource="{Binding Results}"
ItemTemplate="{StaticResource pushpinSelector}" />
</bm:Map.Children>
</bm:Map>
一旦我删除了图钉的自定义样式,默认图钉就会正确显示,而无需移动地图。我希望自定义图钉以类似方式显示,而无需手动移动地图。提前感谢您的解决方案。