Hello ThinkGeo-Team,
I have implemented some code in CalculateVertexControlPointsCore(). I set ID, Tag and ColumnValues. But if i examine the Features in ExistingControlPointsLayer I can see that ID and Tag values are lost.
I hope this is a bug und you can Change this because I need this informations to identify the Vertices in edit process.
Thomas
Protected Overrides Function CalculateVertexControlPointsCore(feature As Feature) As IEnumerable(Of Feature)
Dim result = MyBase.CalculateVertexControlPointsCore(feature)
For Each f In result
f.Id = "MyId"
f.Tag = "MyInfo"
f.ColumnValues.Add(CP_CPL_MEASURE, "MyInfo")
Next
Return result
End Function