View Single Post

  #1 (permalink)  
Old 09-07-2006
Gianmaria Gianmaria is offline
Member
Yellow Belt
 
Join Date: Dec 2004
Posts: 44
Exclamation Plotting Pushpins

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
Reply With Quote