Hi,
I want to change the current tracking feature. I want to add for example a polgyon and after inputing some vertexes i want to add the next vertex from 2 text boxes (x and y coordinates). Than continue to do the tracking and finish the shape normally with a double click. I have used the following code but it doesnt work
Dim oPolygon as New PolygonShape
oPolygon = map.TrackOverlay.GetTrackingShape
oPolygon.OuterRing.Vertices.Insert(oPolygon.OuterRing.Vertices.Count - 1, New Vertex(TextBox1.Text, TextBox2.Text))
map.TrackOverlay.GetTrackingShape.LoadFromWellKnownData(oPolygon.GetWellKnownText)
map.refresh
Reagards
Edi Karadumi