var dict = new Dictionary<string, ValueTuple<double, double>>();
public struct Coordinate {
public double Longitude { get; set; }
public double Latitude { get; set; }
}
public class MapPart {
public string Name { get; set; }
public ICollection<Coordinate> Coordinates { get; set; }
}