Ejemplo n.º 1
0
        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);
            }
        }
Ejemplo n.º 2
0
 public void AddPOI(POI unPOI)
 {
     ListPOI.Add(unPOI);
     return;
 }