mirror of
https://github.com/ClemensFischer/XAML-Map-Control.git
synced 2025-12-06 07:12:04 +01:00
21 lines
385 B
C#
21 lines
385 B
C#
using System.Collections.ObjectModel;
|
|
using MapControl;
|
|
|
|
namespace SampleApplication
|
|
{
|
|
class SamplePoint
|
|
{
|
|
public string Name { get; set; }
|
|
public Location Location { get; set; }
|
|
}
|
|
|
|
class SamplePolyline
|
|
{
|
|
public LocationCollection Locations { get; set; }
|
|
}
|
|
|
|
class SampleItemCollection : ObservableCollection<object>
|
|
{
|
|
}
|
|
}
|