Hallo
I have a scenario in which the user can start editing features
from an “InMemoryFeatureLayer”. When the edit starts I move the all features of
the layer to the EditOverlay.
My problem is that subset of the features should be only rotatable
and movable.
I understand that I can control in the edit type by setting
the following properties of the EditOverlay, but this affect all the features
in the EditOverlay
ThinkGeoMap.EditOverlay.CanResize
= false;
ThinkGeoMap.EditOverlay.CanRotate
= true;
ThinkGeoMap.EditOverlay.CanReshape
= false;
ThinkGeoMap.EditOverlay.CanRemoveVertex
= false;
ThinkGeoMap.EditOverlay.CanAddVertex
= false;
ThinkGeoMap.EditOverlay.CanDrag
= true;
How can I have this unique edit (CanDrag= true + CanRotate=true) only for
specific features in the Edit overlay while keeping other features editable as
default (all edit properties are enabled)
I tried to
use EditInteractiveOverlay but it did not helped.
Can I have
more than one editOverlay in same way?
Do you
have any other suggestion regarding this issue?
Thank you
Miri