Hello everybody.
Yesterday i ran the solution from the Code Community "BreadCrumbTrail" and i wonder when no cars or bread crumbs appear in screen only the map and the watermark that identifies that i'm using the evaluation version of Map Suite(v4.0), curiously the watermark unlicensed label appears in different places, that means that map control is refreshing, i run it debug mode and so far i guess that the issue it's related with this piece of code:
private LineShape BuildLineShape(Collection
<pointshape></pointshape>
pointShapes, int index, int number) { LineShape lineShape = new LineShape(); int i; int sub = index - number; for (i=index; i >= sub ; i -= 1) { if (i >= 0) { lineShape.Vertices.Add(new Vertex(pointShapes)); } } if (lineShape.Vertices.Count <= 1) { lineShape.Vertices.Add(new Vertex(pointShapes[0])); } return lineShape; }
Because it's the first time i use the map suite i'm not sure if the problem is here or not, any help will be appreciated