Hello
I noticed the following
1. Mouse right button click on a feature- creates a new vertex
2. Mouse left button double click on a vertex of a feature- remove the vertex
3. Mouse left button double click on a the map- performs a zoom in
How can I disable all the above behaviors?
Thank you
Disable default behavior of add/ remove vertex
Hi Miri,
I think what you want is disable some operation in Edit mode:
Map1.EditOverlay.CanRemoveVertex = false;
Map1.EditOverlay.CanAddVertex = false;
You can also disable other operation like Drag, Rotate etc.
Regards,
Don