public void Draw(Graphics g) { Pen pen = new Pen(Colour, Largeur); for (int i = 0; i < (ListPOI.Count() - 1); i++) { g.DrawLine(pen, (float)ListPOI[i].Long, (float)ListPOI[i].Lat, (float)ListPOI[i + 1].Long, (float)ListPOI[i + 1].Lat); } }
public void AddPOI(POI unPOI) { ListPOI.Add(unPOI); return; }