there are a couple of things to improve..
you are creating 1000 GMapMarker object, instead only one and reuse it..
GMapMarker it = null;
for (int i = 0; i < 1000; i++)
{
it = new GMapMarker(MainMap, MainMap.CurrentPosition);
{
it.Shape = new Test();
}
MainMap.Markers.Add(it);
}
something happens a few lines below...
and remove that Sleep :)
balexandre
2009-05-30 21:20:35