We would like to track how many points the user has selected when adding a polyline to the map, in previous versions of the WPF runtime there was a VertexAdded event with the Draw control that we could use.
PropertyChanged on the Editor does not give us this information.
Solved! Go to Solution.
I apologize, I see this was answered in another post:
var progress = new Progress<GeometryEditStatus>();
progress.ProgressChanged += progress_ProgressChanged;
var geometry = await MapView.Editor.RequestShapeAsync(DrawShape.Polyline, null, progress);
progress.ProgressChanged -= progress_ProgressChanged;
I apologize, I see this was answered in another post:
var progress = new Progress<GeometryEditStatus>();
progress.ProgressChanged += progress_ProgressChanged;
var geometry = await MapView.Editor.RequestShapeAsync(DrawShape.Polyline, null, progress);
progress.ProgressChanged -= progress_ProgressChanged;