我正试图将ObservableCollection
中的对象添加到我的地图中,但由于某些原因,对象显示在左上角,而不是它们的真实坐标。
<maps:MapItemsControl ItemsSource="{Binding MyObjects}">
<maps:MapItemsControl.ItemTemplate>
<DataTemplate>
<Image Source="../Assets/UI/myIcon.png"
maps:MapControl.Location="{Binding Geoposition,
Converter={StaticResource EmptyConverter}}"
maps:MapControl.NormalizedAnchorPoint="0.5,1"
Stretch="Uniform"
Height="48"
Width="48" />
</DataTemplate>
</maps:MapItemsControl.ItemTemplate>
</maps:MapItemsControl>
(当然,这个片段在我的MapControl
中)。
正如你所看到的,有一个EmptyConverter
,我用它来帮助我调试:在转换器中放置断点表明每个对象都有正确的坐标,但它仍然被放置在错误的位置(它甚至不在地图的透视图中,感觉就像它被粘贴在了上角)。
有什么线索吗?
好的,为了您自己的理智,绑定到Geopoint
,而不是像我那样绑定到BasicGeoposition
。这很奇怪,因为绑定没有造成任何错误,我很幸运,我决定尝试这是我最后的机会。