I am using GraphicsLayer
for road symbology with SimpleLineSymbol
.
my code is same with below code:
for (int i = 0; i < 200000; i++)
{
myGraphicsLayer.Graphics[i].Symbol = mySimpleLineSymbol;
}
this code run fast but draw linesymbol on map is very slow.(Approximately 6 sec). please help me for increase symbology performance.