ThinkGeo.com    |     Documentation    |     Premium Support

Map1.SetEditSetting

I just upgrade to the lastest version WebEdition 3.1.299.0. I notice that I am unable to edit the drawn shapes at the shape vertix. Below is the code I use on client-side. I tried different combination without success. Is there another way I could set client-side to enable the multiple vertixes edit mode?


Map1.SetEditSetting(EditSettings.Reshape | EditSettings.Resize | EditSettings.Drag | EditSettings.Rotate);



Hi, ttd 



Maybe there is some problem about your client-side code in order to enable multiple vertices edit mode. EditSettings is the property of EditOverlay on the server-side. You could refer the code below: 




    function SetEditSetting()
    {
        //OpenLayers.Control.ModifyFeature.RESIZE
        Map1.SetEditSetting(OpenLayers.Control.ModifyFeature.DRAG | OpenLayers.Control.ModifyFeature.ROTATE | OpenLayers.Control.ModifyFeature.RESHAPE);
    }


Thanks,

Khalil