Also, consider removing some properties that are not helpful (e.g., DrawnStates array).
Also, consider removing some properties that are not helpful (e.g., DrawnStates array).
Now full path is showing inside category "Feature set". Also some not helpful properties removed from legend detailed properties.
Thank you for posting this bug. Now it's fixed.
Oscar, so the issue can be closed?
Oscar, can we close this issue?
Well the problem is still there. Unless there an alternative to manhattanshapes to convert a raster to polygon i would keep it open. What do you think?
Oscar
Yes this issue was my fault. Sorry about that.
Thank you
Oscar
Did you tried DotSpatial.Tools.RasterToPolygon?
I have a duplicate issue here with more comments and an attached file already: http://dotspatial.codeplex.com/workitem/23123
Ok, then i'm closing this issue.
I tried following Dan answers to this old post of mine
https://dotspatial.codeplex.com/discussions/439483
i could not make it work since I do not really know how to create or deal with a cancelprogresshandler
Oscar
if you do not want to use cancelprogresshandler create and pass instance of this class
```
class MockProgressHandler : ICancelProgressHandler
{
public void Progress(string key, int percent, string message)
{
//nothing
}
public bool Cancel { get { return false; } }
}
```
But i'll also check why it not working with null.