Hi,
I'm completely stumped by this, and hope you can help me get it to work.
I'm trying to apply your samples on using a column based symbology. But regardless of what I do - even hardcoding the whole thing - MapSuite refuses to display my areas :-(
I've ended with this completely hardcoded DrawCore definition, which doesn't work. Please help.
Protected Overrides Sub DrawCore( _
ByVal features As IEnumerable(Of ThinkGeo.MapSuite.Core.Feature), _
ByVal canvas As GeoCanvas, _
ByVal labelsInThisLayer As Collection(Of ThinkGeo.MapSuite.Core.SimpleCandidate), _
ByVal labelsInAllLayers As Collection(Of ThinkGeo.MapSuite.Core.SimpleCandidate))
Dim useAreaStyle As AreaStyle
' Loop through each feaure and assign symbology to draw.
For Each ft As Feature In features
useAreaStyle = AreaStyles.County2 'hardcoded!
Dim featureCollection As Collection(Of Feature) = New Collection(Of Feature)()
featureCollection.Add(ft)
useAreaStyle.Draw(featureCollection, canvas, labelsInThisLayer, labelsInAllLayers)
Next
End Sub
Thanks.