Hi,
a question:
I have to trace a full route made of lat/lon positions over the map. Numer of points may vary from 1 to much more as 30.000 or more.
I use this code cycling on a datatable:
MapPoint.Pushpin pushpin = this.mMap.AddPushpin(this.mMap.GetLocation(Convert .ToDouble(lat]), Convert.ToDouble(lon), 1), Convert.ToDateTime(theTime).ToLocalTime().ToString ());
pushpin.Symbol = 133;
problem is that this operation is very slow on plotting.....
any idea to make it faster?
Regards,
Gianmaria