Hi,
i'm using a faunction to draw a set of pushpins in this way:
SP is a MapPoint.Dataset i use it so user after drawing can simply make some operations on the entire DataSet.Code:foreach(DataRow dr in DataSet.Rows) { MapPoint.Location loc = this.mMap.GetLocation(Lat, Lon, 1); MapPoint.Pushpin pushpin = this.mMap.AddPushpin(loc,""); pushpin.Name = Name; pushpin.MoveTo(SP); }
The problem is that this drawing can be operated on large numbers of pushpins (7000-20000) and the time to wait is very long.
Someone have solved this problem in other ways?
Regards,
Gianmaria