我想在地图上显示一些位置。
我使用XAML MAP控件(https://xamlmapcontrol.codeplex.com/)来显示基于C#VS2013 WPF的OpenStreetMap的地图上的一些位置。
但是,我想将这些位置显示为点或圆而不是图钉。
在(https://xamlmapcontrol.codeplex.com/)MainWinwow.xaml中,我找到了:
<Path map:MapPanel.Location="53.5,8.2" Stroke="Blue" StrokeThickness="3" Fill="#1F007F00">
<Path.Data>
<EllipseGeometry RadiusX="15" RadiusY="15" Transform="{Binding ScaleTransform, ElementName=map}"/>
</Path.Data>
</Path>
但是,如何在MainWinwow.xaml.cs中执行此操作,因为我需要从文件加载位置。