已解决
我解决了这个问题,因为我必须添加一个MapItemsControl.ItemTemplate。如果没有它,它只会呈现控件的名称。
所以只需添加以下代码:
<Maps:MapItemsControl x:Name="mainMapItems" ItemsSource="{Binding MapItems}">
<Maps:MapItemsControl.ItemTemplate>
<DataTemplate>
<StackPanel Background="Transparent">
<TextBlock Maps:MapControl.Location="{Binding Location}" Text="{Binding Title}" Maps:MapControl.NormalizedAnchorPoint="0.5,0.5" FontSize="20" Margin="5"/>
</StackPanel>
</DataTemplate>
</Maps:MapItemsControl.ItemTemplate>
</Maps:MapItemsControl>
这并不完美,因为这不会在地图上给你一个图标,而只是一个文本。但在集合中添加Image="可以很容易地解决此问题。
我正在尝试在Template10布局中使用MapControl。
我使用的代码是
主页.xaml
<Maps:MapControl x:Name="MapControl1"
ZoomInteractionMode="GestureAndControl"
TiltInteractionMode="GestureAndControl"
MapServiceToken="<ApiCodeHere>"
Loaded="{x:Bind ViewModel.Map_Loaded}"/>
主页视图Model.cs
MapControl _Map;
public MapControl Map { get { return _Map; } set { Set(ref _Map, value); RaisePropertyChanged(); } }
public async void Map_Loaded(object sender, Windows.UI.Xaml.RoutedEventArgs e)
{
MapControl newMap = new MapControl();
Geoposition userLocation = await GetUserLocation();
BasicGeoposition GeoPos_UserLocation = new BasicGeoposition() { Latitude = userLocation.Coordinate.Point.Position.Latitude, Longitude = userLocation.Coordinate.Point.Position.Longitude };
BasicGeoposition GeoPos_NorthWest = new BasicGeoposition() { Latitude = userLocation.Coordinate.Point.Position.Latitude + 0.05, Longitude = userLocation.Coordinate.Point.Position.Latitude + 0.1 };
BasicGeoposition GeoPos_SouthEast = new BasicGeoposition() { Latitude = userLocation.Coordinate.Point.Position.Latitude - 0.05, Longitude = userLocation.Coordinate.Point.Position.Latitude - 0.1 };
GeoboundingBox mapBox = new GeoboundingBox(GeoPos_NorthWest, GeoPos_SouthEast);
// Add Point for User
MapIcon Icon_UserLocation = new MapIcon() { Location = new Geopoint(GeoPos_UserLocation) };
newMap.MapElements.Add(Icon_UserLocation);
newMap.Center = new Geopoint(mapBox.Center);
Map = newMap;
await Task.CompletedTask;
}
Map_Loaded函数将作为exepted函数激发。我遇到的一个问题是,如果这是一个正常的项目,我会直接将数据设置为MapControl1.Center和MapControl1.MapElements.Add。但由于这是MVVM项目,所以不是这样做的,我对如何进行有点困惑。
我想做一些类似Views.MainPage.MapControl1.Center=new Geopoint()的操作,但这显然不起作用。
附加更新
事实证明,这和我想的一样容易。这只是一个按正确顺序思考的问题。
MapControl具有缩放和居中等控件。因此,对于MVVM代码,这适用于
Center="{Binding MapCenter,Mode=TwoWay,UpdateSourceTrigger=PropertyChanged}"
Zoom="{Binding MapZoom,Mode=TwoWay,UpdateSourceTrigger=PropertyChanged}"
然而,我在设置MapItems时遇到了问题,如我来源的文档中所述。
要在地图上获取项目,您需要添加MapItemsControl,它应该像这样工作。。。
<Maps:MapItemsControl x:Name="mainMapItems" ItemsSource="{Binding MapItems,Mode=TwoWay,UpdateSourceTrigger=PropertyChanged}"></Maps:MapItemsControl>
但是我在MainPageViewModel.xaml中的代码不适用于此。项目不更新。
IList<MapElement> _MapItems;
public IList<MapElement> MapItems { get { return _MapItems; } set { Set(ref _MapItems, value); RaisePropertyChanged(); } }
IList<MapElement> MapItems = new List<MapElement>() {
new MapIcon() {
Location = new Geopoint(GeoPos_UserLocation),
Title = "You Are Here!"
}
};
来源:Windows 10 SDK必应地图控件
尝试使用
ObservableCollection ObserverableCollection<MapElement> MapItems =
new ObservableCollection<MapElement>();
由于您希望项目"在运行时可更新"或对更改做出反应,ObservableCollection在幕后实现了INPC
我解决了这个问题,因为我必须添加一个MapItemsControl.ItemTemplate。如果没有它,它只会呈现控件的名称。
所以只需添加以下代码:
<Maps:MapItemsControl x:Name="mainMapItems" ItemsSource="{Binding MapItems}">
<Maps:MapItemsControl.ItemTemplate>
<DataTemplate>
<StackPanel Background="Transparent">
<TextBlock Maps:MapControl.Location="{Binding Location}" Text="{Binding Title}" Maps:MapControl.NormalizedAnchorPoint="0.5,0.5" FontSize="20" Margin="5"/>
</StackPanel>
</DataTemplate>
</Maps:MapItemsControl.ItemTemplate>
</Maps:MapItemsControl>
这并不完美,因为这不会在地图上给你一个图标,而只是一个文本。但在集合中添加Image="可以很容易地解决此问题。