I am using EditOverlay.FeatureDragged to try and catch when the user has completed his moving of a feature on the map. What I am seeing is as the user is dragging the feature across the map the event EditOverlay.FeatureDragged is being fired. This causes my map to continuously refresh. Attached is a video showing my results (I don’t want to lines to continuously update, which causes the dragging to feel slow and jittery), as you can see the screen is constantly being updated which causes the dragged feature to lag behind the mouse significantly . Here is the event hookup:
MapkitMap.EditOverlay.FeatureDragged += EditOverlay_FeatureDragged;
Is there a way to capture when the user has finished dragging a feature on the Edit Overlay?
ScreenCapture_11-13-2013_10.39.34_AM.zip (359 KB)
EditOverlay FeatureDragged vs FeatureDragging
Hi Jake,
Please try to use event FeatureEdited.
wpfMap1.EditOverlay.FeatureDragged += EditOverlay_FeatureDragged;
It will be fired after you drag, rotate or resize shape.
Regards,
Don