I get FeatureQueryResult by running gpkx. I create a FeatureCollectionLayer following way. The issue is that ClassBreakRendere does not work and gives polyline with the default Symbol only. I verified the range by getting a particular attribute values. Can you name what I'm doing is incorrect?
FeatureCollectionTable collectTable = new FeatureCollectionTable(qs);
FeatureCollection featCollection = new FeatureCollection();
featCollection.Tables.Add(collectTable);
foreach (var table in featCollection.Tables)
{
table.Renderer = CreateCBRenderer(table.GeometryType);
}
FeatureCollectionLayer fclLayer = new FeatureCollectionLayer(featCollection);
await fclLayer.LoadAsync();