ThinkGeo.com    |     Documentation    |     Premium Support

Value Style problems

Hi, I have a program that creates multiple layers, applys a valueStyle to them, and adds them to the map engine. Unfortunately the styles are not getting applied so nothing shows up when the map is loaded. Attached is my project (without Map Suite Core and Wpf Edition files), the kml file it loads can be downloaded from norrisfamilyindustry.com/fcstWeatherKML.zip.



Thanks

KMLreader.zip (653 KB)

Hi Thanine,


Thanks for your sample, we have found the problem it is caused by no columns in InMemoryFeatureLayer. So, would you please modify

"InMemoryFeatureLayer layer = new InMemoryFeatureLayer();" in "void processFolder( )" in TestForm.cs

With 

InMemoryFeatureLayer layer = new InMemoryFeatureLayer(new Collection<FeatureSourceColumn>() { new FeatureSourceColumn("name") }, new Collection<BaseShape>() { });


With this change, the map can be shown with the valuestyles now.

Hope it helps and if the issue is still there, please feel free to let us know.



Thanks,



Summer



That fixed it! Thanks!

Hi Thaine, 
  
 Great to hear it helped, if you have any more question, please feel free to let us know. 
  
 Best Regards 
  
 Summer